summaryrefslogtreecommitdiffstats
path: root/perl-install/common.pm
blob: d8072df85c71261323489369fd3adf92a18880a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
package common; # $Id$

use MDK::Common;
use MDK::Common::System;
use diagnostics;
use strict;
use run_program;
use vars qw(@ISA @EXPORT $SECTORSIZE);

@ISA = qw(Exporter);
# no need to export ``_''
@EXPORT = qw($SECTORSIZE N N_ check_for_xserver files_exist formatTime formatXiB makedev mandrake_release removeXiBSuffix require_root_capability salt setVirtual set_alternative set_permissions translate unmakedev untranslate);

# perl_checker: RE-EXPORT-ALL
push @EXPORT, @MDK::Common::EXPORT;


$::prefix ||= ""; # no warning

#-#####################################################################################
#- Globals
#-#####################################################################################
our $SECTORSIZE  = 512;

#-#####################################################################################
#- Functions
#-#####################################################################################


sub sprintf_fixutf8 {
    my $need_upgrade;
    $need_upgrade |= to_bool(c::is_tagged_utf8($_)) + 1 foreach @_;
    if ($need_upgrade == 3) { c::upgrade_utf8($_) foreach @_ };
    sprintf shift, @_;
}

sub N {
    $::one_message_has_been_translated ||= join(':', (caller(0))[1,2]); #- see ugtk2.pm
    my $s = shift @_; my $t = translate($s);
    sprintf_fixutf8 $t, @_;
}
sub N_ { $_[0] }


sub salt {
    my ($nb) = @_;
    require devices;
    open(my $F, devices::make("random")) or die "missing random";
    my $s; read $F, $s, $nb;
    $s = pack("b8" x $nb, unpack "b6" x $nb, $s);
    $s =~ tr|\0-\x3f|0-9a-zA-Z./|;
    $s;
}

sub makedev { ($_[0] << 8) | $_[1] }
sub unmakedev { $_[0] >> 8, $_[0] & 0xff }

sub translate_real {
    my ($s) = @_;
    $s or return '';
    foreach (@::textdomains, 'libDrakX') {
	my $s2 = c::dgettext($_, $s);
	return $s2 if $s ne $s2;
    }
    $s;
}

sub translate {
    my $s = translate_real(@_);
    $::need_utf8_i18n and c::set_tagged_utf8($s);

    #- translation with context, kde-like 
    $s =~ s/^_:.*\n//;
    $s;
}


sub untranslate {
    my $s = shift || return;
    foreach (@_) { translate($_) eq $s and return $_ }
    die "untranslate failed";
}

BEGIN { undef *availableRamMB }
sub availableRamMB()  { 
    my $s = MDK::Common::System::availableRamMB();
    #- HACK HACK: if i810 and memsize
    require detect_devices;
    return $s - 1 if $s == 128 && detect_devices::matching_driver('^Card:Intel 810$');
    $s;
}

sub setVirtual {
    my ($vt_number) = @_;
    my $vt = '';
    sysopen(my $C, "/dev/console", 2) or die "failed to open /dev/console: $!";
    ioctl($C, c::VT_GETSTATE(), $vt) &&
      ioctl($C, c::VT_ACTIVATE(), $vt_number) &&
	ioctl($C, c::VT_WAITACTIVE(), $vt_number) or die "setVirtual failed";
    unpack "S", $vt;
}

sub nonblock {
    my ($F) = @_;
    fcntl($F, c::F_SETFL(), fcntl($F, c::F_GETFL(), 0) | c::O_NONBLOCK());
}

sub removeXiBSuffix {
    local $_ = shift;

    /(\d+)\s*kB?$/i and return $1 * 1024;
    /(\d+)\s*MB?$/i and return $1 * 1024 * 1024;
    /(\d+)\s*GB?$/i and return $1 * 1024 * 1024 * 1024;
    /(\d+)\s*TB?$/i and return $1 * 1024 * 1024 * 1024 * 1024;
    $_;
}
sub formatXiB {
    my ($newnb, $o_newbase) = @_;
    my $newbase = $o_newbase || 1;
    my ($nb, $base);
    my $decr = sub { 
	($nb, $base) = ($newnb, $newbase);
	$base >= 1024 ? ($newbase = $base / 1024) : ($newnb = $nb / 1024);
    };
    foreach ('', N("KB"), N("MB"), N("GB")) {
	$decr->(); 
	if ($newnb < 1 && $newnb * $newbase < 1) {
	    my $v = $nb * $base;
	    my $s = $v < 10 && int(10 * $v - 10 * int($v));
	    return int($v) . ($s ? ".$s" : '') . $_;
	}
    }
    int($newnb * $newbase) . N("TB");
}

sub formatTime {
    my ($s, $m, $h) = gmtime($_[0]);
    if ($h) {
	sprintf "%02d:%02d", $h, $m;
    } elsif ($m > 1) {
	N("%d minutes", $m);
    } elsif ($m == 1) {
	N("1 minute");
    } else {
	N("%d seconds", $s);
    }
}

sub usingRamdisk() { any { /ram3/ } cat_("/proc/mounts") }

sub expand_symlinks_but_simple {
    my ($f) = @_;
    my $link = readlink($f);
    my $f2 = expand_symlinks($f);
    if ($link && $link !~ m|/|) {
	# put back the last simple symlink
	$f2 =~ s|\Q$link\E$|basename($f)|e;
    }
    $f2
}

sub sync { &MDK::Common::System::sync }

BEGIN { undef *formatError };
sub formatError {
    my ($err) = @_;
    log::l("error: $err");
    &MDK::Common::String::formatError($err);
}

# Group the list by n. Returns a reference of lists of length n
sub group_n_lm {
    my $n = shift;
    my @l;
    push @l, [ splice(@_, 0, $n) ] while @_;
    @l
}

sub screenshot_dir__and_move() {
    my ($dir1, $dir2) = ("$::prefix/root", '/tmp/stage2');
    if (-e $dir1) {
	if (-e "$dir2/DrakX-screenshots") {
	    cp_af("$dir2/DrakX-screenshots", $dir1);
	    rm_rf("$dir2/DrakX-screenshots");
	}
	$dir1;
    } else {
	$dir2;
    }
}

sub take_screenshot() {
    my $dir = screenshot_dir__and_move() . '/DrakX-screenshots';
    my $warn;
    if (!-e $dir) {
	mkdir $dir or $::o->ask_warn('', N("Can't make screenshots before partitioning")), return;
	$warn = 1;
    }
    my $nb = 1;
    $nb++ while -e "$dir/$nb.png";
    system("fb2png /dev/fb0 $dir/$nb.png 0");

    $::o->ask_warn('', N("Screenshots will be available after install in %s", "/root/DrakX-screenshots")) if $warn;
}

sub join_lines {
    my @l;
    my $s;
    foreach (@_) {
	if (/^\s/) {
	    $s .= $_;
	} else {
	    push @l, $s if $s;
	    $s = $_;
	}
    }
    @l, if_($s, $s);
}


sub set_alternative {
    my ($command, $executable) = @_;

    #- check the existance of $executable as an alternative for $command
    #- (is this needed???)
    run_program::rooted_get_stdout($::prefix, 'update-alternatives', '--display', $command) =~ /^\Q$executable /m or return;

    #- this doesn't handle relative symlink, but neither does update-alternatives ;p
    symlinkf $executable, "$::prefix/etc/alternatives/$command";
}

sub files_exist { and_(map { -f "$::prefix$_" } @_) }

sub secured_file {
    my ($f) = @_;
    c::is_secure_file($f) or die "can't ensure a safe $f";
    $f;
}

sub set_permissions {
    my ($file, $perms, $o_owner, $o_group) = @_;
    # We only need to set the permissions during installation to be able to
    # print test pages. After installation the devfsd daemon does the business
    # automatically.
    return 1 unless $::isInstall;
    if ($o_owner && $o_group) {
        run_program::rooted($::prefix, "/bin/chown", "$o_owner.$o_group", $file)
	    or die "Could not start chown!";
    } elsif ($o_owner) {
        run_program::rooted($::prefix, "/bin/chown", $o_owner, $file)
	    or die "Could not start chown!";
    } elsif ($o_group) {
        run_program::rooted($::prefix, "/bin/chgrp", $o_group, $file)
	    or die "Could not start chgrp!";
    }
    run_program::rooted($::prefix, "/bin/chmod", $perms, $file)
	or die "Could not start chmod!";
}

sub mandrake_release() {
    chomp_(cat_("/etc/mandrake-release"))
}

sub require_root_capability() {
    return if $::testing || !$>; # we're already root
    if (check_for_xserver()) {
	if (fuzzy_pidofs(qr/\bkwin\b/) > 0) {
	    exec("kdesu", "--ignorebutton", "-c", "$0 @ARGV") or die N("kdesu missing");
	}
    }
    exec { 'consolehelper' } $0, @ARGV or die N("consolehelper missing");

    # still not root ?
    die "you must be root to run this program" if $>;
}

sub check_for_xserver() {
    if (!defined $::xtest) {
        $::xtest = $ENV{DISPLAY} && system('/usr/X11R6/bin/xtest') == 0;
    }
    return $::xtest;
}


1;
pm_.c:52
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
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 ../../security/msec.pm_.c:53
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -920,26 +920,26 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1088 ../../security/msec.pm_.c:57
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
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:1098 ../../security/msec.pm_.c:68
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr ""
-#: ../../any.pm_.c:1100 ../../security/msec.pm_.c:70
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr ""
-#: ../../any.pm_.c:1101 ../../security/msec.pm_.c:71
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102 ../../security/msec.pm_.c:72
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
msgid "Security Administrator (login or email)"
msgstr ""
@@ -1066,7 +1066,7 @@ msgid ""
msgstr ""
#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:592
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr ""
@@ -1087,7 +1087,7 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
@@ -1197,8 +1197,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:909
-#: ../../diskdrake/interactive.pm_.c:918 ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr ""
@@ -1210,9 +1210,10 @@ msgid ""
msgstr ""
#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:364 ../../interactive/http.pm_.c:119
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr ""
@@ -1266,7 +1267,7 @@ msgstr ""
msgid "Swap"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr ""
@@ -1285,7 +1286,7 @@ msgid "Create"
msgstr ""
#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:509 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr ""
@@ -1303,7 +1304,7 @@ msgstr ""
msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:501
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1428,8 +1429,8 @@ msgstr ""
msgid "Detailed information"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:546
-#: ../../diskdrake/interactive.pm_.c:573 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr ""
@@ -1439,11 +1440,11 @@ msgstr ""
msgid "Options"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:693
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr ""
@@ -1491,17 +1492,17 @@ msgstr ""
msgid "Start sector: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:791
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:792
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr ""
#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1064
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr ""
@@ -1509,162 +1510,169 @@ msgstr ""
msgid "Preference: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:482
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:507
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:508 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:514
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:544
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:545 ../../diskdrake/interactive.pm_.c:572
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:551
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:596
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:596 ../../diskdrake/interactive.pm_.c:655
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:628
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:633
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:635
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:640
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:641
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:694
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:695
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:696
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:699
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:699
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:717 ../../diskdrake/interactive.pm_.c:734
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:732
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:737
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:790
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:795
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:798
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:799
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:822
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:829
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:892 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:893
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:894
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:909
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:940
+#: ../../diskdrake/interactive.pm_.c:953
#, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1672,7 +1680,7 @@ msgid ""
"need /boot"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1680,167 +1688,167 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:964
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:988
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:999
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1002
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1003
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1026
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1030
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1034
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1065
-#: ../../diskdrake/interactive.pm_.c:1124
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1070
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1074
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1082
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1088
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1089
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1090
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1848,7 +1856,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -1856,62 +1864,62 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1125
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1126
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1127
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1128
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1129
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "on channel %d id %d\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1144
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1160
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1161
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1164
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1165
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1168
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1169
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -1968,17 +1976,12 @@ msgstr ""
msgid "I don't know how to format %s in type %s"
msgstr ""
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:715 ../../fs.pm_.c:721
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:706
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:736 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -3253,7 +3256,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:115
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3261,7 +3264,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:170
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3300,7 +3303,7 @@ msgid ""
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:769
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr ""
@@ -3334,69 +3337,69 @@ msgstr ""
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr ""
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
+#: ../../install_interactive.pm_.c:101
msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr ""
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr ""
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
msgid "Resizing Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
+#: ../../install_interactive.pm_.c:137
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3408,63 +3411,63 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:147
+#: ../../install_interactive.pm_.c:148
msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr ""
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr ""
@@ -3472,16 +3475,16 @@ msgstr ""
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr ""
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr ""
@@ -3535,15 +3538,15 @@ msgstr ""
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:688
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:703
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:627
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
@@ -3611,8 +3614,8 @@ msgstr ""
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:254
-#: ../../install_steps_interactive.pm_.c:258
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr ""
@@ -3629,11 +3632,11 @@ msgstr ""
msgid "Minimal install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:532
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr ""
@@ -3660,17 +3663,17 @@ msgid "Installing package %s"
msgstr ""
#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:794
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr ""
#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:794
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:795
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3681,16 +3684,16 @@ msgid ""
msgstr ""
#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:807
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:807
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr ""
@@ -3864,7 +3867,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1030
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr ""
@@ -3881,86 +3884,86 @@ msgstr ""
msgid "Which installation class do you want?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:234
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:234
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:243
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:249
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:254
-#: ../../install_steps_interactive.pm_.c:258
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:254
-#: ../../install_steps_interactive.pm_.c:258
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:274
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:280 ../../standalone/mousedrake_.c:85
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:86
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:289
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:292
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:313
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:313
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:335
+#: ../../install_steps_interactive.pm_.c:337
msgid "No partition available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:346
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:365
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -3971,168 +3974,175 @@ msgid ""
"Do you agree to loose all the partitions?\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:378
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:405
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:420
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:444
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:445
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:471
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:476
-msgid "Not enough swap space to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:484
+#: ../../install_steps_interactive.pm_.c:491
msgid "Looking for available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:488
+#: ../../install_steps_interactive.pm_.c:495
msgid "Finding packages to upgrade..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:498
msgid "Looking at packages already installed..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:509
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:544
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:547
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:566
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:640
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:654
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:655
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:745
+#: ../../install_steps_interactive.pm_.c:752
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:750
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:779
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:825
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:831
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:837
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:857
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4171,7 +4181,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:896
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4183,172 +4193,172 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:911
+#: ../../install_steps_interactive.pm_.c:918
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:916
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:925
+#: ../../install_steps_interactive.pm_.c:932
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:952
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:957
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:958
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:999
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1014
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1000
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1017
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1026 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1032 ../../printerdrake.pm_.c:2347
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../install_steps_interactive.pm_.c:1039
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1081
-#: ../../install_steps_interactive.pm_.c:1106
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1082
-#: ../../install_steps_interactive.pm_.c:1106
-#: ../../install_steps_interactive.pm_.c:1119
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1106
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
msgid "Windows PDC"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1084
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1093
-#: ../../install_steps_interactive.pm_.c:1094 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1115
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1138
msgid "Authentication Windows PDC"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1132
+#: ../../install_steps_interactive.pm_.c:1139
msgid "Windows Domain"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1133
+#: ../../install_steps_interactive.pm_.c:1140
msgid "PDC Server Name"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1142
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
"add and reboot the server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1169
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4366,19 +4376,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1185
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1186
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1187 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4394,7 +4404,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1198
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4403,28 +4413,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1206
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1214
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1224
msgid "Creating bootdisk..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1231
msgid "Preparing bootloader..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4432,25 +4442,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1241
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1244
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1257
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1265
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4461,24 +4471,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1299
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1303
+#: ../../install_steps_interactive.pm_.c:1310
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1314
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1325
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4489,18 +4500,22 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1342
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4509,15 +4524,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1349
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1349
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr ""
@@ -4613,323 +4628,323 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:197 ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr ""
-#: ../../keyboard.pm_.c:198 ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr ""
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr ""
-#: ../../keyboard.pm_.c:200 ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr ""
-#: ../../keyboard.pm_.c:201 ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr ""
-#: ../../keyboard.pm_.c:202 ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr ""
-#: ../../keyboard.pm_.c:203 ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr ""
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr ""
-#: ../../keyboard.pm_.c:205 ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr ""
-#: ../../keyboard.pm_.c:207 ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:208 ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:209 ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr ""
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr ""
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr ""
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr ""
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr ""
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr ""
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr ""
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr ""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr ""
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr ""
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:288
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:301
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:302
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:303
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:304
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:305
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:306
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:307
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:308
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:309
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5069,51 +5084,51 @@ msgstr ""
msgid "No mouse"
msgstr ""
-#: ../../mouse.pm_.c:440
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr ""
-#: ../../mouse.pm_.c:441
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr ""
-#: ../../mouse.pm_.c:442
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr ""
-#: ../../my_gtk.pm_.c:690
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:725
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr ""
-#: ../../my_gtk.pm_.c:725 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:726 ../../printerdrake.pm_.c:1610
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1058
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr ""
-#: ../../my_gtk.pm_.c:1122 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
msgid "Info"
msgstr ""
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:1141
msgid "Expand Tree"
msgstr ""
-#: ../../my_gtk.pm_.c:1144
+#: ../../my_gtk.pm_.c:1142
msgid "Collapse Tree"
msgstr ""
-#: ../../my_gtk.pm_.c:1145
+#: ../../my_gtk.pm_.c:1143
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5156,7 +5171,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr ""
@@ -5186,10 +5201,10 @@ msgid "Host name"
msgstr ""
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
+#: ../../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
msgid "Network Configuration Wizard"
msgstr ""
@@ -5355,54 +5370,54 @@ msgstr ""
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr ""
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr ""
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5414,12 +5429,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5427,7 +5442,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -5435,95 +5450,95 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:172
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:173 ../../printerdrake.pm_.c:2541
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
#: ../../standalone/drakfloppy_.c:146
msgid "Expert Mode"
msgstr ""
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:206
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:229
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:231
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:256
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5531,20 +5546,20 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:265
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:270
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:271
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -5764,16 +5779,16 @@ msgid ""
"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:776
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:800
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr ""
@@ -6032,16 +6047,12 @@ msgstr ""
msgid "Automatic CUPS configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:163 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr ""
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6054,13 +6065,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:172 ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr ""
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6078,11 +6089,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:182
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr ""
-#: ../../printerdrake.pm_.c:200
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6096,11 +6107,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:219
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:220
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6110,15 +6121,19 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:223 ../../printerdrake.pm_.c:225
-#: ../../printerdrake.pm_.c:226
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr ""
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr ""
+
#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
@@ -7274,7 +7289,7 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../security/msec.pm_.c:48
+#: ../../security/msec.pm_.c:144
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 "
@@ -7282,7 +7297,7 @@ msgid ""
" or to the Internet. There is no password access."
msgstr ""
-#: ../../security/msec.pm_.c:54
+#: ../../security/msec.pm_.c:150
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -7292,10 +7307,14 @@ msgid ""
"a client on the Internet, you should choose a lower level."
msgstr ""
-#: ../../security/msec.pm_.c:73 ../../standalone/drakfont_.c:680
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
msgid "Advanced Options"
msgstr ""
+#: ../../security/msec.pm_.c:199
+msgid "Basic Options"
+msgstr ""
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7739,11 +7758,11 @@ msgstr ""
msgid "Installing packages..."
msgstr ""
-#: ../../standalone/XFdrake_.c:129
+#: ../../standalone/XFdrake_.c:131
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
-#: ../../standalone/XFdrake_.c:133
+#: ../../standalone/XFdrake_.c:135
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
@@ -7942,26 +7961,26 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr ""
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr ""
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr ""
@@ -8012,10 +8031,11 @@ msgstr ""
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:871
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
msgid ""
"\n"
-"Drakbackup activities via $daemon_media:\n"
+"Drakbackup activities via %s:\n"
"\n"
msgstr ""
@@ -8033,13 +8053,6 @@ msgid ""
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:895
-msgid ""
-"\n"
-"Drakbackup activities via $net_proto:\n"
-"\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:900
msgid ""
"\n"
@@ -8370,10 +8383,6 @@ msgstr ""
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1981
-msgid "\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
@@ -9036,7 +9045,7 @@ msgid "connecting to Bugzilla wizard ..."
msgstr ""
#: ../../standalone/drakbug_.c:129
-msgid "No browser available please! Please install one"
+msgid "No browser available! Please install one"
msgstr ""
#: ../../standalone/drakconnect_.c:80
@@ -9530,19 +9539,19 @@ msgstr ""
msgid "Post Uninstall"
msgstr ""
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr ""
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:123
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9550,31 +9559,31 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:142
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:150
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9582,19 +9591,19 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:171
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:176
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9604,31 +9613,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr ""
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9638,17 +9647,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:249
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr ""
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9658,15 +9667,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr ""
-#: ../../standalone/drakgw_.c:276
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9677,7 +9686,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:288
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9689,74 +9698,74 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:302
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:313
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:321
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr ""
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:366
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr ""
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr ""
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr ""
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9886,11 +9895,11 @@ msgstr ""
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:151
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:152
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10121,15 +10130,15 @@ msgstr ""
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:69
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr ""
-#: ../../standalone/mousedrake_.c:79
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:83
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr ""
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 60896970c..1046b1a74 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -1,36 +1,69 @@
# KTranslator Generated File
-# Copyright (c) 1999-2000 MandrakeSoft
-# Schalk. W. Cronjé <schalkc@ntaba.co.za>, 2000
+# KTranslator Generated File
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Schalk W. Cronjé <schalkc@ntaba.co.za>, 2000
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-09-09 22:06-0000\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-20 21:28-0000\n"
"Last-Translator: Schalk W. Cronjé <schalkc@uk.ntaba.com>\n"
"Language-Team: Afrikaans <mandrake@af.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigureer skyfkoppe afsonderlik"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Gebruik Xinerama-ekstensies"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigureer net die \"%s\" kaart (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64MB of meer"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Kies 'n X-bediener"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-bediener"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Multikopkonfigurasie"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -38,43 +71,44 @@ msgstr ""
"U stelsel onderstuen multikopkonfigurasie.\n"
"Wat wil u doen?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Videokaart"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Kies die geheue grootte van u videokaart"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Selekteer 'n videokaart"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree-konfigurasie"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Kies 'n X-bediener"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Watter tipe XFree-konfigurasie verlang u?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-bediener"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigureer skyfkoppe afsonderlik"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Kies 'n X-bediener"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X-bediener"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigureer net die \"%s\" kaart (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Watter tipe XFree-konfigurasie verlang u?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -83,34 +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."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, 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."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s met 3D-hardwareversnelling"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
-"bied,\n"
-"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +140,60 @@ 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."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
+"bied,\n"
+"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree-konfigurasie"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Kies die geheue grootte van u videokaart"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Selekteer opsies vir bediener"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Behou die veranderinge?\n"
+"Huidige konfigurasie is:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Aangepaste"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generies"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Herroep"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,512 +215,326 @@ msgstr ""
"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
"kies konservatief."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horisontale verfristempo"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikale verfristempo"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor is nie opgestel nie"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafikakaart is nog nie konfigureer nie"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolusie is nog nie gekies nie"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Wil u die konfigurasie toets?"
-
-#
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Toets konfigurasie"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 kleure (8 bis)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probeer van die parameters verander"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32-duisend kleure (15 bis)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Daar was 'n fout:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65-duisend kleure (16 bis)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "uitgang binne %ds"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16-miljoen kleure (24 bis)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Is dit korrek?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biljoen kleure (32 bis)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Hier is fout, probeer van die parameters verander"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolusies"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolusie"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Kies die resolusie en kleurdiepte"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 bediener: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Nog"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Kanselleer"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Kundige modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Vertoon almal"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolusies"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Toets konfigurasie"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Sleutelbord uitleg: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muistipe: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muistoestel: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HoriSink: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertVerfris: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Videokaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Videokaart: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Video geheue: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Kleurdiepte: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusie: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 bediener: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86-drywer: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window konfigurasie word opgestel"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Wat wil u doen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Verander monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Verander videokaart"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verander bedienerinstellings"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Verander resolusie"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Vertoon inligting"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Toets weer"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlaat"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behou die veranderinge?\n"
-"Huidige konfigurasie is:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X met herlaai"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kleure (8 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32-duisend kleure (15 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65-duisend kleure (16 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16-miljoen kleure (24 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biljoen kleure (32 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64MB of meer"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standaard VGA, 640x480 teen 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 teen 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 102x768 teen 87 Hz interverweef, 800x600 teen 56 Hz "
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Verlengde Super VGA, 800x600 teen 60 Hz, 640x480 teen 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Nie-interverweefde SVGA, 1024x768 teen 60 Hz, 800x600 teen 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Eerste sektor van herlaaipartisie"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO installasie"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub installasie"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO met tekskieskaart"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO met grafiese kieskaart"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Laai vauit DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Herlaaiprogram installasie"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompak"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Videomodus"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Beperk instruksielynopsies"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "beperk"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Maak /tmp skoon met elke herlaai"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Gebruik multiprofiele"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Gee die geheuegrootte in MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Beginboodskap"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Tydsbeperking vir stelselkernlaai"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Laat CD-herlaai toe?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Laat OF-herlaai toe?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Verstek bedryfstelsel?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -682,83 +543,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Verander"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Verstek"
@@ -791,53 +652,75 @@ msgstr "U moet oor 'n ruilpartisie beskik"
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
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:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"U kan noue die opsies voorsien vir module %s.\n"
+"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
+"Bv. ``io=0x300 irq-7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Module opsies:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -853,37 +736,15 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"U kan noue die opsies voorsien vir module %s.\n"
-"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
-"Bv. ``io=0x300 irq-7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Module opsies:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -892,50 +753,55 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Hierdie genruikerskode bestaan alreeds"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -944,32 +810,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -977,125 +843,104 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Aangepaste"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, 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:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Kanselleer"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoďes"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1107,7 +952,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1115,7 +960,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1125,60 +970,61 @@ msgstr ""
"wat aan die internet as 'n kliënt konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Gebruik sekuriteitsvlak"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1201,13 +1047,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:928
+#: ../../bootloader.pm_.c:912
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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1216,39 +1062,39 @@ 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:934
+#: ../../bootloader.pm_.c:918
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:937
+#: ../../bootloader.pm_.c:921
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:940
+#: ../../bootloader.pm_.c:924
#, 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:944
+#: ../../bootloader.pm_.c:928
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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Waar wil u die herlaaistelsel installeer"
@@ -1261,17 +1107,21 @@ msgstr "Gee hulp beskikbaar nie (nog nie).\n"
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Lęer"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Lęer/_Verlaat"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<ctrl>Q"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1304,14 +1154,14 @@ msgstr "Yaboot metode"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigureer"
@@ -1321,7 +1171,7 @@ msgid "System mode"
msgstr "Stelselmode"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
#: ../../bootlook.pm_.c:148
@@ -1332,14 +1182,16 @@ msgstr "Nee, ek verlang outo-aanteken"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1388,7 +1240,7 @@ msgstr "Ek kan nie meer partisies byvoeg nie"
msgid "Screenshots will be available after install in %s"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankryk"
@@ -1396,7 +1248,7 @@ msgstr "Frankryk"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgies"
@@ -1424,11 +1276,12 @@ msgstr "Norweegs"
msgid "Sweden"
msgstr "Sien"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italiaans"
@@ -1438,7 +1291,7 @@ msgstr "Italiaans"
msgid "Austria"
msgstr "seriaal"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1446,8 +1299,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lees noukeurig!"
@@ -1460,11 +1313,12 @@ msgstr ""
"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
"van die skyf. (2048 sektors is genoeg)."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fout"
@@ -1472,11 +1326,11 @@ msgstr "Fout"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Kies aksie"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1488,78 +1342,78 @@ msgstr ""
"Ek stel voor u verstel eers die grootte van dié partisie\n"
"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detail"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "Gejoernaliseer"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Ruilarea"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ander"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "LOersteltipes:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Skep"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Uitwis"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1567,67 +1421,72 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
"partisietipe"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Kies 'n partisie"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Kies 'n ander partisie"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Verlaat"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Herroep"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Verwydeer almal"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Nog"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Hardeskyfinligting"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle primęre partisies is gebruik"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1635,35 +1494,35 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Skryf partisietabel"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Verwyderbare media"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Selekteer lOer"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1671,11 +1530,11 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Waarskuwing"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1683,124 +1542,131 @@ msgstr ""
"Sit 'n floppie in die aandrywer.\n"
"Alle data op hierdie floppie sal verloor word."
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Gedetaileerde inligting"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Hegpunt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opsies"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Verstel Grootte"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Skuif"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatteer"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Voeg by LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Verwyder uit LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Verander RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Voorkeure: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Terugluslęer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Verander partisietipe"
#
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Watter lęerstelsel verlang u?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Oorskakeling van ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wil u terugluslęer %s heg?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1808,126 +1674,133 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "FAT lęerstelselgrense word bereken"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nuwe grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na watter skyf wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Verskuiwing"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Partisie word verskuif..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nuut"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Kies 'n bestaande LVM om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM naam?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Teruglus"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Teruglus lęernaam:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Regte naam"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Lęer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Lęer bestaan alreeds. Moet dit gebruik word?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Hegopsies:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Verskeie"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "toestel"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "vlak"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "blokgrootte"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Watter tipe van partisionering?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Hierdie pakket moet opgradeer word\n"
+"Is u seker u wil dit deselekteer?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1940,7 +1813,7 @@ msgstr ""
"gebruik\n"
"nie, dan het u nie /boot nodig nie."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1953,7 +1826,7 @@ msgstr ""
"gebruik,moet u\n"
"asb. 'n /boot partisie skep,"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1963,137 +1836,137 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partisietabel van skyf %s gaan opdateer word!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Terugluslęer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid het gefaal"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "LPD word verwyder..."
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Toestel:"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipe:"
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Naam: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Geheg\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Teruglus lęer(s): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2101,27 +1974,27 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Blokgrootte %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lęernaam: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2133,7 +2006,7 @@ msgstr ""
"drywerpartisie is en verkieslik alleen gelos\n"
"moet word.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2144,65 +2017,65 @@ msgstr ""
"Hierdie spesiale herlaaipartisie\n"
"is om u stelsel te duolaai.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info:"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisietabeltipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2212,36 +2085,66 @@ msgstr "Verander tipe"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Kliek asb. op 'n partisie"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Magtiging"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Gebruikerskode"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Gebruikerskode"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS-domein"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, 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:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck het gefaal met kode %d of sein %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2258,67 +2161,321 @@ msgstr ""
msgid "server"
msgstr "bediener"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lęergids moet altyd in die wortellęerstelsel bly"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "U benodig 'n ware lęerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"'n Fout het voorgekom - geen geldige toestelle om die nuwe lęerstelsels op "
"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "U get geen partisies nie!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Gebruik outobespeuring"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generies"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatering"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Verander tipe"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Verlaat"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Help/_Aangaande..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Muis"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Kanselleer"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Muis"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beskrywing"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Magtiging"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Selekteer lOer"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Netwerkportaaltoestel"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 knoppies"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Hardeskyfdeteksie."
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Sien hardeware inligting"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Vertoon inligting"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Stel muistoestel op"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Op poort %s bespeur"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Wag asb."
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekondes"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Aftas"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
#, fuzzy
msgid ""
@@ -2333,7 +2490,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2444,9 +2601,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2635,7 +2791,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2647,9 +2803,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2695,21 +2850,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2725,9 +2879,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2748,9 +2902,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2867,38 +3020,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2973,11 +3120,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3001,7 +3148,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr "Kies asb. "
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3016,7 +3163,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3031,7 +3178,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3047,7 +3194,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3055,23 +3202,23 @@ msgstr ""
"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
"ttyS0 onder GNU/Linux is."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3093,7 +3240,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3115,7 +3262,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3123,7 +3270,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3144,7 +3291,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3168,7 +3315,7 @@ msgstr ""
"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
"betrokke bedryfstelsels te laai."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3182,29 +3329,28 @@ msgstr ""
"Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)\" "
"kies."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3213,7 +3359,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3239,7 +3385,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sal probeer om vir PCI SCSI-kaarte te soek.\n"
@@ -3261,7 +3407,7 @@ msgstr ""
"Windows-bedryfstelsel te bekom.\n"
"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3271,9 +3417,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3285,7 +3430,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3311,7 +3456,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3338,18 +3483,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3357,12 +3501,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3378,14 +3521,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3396,7 +3539,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3404,12 +3547,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3424,20 +3567,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3445,7 +3588,7 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van lęer %s"
@@ -3475,7 +3618,7 @@ msgstr "U moet oor 'n ruilpartisie beskik"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3483,59 +3626,59 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Gebruik beskikbare spasie"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Gebruik bestaande partisies"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Gebruik vir die Windows-partisie vir teruglus"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Kies die groottes"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Basispartisiegrootte in MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ruilpartisiegrootte in MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Watter partisie se grootte wil u verander?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Windowslęerstelselgrense word bereken"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3544,11 +3687,14 @@ msgstr ""
"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
"Fout: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3570,54 +3716,54 @@ msgstr ""
"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
"OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Watter grootte wil u vir Windows behou?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partisie %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-grootteverandering het gefaal: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Daar is geen FAT partisies om te verander of om as teruglus (nie genoeg "
"spasie nie) te gebruik nie"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Wis hele skyf"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Verwyder Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Gespesialiseerde skyfpartisionering"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Gebruik fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3626,11 +3772,11 @@ msgstr ""
"U het nou partisie %s partisioneer.\n"
"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Die Windowspartisie beskik nie oor die nodige spasie nie."
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ek kon geen plek vir installasie vind nie."
@@ -3638,16 +3784,16 @@ msgstr "Ek kon geen plek vir installasie vind nie."
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Netwerk op pad op"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Netwerk op pad af"
@@ -3659,12 +3805,12 @@ msgstr ""
"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
"nie. Gaan op u eie risiko voort."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikaat hegpunt %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3676,12 +3822,12 @@ msgstr ""
"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -3691,9 +3837,9 @@ msgstr "Geen sagteskyaandrywer beskikbaar nie"
msgid "Entering step `%s'\n"
msgstr "Gaan stap '%s' binne\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3705,98 +3851,53 @@ msgstr ""
"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
"instruksielyn intik."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installasieklas"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Die totale grootte vir die gekose groepe is naastenby %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Indien u verkies om minder as hierdie grootte te installeer, kies dan 'n\n"
-"persentasie van pakkette wat u wil installeer.\n"
-"\n"
-"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
-"'n persentasie van 100%% sal alles gekose pakkette installeer."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"U het net spasie op u hardeskyf vir %d%% van hierdie pakkette.\n"
-"\n"
-"Indien u minder wil installeer, kies die persentasie wat u verlang.\n"
-"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
-"'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "U sal met meer akkuraatheid in die volgende stap kan kies."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Persentasie pakkette om te installeer"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Foutiewe pakket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Weergawe: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Groote: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
@@ -3804,104 +3905,105 @@ msgstr ""
"beskikbaar is nie"
#
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Die volgende pakkette gaan installeer word"
#
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geďnstalleer"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Wys outogeselekteerde pakkette."
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installasie"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Laai/Stoor op floppie"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimale installasie"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Besig met installasie"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Skatting"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tyd oor "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Wag asb. installasie word voorberei"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakkette"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installeer pakket %s"
#
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aanvaar "
#
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3916,17 +4018,17 @@ msgstr ""
"nie\n"
"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -3971,11 +4073,11 @@ msgstr "'n Fout het voorgekom"
msgid "Do you really want to leave the installation?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisensieooreenkoms"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3990,7 +4092,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4096,113 +4198,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Sleutelbord"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Wat is u sleutelborduitleg?"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Watter installasieklas verlang u?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installeer/Opgradeer"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Is hierdie 'n installasie of opgradering?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Aanbevole"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Kundige"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Opgradeer"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Knoppie-emulasie"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Knop-2 Emulasie"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Knop-3 emulasie"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Stel PCMCIA op..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE word opgestel"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "geen beskikbare partisies"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Hegpunte vir partisies word nou gesoek"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4214,7 +4320,7 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4222,7 +4328,7 @@ msgstr ""
"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
"Gaan aan op u eie risiko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4231,74 +4337,77 @@ msgstr ""
"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
"herlaai."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Geen wortellęerstelsel gevind nie"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Basispartisie"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Wat is die basispartisie (/) van u stelsel?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Kies die partisies om te formatteer"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Toets vir foutiewe areas?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Partisies word formateer"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Lęer %s word geskep en formatteer"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Soek vir beskikbare pakkette"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Soek vir pakkette om op te gradeer."
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geďnstalleer"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Klaar (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Aanbevole (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4306,55 +4415,55 @@ msgstr ""
"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Laai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Oplaai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pakketkeuse"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Stoor op floppie"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4364,16 +4473,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:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4382,23 +4491,23 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, 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:854
+#: ../../install_steps_interactive.pm_.c:844
#, 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:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4466,161 +4575,192 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+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:931
+#: ../../install_steps_interactive.pm_.c:923
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:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+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:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-bediener"
#
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Verwyder Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Plaaslike lęers"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+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:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP-magtiging"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS-domein"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP-bediener"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4647,19 +4787,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4683,7 +4823,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4692,28 +4832,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
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:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4721,11 +4861,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4733,15 +4873,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
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:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4752,18 +4892,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n leë floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4773,7 +4912,8 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4784,7 +4924,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4798,17 +4938,21 @@ msgstr ""
"bekyk die errata beskikbaar op\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisiële Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4817,15 +4961,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -4852,414 +4996,398 @@ msgstr ""
msgid "Choose a file"
msgstr "Kies 'n lęer"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Gevorderd"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Maak boom oop"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Maak boom toe"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Skakel tussen plat- en groepsortering"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Swak keuse, probeer weer\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opsies: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Wil u aboot gebruik?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tseggies (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norweegs"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russies"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sweeds"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "VK sleutelbord"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "VSA sleutelbord"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanies"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenies (tikmasjien)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latyns)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaars"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarussies"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Switsers (Duitse uitleg)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Switsers (Franse uitleg)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tseggies (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norweegs)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroaties"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelies"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelies (Foneties)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranies"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanees 106 sleutels"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreaanse sleutelbord"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanies AZERTY (oud)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanies AZERTY (nuut)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanies \"foneties\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Masedonies"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pools (QWERTZ uitleg)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romanies (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romanies (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serwies (Kirillies)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabel"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik sleutelbord"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (tradisionele \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (moderne \"Q\" modem)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukranies"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Viëtnamees \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavs (latynse uitleg)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5272,7 +5400,31 @@ msgstr "Sirkulęre heg %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefoonnommer"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formateer partisies"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5313,10 +5465,6 @@ msgstr "1 knop"
msgid "Generic 2 Button Mouse"
msgstr "Generiese 2-knop muis"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generies"
-
#
#: ../../mouse.pm_.c:46
msgid "Wheel"
@@ -5383,39 +5531,55 @@ msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finnies"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Vorige"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Is dit korrek?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Maak boom oop"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Maak boom toe"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Skakel tussen plat- en groepsortering"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konnekteer aan die internet"
@@ -5463,7 +5627,7 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie.\n"
"Ek kan nie hierdie konneksietipe opstel nie."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Kies die netwerkkoppelvlak"
@@ -5476,7 +5640,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:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -5493,15 +5657,15 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Rekenaarnaam"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Netwerkkonfigurasie-assistent"
@@ -5547,7 +5711,7 @@ msgstr "ISDN Konfigurasie"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Kies u internetdiensvoorsiener.\n"
"Indien nie in die lys nie kies Ongelys"
@@ -5567,14 +5731,14 @@ msgstr "Protokol vir die res van die węreld"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol vir die res vd węreld \n"
" geen D-Kanaal nie (bruikhuurlyne)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Watter protokol verlang u?"
#: ../../network/isdn.pm_.c:199
@@ -5598,7 +5762,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm reg te "
@@ -5615,13 +5780,13 @@ msgid "Continue"
msgstr "Gaan voort"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Wat is u ISDN-kaart?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
"PCI-kaart op die volgende skerm."
@@ -5638,47 +5803,47 @@ msgstr "Op watter seriaalpoort is u modem gekoppel?"
msgid "Dialup options"
msgstr "Opbelopsies"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Konneksienaam"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefoonnommer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Aantekenkode"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skriptipe"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminaaltipe"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domeinnaam"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Eerste DNS-bediener (opsioneel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-bediener (opsioneel)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5686,7 +5851,7 @@ msgstr ""
"\n"
"U kan diskonnekteer or herkonfigureer."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -5694,11 +5859,11 @@ msgstr ""
"\n"
"U kan u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "U is tans aan die internet gekonnekteer."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -5706,33 +5871,33 @@ msgstr ""
"\n"
"U kan aan die internet konnekter of u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "U is nie tans aan die internet gekonnekteer nie."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konnekteer"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Diskonnekteer"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Stel netwerk op"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetkonneksie en konfigurasie"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5751,12 +5916,12 @@ msgstr ""
"\n"
"Drk OK om voort te gaan."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5767,9 +5932,9 @@ msgstr ""
"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
"& Netwerkkonneksie te herkonfigureer.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -5779,66 +5944,72 @@ msgstr ""
"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Kies die profiel om te konfigureer"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Kundige bedryfsvlak"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normale modemkonneksie"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "Op poort %s bespeur"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN konneksie"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s bespeur"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL konneksie"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "op koppelvlak %s bespeur"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelkonneksie"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabelkonneksie bespeur"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN konneksie"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet kaart(e) bespeur"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Kies die konneksie wat u wil konfigureer"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -5848,23 +6019,23 @@ msgstr ""
"Kies die een wat u verlang.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetkonneksie"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5875,7 +6046,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -5885,7 +6056,7 @@ msgstr ""
"\n"
"Die kongiurasie gaan op u stelsel toegepas word.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -5893,16 +6064,16 @@ 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:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -5912,7 +6083,7 @@ msgstr ""
"U kan die toestel net so aanvaar.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5922,40 +6093,45 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr "(drywer %s)"
#
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Outomatiese IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Gelaai tydens herlaaityd"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
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:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5967,64 +6143,64 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Instaanbediener moet begin met ftp://"
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internetkonfigurasie"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Wil u nou aan die internet konnekteer?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Konneksie word getoets..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Die stelsel is nou aan die internet gekonnekteer."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Vir sekuriteitsredes, word u nou gediskonnekteer."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6033,111 +6209,116 @@ msgstr ""
"Probeer om u stelsel te herkonfigureer."
#
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konneksiekonfigurasie"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Vul asb. die velde hieronder in"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kaart IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kaartgeheue (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kaart I/O"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kaart IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kaart IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "U persoonlike telefoonnommer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Voorsienernaam (bv voorsiener.co.za)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Voorsiener se telefoonnommer"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Voorsiener DNS 1 (opsioneel)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Voorsiener DNS 2 (opsioneel)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Kies u land"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Belmetode"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Konneksiespoed"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Konneksie tydlimiet (in sekondes)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Gebruikerskode"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Wagwoord"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "heg het gefaal"
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"U het 'n gat die partisietabel maar ek kan dit nie gebruik nie.\n"
"Die enigste oplossing is om die primęre partisie te skuif sodat die gat\n"
"langs die ekstensie partisies is"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Herstel van léer %s het gefaal: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Korrupte rugsteunlęer"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fout in die skryf van %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6148,194 +6329,194 @@ msgstr ""
"Dit beteken dat enigiets wat na u hardeskyf geskryf word as gemors sal "
"eindig."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "benodig"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "belangrik"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "baie oulik"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "oulik"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "moontlik"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - Nuwe generasie LPR"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Lyndrukkerdiensprogram"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Druk sonder drukkertou"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Eksterne drukker"
#
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Eksterne CUPS-drukker"
#
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Eksterne LPD-drukker"
#
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Netwerkdrukker (sok)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Eksterne Netware-drukker"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Tik drukkertoestel URI in"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Pyk drukstuk na program"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Onbekende model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Eksterne drukker"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fout in die skryf van %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(op %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(op hierdie rekenaar)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-bediener IP:"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Verstek)"
@@ -6359,13 +6540,13 @@ msgstr ""
"op te stel nie; drukkers wod outomaties bespeur.\n"
"Indien u twyfel, kies \"Eksterne CUPS-drukker\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Konfigurasie"
#
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Verwyder CUPS-bediener"
@@ -6395,7 +6576,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Die poortnommer moet heeltal wees."
@@ -6403,7 +6584,7 @@ msgstr "Die poortnommer moet heeltal wees."
msgid "CUPS server IP"
msgstr "CUPS-bediener IP:"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Poort"
@@ -6411,22 +6592,13 @@ msgstr "Poort"
msgid "Automatic CUPS configuration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Toestel word afgetas..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Toets poorte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Voeg drukker by"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6439,14 +6611,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6465,12 +6637,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Eksterne drukker"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6484,11 +6656,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6498,36 +6670,40 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Gebruik outobespeuring"
#
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Toets poorte"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s bespeur"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6535,43 +6711,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6579,7 +6755,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6587,73 +6763,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Kleurkonfigurasie"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Installeer pakket %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Eksterne lpd drukkeropsies"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6663,28 +6849,28 @@ msgstr ""
"van die drukkkerbediener en die naam van die drukkertou\n"
"voorsien word."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Eksterne bedienernaam"
#
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Eksterne bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Eksterne drukkernam ontbreek!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6697,35 +6883,35 @@ msgstr ""
"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-bedienernaam"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-bediener IP:"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Drukkernaam:"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Werkgroep:"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Óf die bedienernaam óf die bediener-IP moet verskaf word!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "SAMBA-deelnaam ontbreek!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6749,7 +6935,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6758,7 +6944,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6766,11 +6952,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare drukkeropsies"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6783,28 +6969,28 @@ msgstr ""
"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Drukkerbediener"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Drukkertounaam"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-tounaam ontbreek!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Sokdrukkeropsies"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6818,19 +7004,19 @@ msgstr ""
"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
"wat saam met die hardeware gekom het."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Drukkerbedienernaam"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Drukkerbedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Drukkertoestel URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -6840,11 +7026,11 @@ msgstr ""
"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
"spoelprogramme ondersteun nie."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "'n Geldige URI moet verskaf word!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -6854,30 +7040,26 @@ msgstr ""
"Die Beskrywing- en Liggingvelde is opsioneel.\n"
"Hulle dien as inligting vir gebruikers."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Drukkernaam"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beskrywing"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ligging"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Drukkerdata word gelees..."
#
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6892,27 +7074,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Is dit korrek?"
#
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Drukkermodelkeuse"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Oor watter tipe drukker beskik u?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6921,18 +7103,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6942,12 +7124,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Internetkonfigurasie"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6955,7 +7137,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6968,7 +7150,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6978,22 +7160,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsie %s moet 'n heeltal wees!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsie %s moet 'n nommer wees"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opsie %s is buite bereik!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7002,11 +7184,11 @@ msgstr ""
"Wil u hierdie drukker (\"%s\")\n"
"die verstek drukker maak?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Toetsbladsye"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7014,40 +7196,40 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Geen toetsbladsye"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Druk"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standaard toetsbladsy"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Fototoetsbladsy"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7062,7 +7244,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7070,16 +7252,16 @@ msgstr ""
"Toetsbladsy(e) is na die drukker gestuur.\n"
"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Het dit reg gewerk?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Geen drukker"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7088,15 +7270,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7105,49 +7287,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7157,7 +7339,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7166,30 +7348,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sluit af"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Netwerk op pad af"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Sluit af"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7197,36 +7390,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Dra drukkerkonfigurasie oor"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7236,51 +7429,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Moet nie drukkers oordra nie"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Oordrag"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7288,61 +7481,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nuwe drukkernaam"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "%s word oorgedra..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Konneksie word begin..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7350,12 +7543,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7365,7 +7558,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -7373,27 +7566,27 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Hoog"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoďes"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7409,12 +7602,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7428,68 +7621,68 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Installeerde sagteware word deursoek..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "LPRng word verwyder..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "LPD word verwyder..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Kies drukkerspoelprogram"
#
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Drukkerstelsel:"
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Drukker"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7500,7 +7693,7 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7510,30 +7703,34 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normale modus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Verlaat"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -7542,104 +7739,104 @@ msgstr ""
"Drukker %s: %s %s\n"
"Wil u hierdie drukker verander?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Gaan voort!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Drukkerkonneksietipe"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Drukkernaam,. beskrywing, ligging"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Drukkervervaardiger, model, drywer"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Drukkervervaardiger, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Maak hierdie die verstekdrukker"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Wil u die konfigurasie toets?"
#
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Verwyder drukker"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Verstek drukker"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Drukker \"%s\" is nou die verstekdrukker"
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7720,24 +7917,62 @@ msgstr "Die wagwoorde stem nie ooreen nie. Probeer weer!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Kan nie lęer %s skryf nie"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid het gefaal"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
+"om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n rekenaar\n"
+"wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
+"wagwoord\n"
+"toegang nie."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
+"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
+"af kan aanvaar."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Sluit konfigurasie af"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opsies"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
@@ -7794,7 +8029,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7865,7 +8100,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7941,7 +8176,7 @@ msgstr ""
"gebruik word. Portmap moet loop op rekenaars wat as bedieners vir hierdie\n"
"protokolle, en ander protokolle wat die RPC meganisme gebruik, dien."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8036,7 +8271,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8157,6 +8392,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Beheersentrum"
@@ -8261,6 +8497,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installeer pakket %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8269,6 +8514,160 @@ msgstr ""
"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
"Ek sal die nodige partisies skoonmak."
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Dra drukkerkonfigurasie oor"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datbasis"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datbasis"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Voeg gebruiker by"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-Kliënt"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Uitwis"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Selekteer lOer"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Voeg gebruiker by"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP-Kliënt"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigurasie in aabou..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "herkonfigureer"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Geen sagteskyaandrywer beskikbaar nie"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fout!"
@@ -8307,6 +8706,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Outoinstallasieskyf word geskep."
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8315,12 +8719,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Geluk!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8328,36 +8732,29 @@ msgstr ""
"Die floppie is sukselvol geskep.\n"
"U kan nou weer 'n installasie uitspeel."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Installasie"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Voeg 'n gebruiker by"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Terugluslęer %s word geformateer"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8365,15 +8762,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8381,715 +8770,781 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Fout met die les van lęer %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, 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:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Korrupte rugsteunlęer"
#
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN konneksie"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Kies drukkerkonneksie"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, 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:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipe"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "gebruik hardeksyfoptimisasie?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "gebruik hardeksyfoptimisasie?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Stel lęerstelsels op"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Muistoestel: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2083
+#
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Toets asb. die muis"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN konneksie"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Kies drukkerkonneksie"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Teks"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Kies pakkette om te installeer"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in lęer"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Stel lęerstelsels op"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9121,7 +9576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9130,7 +9585,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9171,7 +9626,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9199,12 +9654,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -9221,7 +9681,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9261,7 +9721,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9272,7 +9732,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9285,7 +9745,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9329,105 +9789,527 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsole hulpprogramme"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Beheersentrum"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "verpligtend"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Muis"
+
+#
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Eksterne drukker"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Drukkernaam:"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Drukker"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Netwerkkonfigurasie-assistent"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Magtiging"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakketkeuse"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Wag asb."
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Verlaay installasie"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Poort"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netwerkkonfigurasie (%d toestelle)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiel:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Vee profiel uit..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profiel om uit te vee..."
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nuwe profiel..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Bedienernaam:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internettoegang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipe:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Portaal:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Koppelvlak:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Konfigureer internettoegang..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN-konfigurasie"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drywer"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Koppelvlak"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Toestand"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Stel plaaslike netwerk op..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Pas toe"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Wag asb... Konfigurasie word toegpas"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Gekonnekteer"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konnekteer..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Diskonnekteer..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN konfigurasie"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Toestel %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Herlaaiprotokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Gelaai tydens herlaaityd"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP-kliënt"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "Aktiveer nou dadelik"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktiveer nou dadelik"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetkonneksiekonfigurasie"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetkonneksiekonfigurasie"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Konneksietipe:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameters"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Portaal"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernetkaart"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-Kliënt"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "gebruik: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulenaam"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Grootte"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "herlaaiskyfskepping"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "verstek"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy Fout: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "bedryfstelselkernweergawe"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Algemeen"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Kundige area"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opsionele parameters"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Voeg module by"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forseer"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "indien nodig"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "laat SCSI-modules weg"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "laat RAID-modules weg"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Verwyder module"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Uitset"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Bou die skyf"
+
+#: ../../standalone/drakfloppy_.c:422
+#, 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:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Daar is geen medium for toestel %s nie.\n"
+"Sit asb. een in."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Kon nie vurk nie: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Kon nie mkbootdisk ordentelik afsluit nie:\n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s is nie gevind nie"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Klaar"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formatteer floppie"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Berei installasie voor"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "Laai dit"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "beperk"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9436,124 +10318,123 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formateer partisies"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Deďnstallasie van RPMs"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Sluit konfigurasie af"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Hegpunt"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Kies die partisies om te formatteer"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Kantoor"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Aborteer"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Drukker"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Installeer stelsel"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Selekteer lOer"
#
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Verwyder drukker"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Beginboodskap"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Installasie"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Verlaay installasie"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetkonneksiedeling is ontsper"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9565,31 +10446,31 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "deaktiveer"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "ignoreer/sien oor"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "herkonfigureer"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Bedieners word gedeaktiveer..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetkonneksiedeling is gedeaktiveer"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetkonneksiedeling is gesper"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9601,19 +10482,19 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "Aktiveer"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Bedieneers word aktiveer..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetkonneksiedeling is geaktiveer"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9630,21 +10511,21 @@ msgstr ""
"\n"
"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Koppelvlak %s (met module %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Koppelvlak %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9652,12 +10533,12 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
"hardewarekonfigurasieprogram."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netwerkkoppelvlak"
#
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9672,19 +10553,19 @@ msgstr ""
"\n"
"Ek gaan nou u LAN met daardie kaart opstel."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9694,17 +10575,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9715,7 +10596,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9727,33 +10608,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS-bediener IP:"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Vuurmuurkonfigurasie gevind!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9761,44 +10642,44 @@ msgstr ""
"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
"dietyd self regstellings moet aanbring."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme met Installasue van pakket %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9808,206 +10689,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netwerkkonfigurasie (%d toestelle)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiel:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Vee profiel uit..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profiel om uit te vee..."
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuwe profiel..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Bedienernaam:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internettoegang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipe:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Portaal:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Koppelvlak:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigureer internettoegang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN-konfigurasie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drywer"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Koppelvlak"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Toestand"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Stel plaaslike netwerk op..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Pas toe"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Gekonnekteer"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nie gekonnekteer nieKabelkonneksie"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konnekteer..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Diskonnekteer..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfigurasie"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Toestel %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Herlaaiprotokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Gelaai tydens herlaaityd"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-kliënt"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "Aktiveer nou dadelik"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktiveer nou dadelik"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Konneksietipe:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Portaal"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernetkaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Kliënt"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sekuriteitsvlak word gestel."
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Beheersentrum"
@@ -10016,94 +10697,130 @@ msgstr "Beheersentrum"
msgid "Choose the tool you want to use"
msgstr "Kies die instrument wat u wil gebruik"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadees (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Frankryk"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Yslandies"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seriaal"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Daar was 'n fout met die installasie van die pakkette:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10149,7 +10866,7 @@ msgstr "Kon nie die intydse opgradering begin nie !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10159,51 +10876,47 @@ msgstr ""
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr ""
+msgstr "/Lęer/_Nuut"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr ""
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr ""
+msgstr "/Lęer/_Oopmaak"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr ""
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr ""
+msgstr "/Lęer/_Stoor"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr ""
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr ""
+msgstr "/Lęer/Stoor _as"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
-msgstr ""
+msgstr "/Lęer/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr ""
+msgstr "/_Opsies"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
+msgstr "/Opsies/Toets"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr ""
+msgstr "/Help/_Aangaande..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10263,7 +10976,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10272,12 +10985,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Konfigurasie"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -10289,69 +11002,99 @@ msgstr ""
"Hier kan u die HTTP en FTP-instaanbedieners\n"
"opstel met of sonder aantekenkodes en wagwoorde\n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "skadu's"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domeinnaam"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Verlaat"
+msgid "Ftp Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix e-posbediener, Inn netnuusbediener"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS-bediener"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Dienste"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Drukkerbediener"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interessant"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatering"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Kleurkonfigurasie"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "Geen 'serial_usb' gevind nie\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Toestel word afgetas..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10395,6 +11138,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Vuurmuurkonfigurasie"
@@ -10746,10 +11501,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia - Klank"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Nutsprogramme"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "dokumentasie"
@@ -10855,10 +11606,6 @@ msgstr ""
"en om ook die web deur te blaai."
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Aaaargivering, emulators, monitorprogramme"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Persoonlike finansies"
@@ -10908,2016 +11655,154 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Aborteer"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Geen"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Kies die verstek gebruiker:"
-
-#
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Pas toe/herlees drukkers"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "U kan die opsies vir module %s hier intik."
-
-#~ msgid "mount failed"
-#~ msgstr "heg het gefaal"
-
-#~ msgid "Low"
-#~ msgstr "Laag"
-
-#~ msgid "Medium"
-#~ msgstr "Medium"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "'n Aantal verbetering op heirdie sekuriteitsvlak, die hoof een is meer\n"
-#~ "sekuriteitswaarskuwings en -toetse."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimedia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Herlaaimodus"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Kundige"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux beheer tyd in GMT (Greenwichmeridiaantyd) en vertaal dit dan\n"
-#~ "in u lokale tyd volgends die gekose tydsone."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Konnekteer aan die internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Diskonnekteer van die internet"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck het gefaal met kode %d of sein %d"
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfigureer netwerkkonneksie (LAN or internet)"
+#~ msgid "Choose options for server"
+#~ msgstr "Selekteer opsies vir bediener"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Na watter skyf wil u skuif?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Kies die pakkette wat u wil installeer"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor is nie opgestel nie"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome werkstasie"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache is 'n WWW-bediener.\n"
-#~ "Dit kan HTML-lęers uitstuur en CGI's hanteer"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafikakaart is nog nie konfigureer nie"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
-#~ "rekenaarname na IP-adresse toe om te skakel."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Resolusie is nog nie gekies nie"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Wat is u muistoestel?"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Beskikbare NFS-gedeëlde hulpbronne word gesoek"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Beskikbare NFS-gedeëlde hulpbronne van bediner %s word gesoek."
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Beskikbare SAMBA-gedeëlde hulpbronne word gesoek"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Beskikbare SAMBA-gedeëlde hulpbronnevan bediener %s word gesoek"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Verlaat"
-
-#~ msgid "Removable media"
-#~ msgstr "Verwyderbare media"
-
-#~ msgid "Active"
-#~ msgstr "Aktief"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nee"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "'n Drukker, model \"%s\", is opgespoor op "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Plaaslikte drukkertoestel"
-
-#~ msgid "Printer Device"
-#~ msgstr "Drukkertoestel:"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Toestel/Lęernaam ontbreek"
-
-#
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Drukkers op eksterne CUPS-bediener(s)"
-
-#
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Drukkers op eksterne CUPS-bediener(s)"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Stelselmode"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Ander"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Wat is u sleutelborduitleg?"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipe:"
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Korrupte rugsteunlęer"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Stel X op"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Drukkertoestel:"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Kanselleer"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "OK"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Sluit af"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Konneksie word begin..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Konneksie word afgesluit..."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Die stelsel is nou ontkoppel."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Kies die grootte van die installasie"
-
-#~ msgid "Total size: "
-#~ msgstr "Totale grootte: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Wag asb.,"
-
-#~ msgid "Total time "
-#~ msgstr "Totale tyd "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Gebruik bestaande konfigurasie vir X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Watter toestel is die drukker aan gekoppel?\n"
-#~ "(let op dat /dev/lp0 ekwiwalent is aan LPT1:)\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Waarskuwing! Die netwerkkaart is alreeds opgestel. Ek gaan dit "
-#~ "herkonfigureer?"
-
-#~ msgid "New"
-#~ msgstr "Nuut"
-
-#~ msgid "Remote"
-#~ msgstr "Ekstern"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr ""
-#~ "Indien bo-gelyste inskrywings nie die nodige inskrywing bevat nie, voeg "
-#~ "dit hier by:"
-
-#~ msgid "Shared resource"
-#~ msgstr "Gedeëlde hulpbron"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Vaagheid (%s). Wees meer presies\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (verstek %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "U keuse? (Verstek %s tik 'none' vir geen)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "kan nie /etc/sysconfig/autologin oopmaak vir lees nie: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Wil u die netwerk herlaai?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Stem u saam?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ek gaan nou die netwerktoestel herlaai: \n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ek gaan nou die netwerktoestel %s herlaai. Stem u saam?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Indien u spesifiek anders weet, is die gewone keuse \"/dev/hda\"\n"
-#~ "(primęre meester IDE-skyf) of \"/dev/sda\" (eerste SCSI-skyf)."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr ""
-#~ "Konneksie tydlimiet (in sekondes) [ beta, nog nie geďmplementeer nie ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Kon nie \"%s\" die verstek drukker maak nie!"
-
-#
-#~ msgid "Test the mouse here."
-#~ msgstr "Toets die muis hier."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Kies voorkeurtaal vir installasie en stelselgebruik."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Kies die sleutelborduitleg uit die bostaande lys"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Selekteer:\n"
-#~ "\n"
-#~ " - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die "
-#~ "primęre\n"
-#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
-#~ "\n"
-#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-#~ "installasie wil\n"
-#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
-
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Die verskillende opsies vir u rekenaar se gebruik (indien u \"Afgemeet"
-#~ "\" \n"
-#~ "of \"Kundige\" sou kies) is die volgende:\n"
-#~ "\n"
-#~ " - Normaal: Indien die rekenaar primęr vir daaglikse kantoorgebruik is.\n"
-#~ " Moenie programmeringspakette verwag nie.\n"
-#~ "\n"
-#~ " - Ontwikkeling: Indien die rekenaar vir programontwikkel;ing gebruik "
-#~ "sal\n"
-#~ " word. 'n Volledige stel kompileerders, saamstellers en ontfouters "
-#~ "sal \n"
-#~ " opgesit word.\n"
-#~ "\n"
-#~ " - Bediener: Indien die rekenaar primęr 'n bediener sal wees, hetsy met "
-#~ "NFS,\n"
-#~ " SMB, drukkerbediening, NIS magtiging ens.\n"
-#~ " Moenie vensterstelsels soos KDE en GNOME verwag nie.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "U kan nou die pakketgroepe kies wat u wil installeer of opgradeer.\n"
-#~ "\n"
-#~ "DrakX sal dan kyk of daar genoegsame spasie is vir die volledige "
-#~ "installasie.\n"
-#~ "Indien nie sal u verwittig word. Indien u voortgaan, sal van die minder "
-#~ "belangrike\n"
-#~ "pakkette nie installeer word nie.Heel onder kan u die opsie \"Individuele "
-#~ "pakketkeuses\"\n"
-#~ "kies waarna u deur meer as 'n 1000 pakkette sal moet blaai....."
-
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Indienu al die CDs in die bogenoemde lys het, kliek OK.\n"
-#~ "Indien u geen het nie, kliek Kanselleer.\n"
-#~ "Indien sekere CDs weg is, onselekteer hulle en kliek dan OK."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "U kan nou die opbelopsie invul. Indien u\n"
-#~ "twyfel kry die korrekte inligting van u ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Sleutel in:\n"
-#~ "\n"
-#~ " - IP-adres: Indien u dit nie weet nie vra u netwerkadministrateur of "
-#~ "ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Netmasker: \"255.255.255.0\" is gewoonlik 'n goeie keuse. Indien u "
-#~ "twyfel,\n"
-#~ " vra die netwerkadministrateur of ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Outomatiese IP: Indien u netwerk bootp of dhcp protokolle ondersteun, "
-#~ "kies\n"
-#~ " hierdie opsie. In so 'n geval is 'n IP-adresinskrywing nie nodig "
-#~ "nie. Indien u\n"
-#~ " twyfel, vra die netwerkadministrateur of ISP.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Indien u netwerk NIS gebruik, kies \"Gebruik NIS\". Indien u twyfel vra\n"
-#~ "die netwerkadministrateur."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "U kan nou die opbelopsie invul. Indien u\n"
-#~ "twyfel kry die korrekte inligting van u ISP."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Indien u instaanbedieners wil gebruik, stel hulle hier op.. Indien u "
-#~ "twyfel vra\n"
-#~ "die netwerkadministrateur of ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "U kan 'n kriptografiese pakket installeer indien u internetkonneksie reg "
-#~ "opgestel is.\n"
-#~ "Kies eers die spieël waar u die pakket vanaf wil aflaai en kies dan die "
-#~ "pakkette\n"
-#~ "om te installeer.\n"
-#~ "\n"
-#~ "Let wel: U moet 'n spieël en pakkette selekteer n.a.l plaaslike wetgewing."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "U kan nou die 'root' wagwoord voorsien vir u Mandrake Linux stelsel.\n"
-#~ "Die wagworod moet twee keer ingevoer word en te verfiëer dat dit\n"
-#~ "korrek is.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is die administrateur van die stelsel en is die enigste gebruiker\n"
-#~ "wat toegelaat wiord om die stelselkonfigurasie te verander. In dié lig,\n"
-#~ "kies asb. die wagwoord sorgvuldig. Ongemagtigde gebruik van die root\n"
-#~ "rekening kan uitermatiglik nadelig wees vir die integriteit van die\n"
-#~ "stelsel. Die wagwoord moet alfanumeries wees en ten minste 8 karakters\n"
-#~ "lank. MOENIE die wagwoord ęrens neerskryf nie. Moet dit nie te lank of "
-#~ "te\n"
-#~ "ingwikkeld maak nie, u moet dit met min moeite onthou."
-
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "U mag nou een of meer gewone gebruikersrekeninge skep. Dit is in\n"
-#~ "teenstelling met die bevoorregte 'root' rekening. Elke "
-#~ "gebruikersrekening\n"
-#~ "sal oor sy eie voorkeure (grafiese omgewing, programstelling, ens.) en\n"
-#~ "tuisgids (waar hierdie instellings gestoor word) beskik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Derhalwe moet u in die stelsel intkeen met u eie gebruikerskode en slegs\n"
-#~ "'root' gebruik vir administratiewe doeleindes.\n"
-#~ "\n"
-#~ "Skep eerstens 'n rekening vir uself. Selfs indien u die enigste "
-#~ "gebruiker\n"
-#~ "op die stelsel sal wees, moet u NIE as 'root' vir u daaglikse gebruik\n"
-#~ "inteken NIE. 'n Onbruikbare stelsel kan net een tikfout ver weg wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Derhalwe moet u aanteken met die gebruikerskode wat u hier skep en "
-#~ "'root'\n"
-#~ "net vir admintratiewe doeleindes gebruik."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO en Grub hoof opsies is:\n"
-#~ " - Herlaaitoestel: Stel die naam van die toestel (bv. hardeskyfpartisie\n"
-#~ " wat die herlaaisektor bevat. Indien u spesifiek anders weet\n"
-#~ " kies \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
-#~ " tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
-#~ " Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na "
-#~ "die\n"
-#~ " sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
-#~ "die\n"
-#~ " wagperiode nul is.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Videomode: Kies die spesifieke VGA teksmode wat gebruik moet word "
-#~ "met\n"
-#~ " herlaai. Die volgende waardes is beskikbaar:\n"
-#~ " * normaal: selekteer normale 80x25 mode.\n"
-#~ " * syfer: die ooreenstemmende teksmode."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO 'n herlaaiprogram vir SPARC. Dir kan GNU/Linux of enige ander\n"
-#~ "bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word "
-#~ "hierdie\n"
-#~ "bedryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing "
-#~ "maak\n"
-#~ "op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
-#~ "\n"
-#~ "\n"
-#~ "U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die "
-#~ "nodige\n"
-#~ "inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om "
-#~ "die\n"
-#~ "betrokke bedryfstelsels te laai."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO hoofkeuses is:\n"
-#~ " - Herlaaitoestel: Waar wil u die inligting om GNU/Linux te laai plaas? "
-#~ "Die beste is\n"
-#~ "gewoonlik om \"Eerste hardeskyfsektor (MBR)\" te kies.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
-#~ " tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
-#~ " Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na "
-#~ "die\n"
-#~ " sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
-#~ "die\n"
-#~ " wagperiode nul is."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Dit is tyd om die X-vensterstelsel op te stel. Hierdie is die kern van\n"
-#~ "die GNU/Linux grafiese omgewing. Vir hierdie doeleindes, moet u 'n "
-#~ "videokaart\n"
-#~ "en monitor kies. Meeste van hierdie stappe is outomaties en u moet net\n"
-#~ "verifiëer of dit korrek is.\n"
-#~ "\n"
-#~ "\n"
-#~ "Na konfigurasie sal X outmaties gelaai word, behalwe as u DrakX "
-#~ "andersins\n"
-#~ "aansę. Indien die stelling u nie pas nie, kom terug en verander so veel\n"
-#~ "keer soos nodig."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Indien iets verkeerd is in die X-konfigurasie, gebruik hierdie opsies om\n"
-#~ "die X-vensterstelsel reg op te stel."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Indien u verkies om 'n grafiese intekenarea te kry, kies \"Ja\", "
-#~ "andersins \"Nee\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "U stelsel gaan nou herlaai.\n"
-#~ "\n"
-#~ "U nuwe Mandrake Linux stelsel sal outomaties laai. Indien u 'n ander\n"
-#~ " bedryfstelsel wil laai, lees die ekstra instruksies noukeurig deur."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Skryf /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatteer almal"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Na formatering van alle partisies"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "alle data om hierdie partisies sal verloor word"
-
-#~ msgid "Reload"
-#~ msgstr "Herlaai"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Wil u 'n outoinstallasieskyf maak vir Linux replikasie?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL konfigurasie"
-
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Met 'n eksterne CUPS-bediener, hoef u glad nie 'n drukker hier\n"
-#~ "op te stel nie; drukkers wod outomaties bespeur.\n"
-#~ "Indien u twyfel, kies \"Eksterne CUPS-bediener\"."
-
-#~ msgid "Remote queue"
-#~ msgstr "Eksterne drukkertou"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Eksterne tounaam ontbreek!"
-
-#~ msgid "Command line"
-#~ msgstr "Instruksielyn"
-
-#~ msgid "Modify printer"
-#~ msgstr "Verander drukker"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Netwerkmonitor"
-
-#~ msgid "Profile "
-#~ msgstr "Profiel"
-
-#~ msgid "Connection Time: "
-#~ msgstr "Konneksietyd"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Internetkonneksie"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Internetdiskonneksie"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Diskonnekteer van die internet het misluk."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Diskonneksie van die internet sukssevol"
-
-#~ msgid "Connection complete."
-#~ msgstr "Konneksie suksesvol"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Verstek loopvlak"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Konfigurasielęerinhoud is onverstaanbaar"
-
-#~ msgid "Adapter"
-#~ msgstr "Toestel"
-
-#~ msgid "Disable network"
-#~ msgstr "Sper netwerkstelsel"
-
-#~ msgid "Enable network"
-#~ msgstr "Aktiveer netwerk"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (of ADSL) konneksie"
-
-#~ msgid "Choose"
-#~ msgstr "kies"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "U kan die URI, om die drukker via CUPS te gebruik, direk spesifiseer"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Ja, druk ASCII toetsbladsy"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Ja, druk die PostScript toetsbladsy"
-
-#~ msgid "Paper Size"
-#~ msgstr "Papiergrootte"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Stoot papier uit na voltooiing?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint-dryweropsies"
-
-#~ msgid "Color depth options"
-#~ msgstr "Kleurdiepte opsies"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Druk teks as PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Korrigeer trapsgewyse teks?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Aantal bladsye per uitsetblad?"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Regs/Links kantlyne in punte (1/72 van 'n duim)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Bo/Onder kantlyne in punte (1/72 van 'n duim)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Ekstra GhostScriptopsies"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Ekstra teksopsies"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Omgekeerde bladsyorde"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Kies eksterne drukkerkonneksie"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Elke drukker benodig 'n naam (bv. lp)\n"
-#~ "Ander parameters soos 'n beskrywing en 'n ligging kan ook gegee word.\n"
-#~ "Wat is die drukker se naam en wat is die konneksietipe?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Elke drukkertou (waar drukstukke heengaan) het 'n naam nodig \n"
-#~ "(baie keer 'lp') and 'n gekoppelde spoelgids. Watter naam en\n"
-#~ "spoelgids moet gebruik word?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Tounaam"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spoelgids"
-
-#~ msgid "Disable"
-#~ msgstr "Deaktiveer"
-
-#~ msgid "Enable"
-#~ msgstr "Aktiveer"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Om 'n veiliger stelsel te bou, moet u \"Gebruik skadulęer\" \n"
-#~ "en \"Gebruik MD5 wagwoorde\" kies."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Indien u netwerk NIS wil gebruik, kies \"Gebruik NIS\" hier. Indien u "
-#~ "twyfel vra\n"
-#~ "die sysadmin.."
-
-#~ msgid "yellow pages"
-#~ msgstr "geelbladsye"
-
-#~ msgid "Light configuration"
-#~ msgstr "Ligte konfigurasie"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Voorsiener DNS 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Voorsiener DNS 2"
-
-#, fuzzy
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Wil u nou aan die internet konnekteer?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Selekteer lOer"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Konfigureer internetkonneksie"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Stel X op"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Stel netwerk op"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Hierdie skrip laai de nodige modules vir 'n USB-muis."
-
-#, fuzzy
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ "Nou dat u internetkonfigurasie opgestel is,\n"
-#~ "moet u die rekenaar opstel om dit te deel.\n"
-#~ "LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
-#~ "stel.\n"
-#~ "\n"
-#~ "Wil u internetdeling opstel?\n"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Outomatiese afhanklikhede"
-
-#, fuzzy
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Stel X op"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Maar 'n herlaaiskyf"
-
-#~ msgid "Choice"
-#~ msgstr "Keuse"
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "U kan nou 'n paar diverse opsies vir u stelsel kies.\n"
-#~ "\n"
-#~ " - Optimeer hardeskyf. Hierdie kan hardeskyfwerksverrigting verbeter, "
-#~ "maar is net\n"
-#~ " vir kundige gebruikers bedoel. Sekere gebroke koppelvlakke kan data "
-#~ "ruďneer.\n"
-#~ " Die bedryfstelsel kern het 'n swartlys van hardeskywe, maar indien u "
-#~ "onaangename\n"
-#~ " verrassings wil voorkom los hierdie opsie uit.\n"
-#~ "\n"
-#~ " - Sekuriteitsvlak: Lees die handleiding vir volledigheid, maar in "
-#~ "kort:\n"
-#~ " Kies \"Medium\" indien u twyfel. Vir 'n hoogs veilige stelsel kies "
-#~ "\"Paranoďes\",\n"
-#~ " maar pasop: OP HIERDIE VLAK KLAN SELFS NIE 'ROOT' OP DIE KONSOLE\n"
-#~ " AANTEKEN NIE. Vir 'root' toegang moet 'n gewone gebruiker eers "
-#~ "aanteken en dan\n"
-#~ " \"su\". Dit is uitsluitlik vir 'n bediener bedoel.\n"
-#~ "\n"
-#~ " - Presiese geheuegrootte: Daar is geen ongelukkig standaard metode om "
-#~ "die geheuegrootte\n"
-#~ " uit die BIOS te bepaal nie. Soms sal Linux nie die grootte korrek "
-#~ "bepaal nie. In hierdie geval\n"
-#~ " kan die korrekte grootte her gegee word. Let daarop dat 'n verskil "
-#~ "van 2-4MB normaal is.\n"
-#~ "\n"
-#~ " - Outohegting van verwyderbare media: Indien u nie elke keer die "
-#~ "hegting per intik wil doen\n"
-#~ " nie (van CDROMs, floppies, ZIpaandrywers ens.), selekteer hierdie "
-#~ "opsie.\n"
#~ "\n"
-#~ " - NumLock: Indien u NumLock wil aansit by herlaaityd, selekteer hierdie "
-#~ "opsie. Dit sal\n"
-#~ " nie noodwendig NumLock onder X aansit nie."
+#~ "probeer van die parameters verander"
-#~ msgid "Miscellaneous"
-#~ msgstr "Arbitręre items"
+#~ msgid "An error occurred:"
+#~ msgstr "Daar was 'n fout:"
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Diverse vrae"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "uitgang binne %ds"
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "U kan nie supermount in hoë sekuriteitsvlak gebruik nie."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Is dit korrek?"
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "Warskuwing: IN HIERDIE SEKURITEITSVLAK, kan ROOT nie by die KONSOLE "
-#~ "AANTEKEN nie.\n"
-#~ "OM 'root' te wees moet u eers as 'n gewone gebruiker aanteken en dan 'su'."
-#~ "Hierdie is spesifiek vir bedienergebruik. U is gewaarsku!"
-
-#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
-#~ msgstr ""
-#~ "Wees versigtig, met NumLock aan sal heelwat sleutels as syfers eerder as "
-#~ "karakters na vore kom. (Bv 'n 'p' mag dalk '6' wees)"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Eerste DNS bediener"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Tweede DNS bediener"
-
-#~ msgid "loopback"
-#~ msgstr "teruglus"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Watter herlaaistelsel(s) verlang u?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Outoinstallasieskyf"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Soekj vir 'n modem?"
-
-#~ msgid "Configure local network"
-#~ msgstr "Stel netwerk op"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "Plaaslike netwerk is alreeds opgestel: Wil u?"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Konfigureer tydsone"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(kan data korrupteer)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Aansit van NumLock met herlaai"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Bevestig wagwoord"
-
-#~ msgid "default"
-#~ msgstr "verstek"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Waarvoor word u stelsel gebruik?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Kies die grootte van die installasie"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Gebruik diskdrake"
-
-#
-#~ msgid "Customized"
-#~ msgstr "Gespesialiseerde"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "Is u 'n kundige? U sal sal toegelaat word om kragtige, maar\n"
-#~ "gevaarlike keuses uit te oefen\n"
-#~ "\n"
-#~ "U sal vrae gevra word soos: \"Gebruik skaduwagwoorde?\"\n"
-#~ "Is u reg vir sulke vrae?"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Gebruik skadulęer"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Gebruik MD5 wagwoorde"
-
-#~ msgid "Search"
-#~ msgstr "Soek"
-
-#~ msgid "Package"
-#~ msgstr "Pakket"
-
-#~ msgid "Tree"
-#~ msgstr "Boom"
-
-#~ msgid "Sort by"
-#~ msgstr "Gesorteer volgens"
-
-#~ msgid "Category"
-#~ msgstr "Kategorie"
-
-#~ msgid "Installed packages"
-#~ msgstr "Installeerde pakkette"
-
-#~ msgid "Available packages"
-#~ msgstr "Beskikbare pakkette"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Wys net eindnodes"
-
-#~ msgid "Expand all"
-#~ msgstr "Maak boom oop"
-
-#~ msgid "Collapse all"
-#~ msgstr "Maak boom toe"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Voeg pakketareas by"
-
-#~ msgid "Update location"
-#~ msgstr "Dateer ligging op"
-
-#~ msgid "Find Package"
-#~ msgstr "Soek pakket"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Soek pakket met lęer"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Skakel tussen installeerde en beskikbare"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Afhanklikhede word getoets"
-
-#
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Die volgende pakkette gaan verwyder word"
-
-#~ msgid "Regexp"
-#~ msgstr "Regex"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Watter pakket soek vir"
-
-#~ msgid "No match"
-#~ msgstr "Geen treffer"
-
-#~ msgid "No more match"
-#~ msgstr "Niks meer treffers nie"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake is in lae-geheue opstelling.\n"
-#~ "Ek gaan rpmdrake herlaai om soektogte toe te laat."
-
-#
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Watter lęer verlang u?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Wat soek vir?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Gee 'n (engelse) naam (bv. 'extra')"
-
-#~ msgid "Directory"
-#~ msgstr "Lęergids"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Geen cdrom beskikbaar nie (niks in /mnt/cdrom nie)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL van die lęergids met die RPM's"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Vir FTP en HTTP, moet die pad vir die hdlist gegee word\n"
-#~ "Dit moet relatief tot bg. URL wees."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Voorsien asb. die volgende inligting"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s is lareeds in gebruik"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Hier is fout, probeer van die parameters verander"
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Die RPM's se basis word opgedateer"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 bediener: %s"
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Inskrywing %s gaan verwyder word"
+#~ msgid "Show all"
+#~ msgstr "Vertoon almal"
-#~ msgid "Finding leaves"
-#~ msgstr "Eindnodes word gesoek"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window konfigurasie word opgestel"
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Soek van eindnodes neem 'n tydjie"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Ek het 'n ISDN-kaart gevind\n"
-
-#~ msgid "Other countries"
-#~ msgstr "Ander lande"
-
-#
-#~ msgid "In which country are you located ?"
-#~ msgstr "In watter land is u?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Alcatel modem"
-
-#~ msgid "ECI modem"
-#~ msgstr "ECI modem"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr "Indien u ADSL-modem 'n Alcatel is, kies Alcatel, andersins ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "moenie pppoe gebruik nie"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (belangrik)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (baie oulik)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (oulik)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-
-#~ msgid "Czech"
-#~ msgstr "Tseggies"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slovaaks"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "Kon nie ipchains RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "Kon nie dhcp RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "Kon nie linuxconf RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "Kon nie bind RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "Kon nie caching-nameserver RPM m.b.v. urpmi installeer nie. "
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Herkonfigureer plaaslike netwerk"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr "U rekenaar is opgestel om sy internet konneksie te deel.\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "Internetkonneksiedeling is ontsper.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Konnekteer aan die internet met gewone modem"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Konnekteer aan die internet met ISDN"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Konnekteer aan die internet met DSL (of ADSL)"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Konnekteer aan die internet met kabel"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Tyd, in sekondes, van onaktiwiteit voor diskonneksie.\n"
-#~ "Los oop om dié funksie te sper."
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Duitsland (1TR6)"
-
-#~ msgid "What do you wish to do?"
+#~ msgid "What do you want to do?"
#~ msgstr "Wat wil u doen?"
-#~ msgid "Install/Rescue"
-#~ msgstr "Installasie/Redding"
+#~ msgid "Change Monitor"
+#~ msgstr "Verander monitor"
-#~ msgid "Rescue"
-#~ msgstr "Redding"
+#~ msgid "Change Graphics card"
+#~ msgstr "Verander videokaart"
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Watter partisietipe verlang u?"
+#~ msgid "Change Server options"
+#~ msgstr "Verander bedienerinstellings"
-#, fuzzy
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Selekteer:\n"
-#~ "\n"
-#~ " - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die "
-#~ "primęre\n"
-#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
-#~ "\n"
-#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-#~ "installasie wil\n"
-#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
+#~ msgid "Change Resolution"
+#~ msgstr "Verander resolusie"
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In "
-#~ "other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, "
-#~ "partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
-#~ "\n"
-#~ "- Ctrl-c to create a new partition (when an empty partition is "
-#~ "selected)\n"
-#~ "\n"
-#~ "- Ctrl-d to delete a partition\n"
-#~ "\n"
-#~ "- Ctrl-m to set the mount point\n"
-#~ msgstr ""
-#~ "U kan nou kies watter partisie(s) gebruik kan word om Mandrake Linux\n"
-#~ "op te installeer indien hulle reeds bestaan (geskep uit 'n vorige "
-#~ "installasie,\n"
-#~ "of met 'n ander partisieprogram). In ander gevalle moet die partisies nog "
-#~ "geskep\n"
-#~ "word. Hierdie operasie bestan uit die logiese verdeling van die hardeskyf "
-#~ "in\n"
-#~ "aparte bruikbare areas\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u nuwe partisies moet skep, gebruik \"Outo-allokasie\" om "
-#~ "outomaties\n"
-#~ "partisies vir Linux te skep. U kan die skyf vir partisionering selekteer "
-#~ "deur\n"
-#~ "op \"hda\" te kliek vir die eerste IDE hardeskyf, hdb vir die tweede of "
-#~ "\"sda\"\n"
-#~ "vir die eerste SCSI skyf ens.\n"
-#~ "\n"
-#~ "\n"
-#~ "Twee algemene partisies is die \"root\" partisie (/), wat die wortel is\n"
-#~ "van die lęergidsstelsel, en /boot, wat die nodige lęers bevat om die\n"
-#~ "bedryfstelsel aan die gang te kry wanneer die rekenaar aangesit word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Omdat die gevolge van hierdie proses onomkeerbaar is, kan partisionering "
-#~ "baie\n"
-#~ "intimiderend en stresvol vir die onervare gebruiker wees. DiskDrake maak "
-#~ "dié\n"
-#~ "proses heelwat makliker. Lees die dokumentasie en neem u tyd voor u "
-#~ "voortgaan.\n"
-#~ "\n"
-#~ "\n"
-#~ "U kan enige opsie gebruik deur die sleutelbord te gebruik. Navigeer deur "
-#~ "diepartisies met\n"
-#~ "Tab en die pyltjies. Wanneer 'n partisie gekies is, gebruik:\n"
-#~ "\n"
-#~ "- Ctrl-c om 'n partisie te skep (wanneer 'n leë partisie gekies is)\n"
-#~ "\n"
-#~ "- Ctrl-d om 'n partisie uit te vee\n"
-#~ "\n"
-#~ "- Ctrl-m om 'n partisie te heg\n"
+#~ msgid "Show information"
+#~ msgstr "Vertoon inligting"
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "Enige partisies wat nuut geskep is, moet eers formateer word voor "
-#~ "gebruik.\n"
-#~ "(Formateering beteken die skep van 'n lOerstelsel). U kan nou kies om "
-#~ "ook\n"
-#~ "bestaande partisies te herformateer en die data daarop te vernietig.\n"
-#~ "NOTA: Dit is nie nodig om alle bestaande partisies te herformateer nie,\n"
-#~ "veral indien daar data op is wat u wil hou. 'n Tipiese voorbeeld is /home."
-
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Die gekose pakette gaan nou installeer word. Hierdie proses\n"
-#~ "sal 'n paar minute neem. Indien u 'n opgradering gekies, kan dit\n"
-#~ "nog langer neem voordat die opgradering begin."
-
-#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Indien DrakX nie u muis kon vind nie, of as u wil sien\n"
-#~ "wat gedoen is, sal u moet die bg. lys van muistoestelle gepresenteer\n"
-#~ "word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u met DrakX saamstem, spring na die afdeling wat u\n"
-#~ "verlang deur op die kierkaart links te kliek. Andersins kies\n"
-#~ "'n muistoetsel in die kieskaart wat u dink die beste klop met die\n"
-#~ "muis wat u het.\n"
-#~ "\n"
-#~ "In geval van 'n seriaalmuis, moet u ook vir DrakX die seriaalpoort\n"
-#~ "gee."
-
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear "
-#~ "then.\n"
-#~ "\n"
-#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you install a Mandrake Linux system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "Hierdie afdeling is vir die konfigurasie van 'n lokaalareanetwerk\n"
-#~ "of 'n modem.\n"
-#~ "\n"
-#~ "Kies \"LAN\" en DrakX sal probeer om 'n Ethernetkaart in u rekenaar\n"
-#~ "te vind. PCI-kaarte sal heelwaarskynlik outomaties gevind en\n"
-#~ "inisialiseer word. Indien u 'n ISA-kaart het sal daar 'n kieslys\n"
-#~ "vertoon word waaruit u dan u kaart moet selekteer.\n"
-#~ "\n"
-#~ "\n"
-#~ "indien u Mandrake Linux installeer op 'n stelsel wat deel is van 'n\n"
-#~ "bestaande netwerk, sal due netwerk administrateur u alreeds met die\n"
-#~ "nodige inligting (IP adres, netmasker en rekenaarnaam) voorsien het.\n"
-#~ "Indien u 'n privaat netwerk opstel (sso by die huis), dan moet u die\n"
-#~ "adresse kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kies \"Uitbel met Modem\" en die internetkonneksie vir 'n modem\n"
-#~ "sal opgestel word. DrakX sal u modem probeer bepaal. Indien dié faal\n"
-#~ "sal u die modem en korrekte seriaalpoort moet selekteer."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "GNU/Linux kan verskeie drukkers gebruik. Elkeen van hierdie tipes\n"
-#~ "verlang 'n ander opstelling. Let asb. daarop dat die verstek drukkernaam "
-#~ "'lp' is.\n"
-#~ "U moet so 'n drukker skep. U kan egter addisionele name bysit deur dit "
-#~ "met die '|' karakterte skei.\n"
-#~ "Derhalwe kan u dus die drukker 'n meer betekenisvolle naam ook toeken.\n"
-#~ "Die drukker met 'lp' in die naam sal die verstek drukker wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u drukker direk aan die rekenaar gekoppel is, selekteer\n"
-#~ "\"Lokale Drukker\". U moet dan die korrekte poort uitwys\n"
-#~ "en die gepaslike filter selekteer.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u 'n drukker om 'n ander Unix-rekenaar wil gebruik, kies\n"
-#~ "\"Eksterne lpd\". In hierdie geval moet u die naam van die drukkertou\n"
-#~ "op die ander rekenaar ken.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u toegang tot 'n SMB drukker (op 'n Windows-rekenaar) verlang,\n"
-#~ "moet u die SMB/NETBIOS naam (nie TCP/IP-naam nie) ken en moontlik ook "
-#~ "die\n"
-#~ "IP-adres. Daarby moet u ook 'n gebruikerskode, werkgroep en wagwoord en "
-#~ "die\n"
-#~ "drukkernaam voorsien. Dieselfde geld vir 'n Netware-drukker, behalwe dat "
-#~ "u\n"
-#~ "die werkgroep hoef te voorsien nie."
-
-# ../help.pm_.c:240 ../help.pm_.c:481 msgid ""
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "Dit word sterk aanbeveel dat u \"Ja\" antwoord. Indien u Windows sou\n"
-#~ "herinstalleer, sal dit die herlaaisektor oorskryf. Indien u die die "
-#~ "herlaaiskyf\n"
-#~ "gemaak het nie, sal u nie weer in GNU/Linux kan inkom nie."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Draai u wiel!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Vergeet van die veranderinge?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Wat is u muistipe?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "OUtomatiese resolusies"
-
-#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
-#~ msgstr ""
-#~ "Ek gaan nou probeer m die beskikbare resolusies te kry.\n"
-#~ "Die skerm sal 'n paar maal flits...\n"
-#~ "U kan die skerm afsit indien u wil, ek sal biep wanneer ek klaar is"
-
-#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
-#~ msgstr ""
-#~ "Ek kan probeer om al die beskikbare resolusies te kry (bv. 800x600).\n"
-#~ "Soms kan die rekenaar ophang.\n"
-#~ "Wil u probeer?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Geen geldige modes was gevind nie\n"
-#~ "Probeer 'n ander videokaart of monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Outomatiese resolusie soektog"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "DHCP-kliënt"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB-muis"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB-muis (2 knoppe)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB-muis (3+ knoppe)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB-muis"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB-muis (2 knoppe)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB-muis (3+ knoppe)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
+#~ msgid "Test again"
+#~ msgstr "Toets weer"
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
+#~ msgid "Setting security level"
+#~ msgstr "Sekuriteitsvlak word gestel."
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Busmuis"
+#~ msgid "Graphics card"
+#~ msgstr "Videokaart"
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft busmuis"
+#~ msgid "Select a graphics card"
+#~ msgstr "Selekteer 'n videokaart"
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech busmuis"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Muis (3 knoppe of meer)"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standaard VGA, 640x480 teen 60 Hz"
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A of beter (seriaal)"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 teen 56 Hz"
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (seriaal)"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (seriaal)"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 102x768 teen 87 Hz interverweef, 800x600 teen 56 Hz "
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (seriaal)"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Verlengde Super VGA, 800x600 teen 60 Hz, 640x480 teen 72 Hz"
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Generiese Muis (seriaal)"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Nie-interverweefde SVGA, 1024x768 teen 60 Hz, 800x600 teen 72 Hz"
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft aanpasbaar (seriaal)"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Generiese 3-knopmuis (seriaal)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (seriaal)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Ek moet u netwerkkaart konfigureer om aan die internet te konnekteer."
-
-#~ msgid "nfs mount failed"
-#~ msgstr "NFS heg het gefaal"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-#~ msgid "Socket"
-#~ msgstr "Sok"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-#~ msgid "Cryptographic"
-#~ msgstr "Kriptografie"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
-#~ msgstr ""
-#~ "DrakX sal konfigurasielęers maak vir beide XFree 3.3 en XFree 4.0.\n"
-#~ "By verstek sal die 4.0 bediener gebruik word indien u videokaart "
-#~ "ondersteun. word\n"
-#~ "\n"
-#~ "Wil u XFree 3.3 behou?"
-
-#~ msgid "Configure LAN"
-#~ msgstr "Stel LAN op"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "Moenie netwerk opstel nie"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Wil u die netwerk vir u stelsel opstel?"
-
-#~ msgid "Show less"
-#~ msgstr "Vertoon minder"
-
-#~ msgid "Show more"
-#~ msgstr "Vertoon meer"
-
-#, fuzzy
-#~ msgid "tie"
-#~ msgstr "koppel"
-
-#~ msgid "brunette"
-#~ msgstr "brunette"
-
-#~ msgid "girl"
-#~ msgstr "meisie"
-
-#~ msgid "woman-blond"
-#~ msgstr "blondine"
-
-#, fuzzy
-#~ msgid "automagic"
-#~ msgstr "automagic"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Die totale grootte vir die gekose groepe is naastenby %d MB.\n"
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Wat is u sleutelborduitleg?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Soek PCMCIA-kaarte?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Soek vir %s-toestelle?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Wil u die opbelkonneksie (modem) konfigureer?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Soek vir PCI-toestelle?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "Wortelpartisisie word gesoek."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr ""
-#~ "%s: Hierdie is nie 'n wortellęerstelsel nie, kies asb. 'n ander een."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Watter partisie moet u wortelpartisie wees?"
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "U het geen Windows-partisies nie!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "U het nie genoeg spasie vir Lnx4win nie."
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#, fuzzy
#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds "
-#~ "for default boot.\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Welkom by %s die bedryfstelselkeuseprogram!\n"
-#~ "\n"
-#~ "Om die moontlikhede te vertoon, druk <TAB>.\n"
-#~ "\n"
-#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-#~ "%ds en die verstek bedryfstelsel sal laai.\n"
+#~ "Indien u verkies om minder as hierdie grootte te installeer, kies dan 'n\n"
+#~ "persentasie van pakkette wat u wil installeer.\n"
#~ "\n"
+#~ "'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
+#~ "'n persentasie van 100%% sal alles gekose pakkette installeer."
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#, fuzzy
#~ msgid ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Welkom by %s die bedryfstelselkeuseprogram!\n"
-#~ "\n"
-#~ "Om die moontlikhede te vertoon, druk <TAB>.\n"
-#~ "\n"
-#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-#~ "%ds en die verstek bedryfstelsel sal laai.\n"
+#~ "U het net spasie op u hardeskyf vir %d%% van hierdie pakkette.\n"
#~ "\n"
+#~ "Indien u minder wil installeer, kies die persentasie wat u verlang.\n"
+#~ "'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
+#~ "'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-#~ msgid "SILO main options"
-#~ msgstr "SILO hoofopsies"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "U sal met meer akkuraatheid in die volgende stap kan kies."
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Hier is die huidige SILO-inskrywings\n"
-#~ "U kan byvoeg or verwyder soos nodig."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Hierdie etiket is alreeds in gebruik"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "SILO installasie het gefaal a.g.v. hierdie fout: "
-
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "DrakX will probeer om eers te kyk vir een of meer bekende PCI\n"
-#~ "SCSI kaarte. Indien iets gevind word, en die drywers daarvoor\n"
-#~ "bekend is, sal dit outomaties bygevoeg word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u 'n ISA SCSI kaart het, of 'n onbekende PCI SCSI kaart, of\n"
-#~ "geen SCSI kaart nie, sa; u gevra word of daar enige SCSI kaarte is.\n"
-#~ "Indien daar geen is nie, antwoord \"Nee\". Indien daar wel is, antwoord\n"
-#~ "\"Ja\" en 'n lys van kaarte sal gegee word waaruit u moet kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Na seleksie van die drywer, sal DrakX of vra vir opsies. Probeer eers\n"
-#~ "dat die drywer die hardeware ondervra; dit werk gewoonlik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien nie, moenie die dokumentasie van u hardeware vergeet nie; ook nie\n"
-#~ "enige inligting van Windows (indien u dit gennstalleer het). Hierdie is\n"
-#~ "opsies wat u die drywer moet verskaf."
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Persentasie pakkette om te installeer"
-#~ msgid "Shutting down"
-#~ msgstr "Stelselafsluiting"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Gebruik sekuriteitsvlak"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index bad02e711..8f5d7ac41 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -1,39 +1,68 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2000 Free Software Foundation, Inc.
-# Djaghlouli Kamel <djkamel@chez.com>, 2000.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Amr Fathy <amr10@menanet.net>, 2001.
# Mohammed Gamal <f2c2001@yahoo.com>, 2002
-# Boujaj Mostapha Ibrahim <mboujaj@yahoo.de>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-08 02:00GMT\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
-"Language-Team: ARABIC <ar@li.org>\n"
+"Language-Team: Arabic \n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "اعداد كل الرؤوس بشكل مستقل"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 كيلوبايت"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "استخدام امتداد Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 كيلوبايت"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 ميغابايت أو أكثر"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "إختر خادم X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "خادم X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "إعداد متعدد الرؤوس"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -41,41 +70,44 @@ msgstr ""
"نظامك يدعم الإعداد متعدد الرؤوس.\n"
"ماذا تريد أن تفعل؟"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "بطاقة الشاشة"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "اختر بطاقة شاشة"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "ؼؚداد XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "إختر خادم X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "أي اعداد لـXFree تريد؟"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "خادم X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "اعداد كل الرؤوس بشكل مستقل"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "إختر مشغل X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "استخدام امتداد Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "مشغل X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "أي اعداد لـXFree تريد؟"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +117,17 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشل أفضل في الوضع "
"ثنائي الأبعاد."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
-"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +139,58 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشكل أفضل في وضعية "
"الرسوم ثنائية الأبعاد."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
+"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (مشغل عرض التثبيت)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "ؼؚداد XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "إختر خيارات الخادم"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"هل تريد حفظ التغييرات؟\n"
+"الإعداد الحالي هو:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "ؼ؎تع شاش؊"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "الشاشة"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "مخصص"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generic"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "تعا؏ؚ"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,510 +211,325 @@ msgstr ""
"أكبر من مقدرة شاشتك لأنك بهذا قد تدمر شاشتك.\n"
" اذا لم تكن متأكدا يمكنك اختيار اعدادات عادية."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "نسبة الإنعاش الأفقي"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "نسبة الإنعاش الرأسي"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "الشاشة غير معدّة"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "لم يتم اعداد بطاقة الشاشة حتى الآن"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "ام يتم اعداد دقة العرض حتى الآن"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "هل تريد تجربة الإعداد؟"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "اختبار الإعداد"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 لون (8 بت)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"حاول تغيير بعض المعاملات"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ألف لون (15 بت)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "ظهر خطأ:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ألف لون (16 بت)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "المغادرة في %d ثوان"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 مليون لون (24 بت)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "هل هذا هو الضبط الصحيح؟"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 بليون لون (32 بت)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "ظهر خطأ, حاول تغيير بعض الماملات"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "دقة العرض"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "دقة العرض"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "اختر دقة العرض و عمق الألوام"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "بطاقة الشاشة: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "خادم XFree86 :%s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "أك؍ع"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "الغاء"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "موافق"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "وضعية الخبير"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "اظهار الكل"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "هل تريد تجربة الإعداد؟"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "دقة العرض"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "اختبار الإعداد"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "لوحة المفاتيح: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "نوع الفأرة: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "جهاز الفأرة: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "الشاشة: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "تزامن الشاشة الأفقي: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "انعاش الشاشة الرأسي: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "بطاقة الشاشة: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "معرف بطاقة الشاشة: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "ذاكرة بطاقة الشاشة: %s كيلوبايت\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "عمق الألوان: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "دقة العرض: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "خادم XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "مشغل XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "جاري تجهيز تهيئة X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "ماذا تريد أن تفعل؟"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "تغيير الشاشة"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "تغيير بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "تغيير خيارات الخادم"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "تغيير دقة العرض"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "عرض المعلومات"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
+msgstr "واجهة رسومية عند بدء التشغيل"
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "اختبر مرة أخرى"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "؎عو؏"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"هل تريد حفظ التغييرات؟\n"
-"الإعداد الحالي هو:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X عند بدء التشغيل"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 لون )8 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ألف لون )15 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ألف لون )16 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 مليون لون )24 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 بليون لون )32 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 كيلوبايت"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 كيلوبايت"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 ميغابايت أو أكثر"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 at 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 at 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 at 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor that can do 1600x1200 at 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor that can do 1600x1200 at 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "القطاع اول من تجزئة الإقلاع"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "القطاع الأول من القرص (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "تثبيت SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "أين تريد تثبيت محمّل الإقلاع؟"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "تثبيت LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO مع قائمة نصية"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO مع قائمة رسومية"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "الإقلاع من DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "خيارات محمّل الإقلاع الرئيسية"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "محمّل الإقلاع المُستخدم"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "تثبيت محمل الإقلاع"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "جهاز الإقلاع"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA )لا يعمل مع أنظمة الـBIOS القديمة("
+msgstr "LBA (لا يعمل مع أنظمة الـBIOS القديمة)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "مدمج"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "مدمج"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "وضعية الفيدية"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "توقيت ما قبل اقلاع الصورة الافتراضية"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
-msgstr "???§?????????Š ?§???³?????????¹"
+msgstr "كلمة المرور"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
-msgstr "كلمة المرور )ثانيةً("
+msgstr "كلمة المرور (ثانية)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "تشديد خيارات سطر الأوامر"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "تشديد"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "قم بتنظيف /tmp عند كل إقلاع"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "حجم الذاكرة الدقيق عند الحاجة )تم ايجاد %d ميغابايت("
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "تمكين التشكيلات المتعددة"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "اكتب حجم الذاكرة بالميغابايت"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قائدة من دون كلمة مرور"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "رجاء جاول مرة أخرى"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "رسالة Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware Delay"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "الوقت الأقصى لإقلاع النواة"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "تمكين الإقلاع من القرص المدمج؟"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "تمكين اقلاع OF؟"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "نظام التشغيل الافتراضي؟"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -679,83 +538,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-"ها هنا المخلات المختلفة.\n"
+"ها هنا المدخلات المختلفة.\n"
"يمكنك اضافة مدخلات أخرى أو تغيير الموجودين."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
-msgstr "ؼ؜اف؊"
+msgstr "ا؜اف؊"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "انتهى"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "تعديل"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل الذي تريد اضافته؟"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "لينكس"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "نظام آخر (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "نظام آخر (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "نظام آخر (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "ؾوع؊"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "الجذر"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "الحاق"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "للقراءة و الكتابة"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "الجدول"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
-msgstr "Unsafe"
+msgstr "غير آمن"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "عنوان"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "الإفتراضي"
@@ -787,53 +646,75 @@ msgstr "يجب عليك تحديد تقسيم جذر"
msgid "This label is already used"
msgstr "هذه العلامة مستخدمة مسبقا"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "تم ايجاد %s %s واجهات"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "هل عندك واحدة أخرى؟"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "هل لديك أي واجهات %s؟"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "لا"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "نعم"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
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:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "جاري تثبيت مشغل %s للبطاقة %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
-msgstr ")الوحدة %s("
+msgstr "(الوحدة %s)"
+
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
+"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
+"مثلا, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "خيارات الوحدة:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "أي مشغل %s يجب أن استخدمه؟"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -851,37 +732,15 @@ msgstr ""
"لكن\n"
"لا يجب أن يتسبب ذلك في أي مشاكل."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "تحقق آلي"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "حدد الخيارات"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
-"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
-"مثلا, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "خيارات الوحدة:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -890,49 +749,54 @@ msgstr ""
"فشل تحميل الوحدة %s.\n"
"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "الوصول الى برامج X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "اسمح بـ\"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "الوصول الى ملفات الإدارة"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(تم اضافة %s مسبقا)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "كلمة المرور هذه بسيطة جدا"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "رجاءً قم بإعطاء اسم مستخدم"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "اسم المستخدم يجب أن يحتوي فقط على الحروف الصغيرة, الأرقام, `-' و `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "اسم المستخدم مُضاف مسبقا"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "اضف مستخدم"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -941,32 +805,32 @@ msgstr ""
"أدخل مستخدم\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "وافق على المستخدم"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "اسم المستخدم"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "الغلاف"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "أيقونة"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "دخول آلي"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -974,87 +838,67 @@ msgstr ""
"يمكنني اعداد جهازك لتسجيل الدخول آليل لمستخدم ما.\n"
"هل تريد استخدام هذه الميزة؟"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "اختر المستخدم الافتراضي:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "اختر مدير النوافذ الذي سيتم تشغيله:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "رجاء اختر لغة الاستخدام."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "الكل"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "اسمح لكل المستخدمين"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "مخصص"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "لا مشاركة"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "يمكنك التصدير باستخدام NFS أو Samba. أي منهما تريد"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s مفقودة"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "إلغاء"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "شغّل userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1062,89 +906,90 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "مرحبا بالمخترقين"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "فقير"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "القياسي"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "مرتفع"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "مرتفع أكثر"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "مرتفع جدا"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
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:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "اختر مستوى الأمن"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "مستوى الأمن"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "إستخدم libsafe للملقمات"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1161,52 +1006,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
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:931
+#: ../../bootloader.pm_.c:915
#, 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:934
+#: ../../bootloader.pm_.c:918
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:937
+#: ../../bootloader.pm_.c:921
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:940
+#: ../../bootloader.pm_.c:924
#, 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:944
+#: ../../bootloader.pm_.c:928
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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "سطح المكتب"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزئة %s\n"
@@ -1219,17 +1064,21 @@ msgstr "لا توجد مساعدة لهذا حتى الآن.\n"
msgid "Boot Style Configuration"
msgstr "اعداد أسلوب الإقلاع"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_ملف"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/ملف/_خروج"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>ŘŽ"
+msgstr "<تحكم>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1262,14 +1111,14 @@ msgstr "و؜ؚ Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"أنت تستخدم %s كمدير اقلاع حاليا.\n"
"اضغط على تهيئة لتشغيل معالج الإعداد"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "ؼؚداد"
@@ -1279,7 +1128,7 @@ msgid "System mode"
msgstr "وضع النظام"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "شغّل X-Window عند بدء التشغيل"
#: ../../bootlook.pm_.c:148
@@ -1290,14 +1139,16 @@ msgstr "لا, لا أريد دخولا أليا"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتب("
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "موافق"
@@ -1312,11 +1163,11 @@ msgstr "غيغابايت"
#: ../../common.pm_.c:94
msgid "KB"
-msgstr "كيلوبايا"
+msgstr "كيلوبايت"
#: ../../common.pm_.c:94
msgid "MB"
-msgstr "م.ب"
+msgstr "ميغابايت"
#: ../../common.pm_.c:102
msgid "TB"
@@ -1345,7 +1196,7 @@ msgstr "لا يمكنني غمل لقطات للشاشة قبل التجزئة"
msgid "Screenshots will be available after install in %s"
msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "فرنسا"
@@ -1353,7 +1204,7 @@ msgstr "فرنسا"
msgid "Costa Rica"
msgstr "كوستاريكا"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "بلجيكا"
@@ -1377,11 +1228,12 @@ msgstr "النرويج"
msgid "Sweden"
msgstr "السويد"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "هولندا"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "إيطاليا"
@@ -1389,7 +1241,7 @@ msgstr "إيطاليا"
msgid "Austria"
msgstr "النمسا"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "الولايات المتحدة"
@@ -1397,8 +1249,8 @@ msgstr "الولايات المتحدة"
msgid "Please make a backup of your data first"
msgstr "رجاء قم بعمل نسخة احتياطية من بياناتك أولا"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "اقرأ جيدا!"
@@ -1411,11 +1263,12 @@ msgstr ""
"اذا كنت تريد استخدام aboot, فلا تنسى أن تترك مساحة فارغة في\n"
"بداية القرص (2048 قطاعات كافية)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "؎ءأ"
@@ -1423,11 +1276,11 @@ msgstr "؎ءأ"
msgid "Wizard"
msgstr "المعالج"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "ا؎تع حد؍ا"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1435,177 +1288,182 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"لديك تجزئة FAT واحدة كبيرة\n"
-")يستخدم عامة عن طريق Microsoft DOS/Windows(.\n"
+"(يستخدم عامة عن طريق Microsoft DOS/Windows).\n"
"اقترح أن تغير حجم هذه التجزئة\n"
-")اضغط عليها ثم اختر \"تغيير الحجم\"("
+"(اضغط عليها ثم اختر \"تغيير الحجم\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "فضلا اضغط على تجزئة"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "تفاصيل"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "التبديل"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "فاعغ"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "أخرى"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "أنواع أنظمة الملفات:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "عمل تجزئة"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "النوع"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "استخدم ``%s'' بدلا من ذلك"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "إلغاء"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "استخدم ``ازالة التجهيز'' أولا"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "بعد تغيير نوع التجزئة %s, فإنك ستسخر كل البيانات على التجزئة"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "ؼ؎تع ت؏ز،؊"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "ؼ؎تع شاش؊"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "؎عو؏"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "النتقال الى وضعية الخبير"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "الانتقال الى الوضع العادي"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "تعا؏ؚ"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "هل تريد الاكمال على أي حال؟"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "الخروج بدون الحفظ"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "هل تريد الخروج بدون كتابة جدول التقسيم؟"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "هل تريد حفظ تعديلات /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "تحديد آلي"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "أمسح الكل"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "أك؍ع"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "معلومات القرص الصلب"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "كل التجزئات الرئيسية مستخدمة"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "لا يمكنني اضافة أي تجزئة أخرى"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "لكي تمتلك تجزئات أكثر, يرجى الغاء تجزئة كي تتمكن من عمل تجزئة ممتدة"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "حفظ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "استعادة جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "إنقاذ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "إعادة تحميل جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "التجهيز الآلي للوسائط القابلة للإزالة"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "اختر ملف"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1613,11 +1471,11 @@ msgstr ""
"جدول التقسيم المحفوظ ليس بنفس الحجم\n"
"لا زلت تريد الإكمال؟"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "تحذير"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1625,122 +1483,129 @@ msgstr ""
"أدخل قرصا مرنا في السواقة\n"
"كل البيانات على القرص ستمحى"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "جاري محاولة انقاذ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "معلومات مفصّلة"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "نقطة التجهيز"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "خيارات"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "تغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "نقل"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "تنسيق"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "جهز"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "اضافة الى RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "اضافة الى LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "ازل التجهيز"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "ازالة من RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "ازالة من LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "تعديل RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "استخدام لـloopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "اعمل تجزئة جديدة"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "قطاع البداية: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "الحجم باليغابايت: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "نوع نظام المفات: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "نقطة التجهيز: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "التفضيل: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "هل تريد ازالة ملف loopback؟"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "غير نوع التجزئة"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "أي نظام ملفات تريد؟"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "جاري التغيير من ext2 الى ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "أين تريد تجهيز ملف loopback %s؟"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "أين تريد بجهيز الجهاز%s؟"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1748,125 +1613,130 @@ msgstr ""
"لم يمكن ازالة تعيين نقطة التجهيز نظرا لأن هذه التجزئة مستخدمة لـloop back.\n"
"قم بإزالة الـloopback أولا"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "جاري حساب روابط نظام ملفات FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "جاري تغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "هذا التقسيم غير قابل لتغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "كل البيانات على هذه التجزئة يجب حفظها احتياطيا"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "بعد تغيير حجم التجزئة %s, فإن كل البيانات على هذه التجزئة ستفقد"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "اختر الحجم الجديد"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "الحجم الجديد بالميغابايت: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "أي قرص تريد نقله؟"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "القطاع"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "أي قطاع تريد نقله؟"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
-msgstr "نقل"
+msgstr "جاري النقل"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "جاري نقل التجزئة..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "اختر RAID موجود للاضافة"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "جديد"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "اختر LVM l,جود للاضافة"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "اسم LVM؟"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "هذه التجزئة لا يمكن استخدامها لـloopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "اسم ملف Loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "اعط اسم ملف"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "هذا الملف مستخدم من loopback أخرى, اختر ملفا آخر"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "الملف موجود مسبقا, هل تريد استخدامه؟"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "خيارات التجهيز"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "متنوعة"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "الجهاز"
+msgstr "وحد؊"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "المستوى"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "حجم chunk"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "كن حذرا: هذه العملية خطيرة"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "أي نوع من التجزئة؟"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1874,7 +1744,7 @@ msgid ""
"need /boot"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1882,169 +1752,169 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "جدول اتتقسيم للقرص %s سيتم كتابته الى القرص!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "ستحتاج الى اعادة التشغيل قبل أن يتم تفعيل التعديلات"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "بعد تهيئة التقسيم %s, فإن كل البيانات الموجودة على التجزئة ستفقد"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "جاري التهيئة"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "جاري تهيئة ملف loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "جاري تهيئة التجزئة %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "خبء الملفات"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "انقل الملفات الى تجزئة جديدة"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"الدليل %s يحتوي مسبقا على بعض البيانات\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "جاري نقل الملفات الى التجزئة الجديدة"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "جاري نسخ %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "جاري ازالة %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "التجزئة %s معروفة الآن بالإسم %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "الجهاز: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "حرف سواقة DOS: %s (مجرد تخمين)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "النوع: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "الاسم: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "البداية: قطاع %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "الحجم: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s قطاع"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "الاسطوانة %d الى %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "مجهز\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "غير مجهز\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "محمل\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "المستوى %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "حجم Chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "أقراص RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "اسم ملف Loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2052,7 +1922,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2060,62 +1930,62 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "الحجم: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "الهندسة: %s اسطوانة, %s رأس, %s قطاع\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "معلومات: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "أقراص LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "نوع جدول التقسيم: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "على bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "مفتاح تشفير نظام الملفات"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "اختر مفتاح تشفير نظام الملفات"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "مفتاح التشفير هذا بسيط جدا (يجب أن يكون %d حرفا على الأقل)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "مفاتيح التشفير غير متطابقة"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "مفاتح التشفير"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "مفاتح التشفير (مرة أخرى)"
@@ -2124,35 +1994,65 @@ msgid "Change type"
msgstr "غيّر النوع"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "فضلا اضعط على وسيط"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "التحقق"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "إنترنت"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "اسم المستخدم"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "اسم المستخدم"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "ابحث في أجهزة الخادم"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s تجهيز %s قد فشل"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "لا أعرف كيف أجهز %s في النوع %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2163,68 +2063,319 @@ msgstr "بسيط"
#: ../../fsedit.pm_.c:25
msgid "with /usr"
-msgstr ""
+msgstr "مع /usr"
#: ../../fsedit.pm_.c:30
msgid "server"
msgstr "خادم"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "لا توجد مساحة كافية للتحديد الآلي"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
-msgstr ""
+msgstr "لا شيئ للعمل"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
-msgstr ""
+msgstr " فتحة الخطإ %s للكتابة :%s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
+msgstr "ليس لديك أيّ فواصل ! "
+
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "تحقق آلي"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generic"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Card mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "حمل الإعدادات"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "غيّر النوع"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "؎عو؏"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_مساعدة"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_مساعدة"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/مساعدة/_حول البرنامج..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "وحد؊"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Card mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "الغاء"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "وحد؊"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "الوصف"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "التحقق"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "اختر ملف"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway device"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 buttons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "التحقق من الأقراص الصلبة"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "عرض معلومات العتاد"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "اعرض المعلومات"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "إعداد الفأرة"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "من فضلك انتظر"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d ثوان"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "تحقق آلي"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
#: ../../help.pm_.c:13
@@ -2240,7 +2391,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2256,6 +2407,33 @@ msgid ""
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default)."
msgstr ""
+"لينكس هو نظام متعدد المستخدمين, أي أن كل مستخدم سيكون له اعداداته الخاصة و "
+"ملفاته\n"
+"الخاصة, الخ. يمكنك قراءة ``دليل المستخدم'' لتفاصيل أكثر.\n"
+"و على عكس \"الجذر\", أي مدير النظام, فإن المستخدمين الذين ستضيفهم هنا لن\n"
+"يتم السماح لهم بتغيير أي شئ ما عدا ملفاتهم و إعداداتهم الخاصة. سيجب عليك\n"
+"أن تضيق مستخدماً عادياً لك. و هذا الحساب هو الذي يجب أن تدخل عليه\n"
+"للاستخدام العادي. و برغم أنه من العملي الدخول بصفة \"جذر\" يوميا إلا أن\n"
+"هذا قد يكون خطيرا جدا! فأقل غلطة قد تعني أن نظامك لن يعمل بعد ذلك مطلقا.\n"
+"أما إذا ارتكبت خطأ كبيراً كمستخدم عادي, فقد تخسر بعض البيانات, ولكن ليس "
+"النظام ككل.\n"
+"\n"
+"أولا سيجب عليك أن تكتب اسمك الحقيقي. هذا ليس الزامياً بالطبع\n"
+"بما أنه من الممكن أن تكتب ما تريد. DrakX سيأخذ أول كلمة تدخلها في الصندوق\n"
+"و سيجلبها في خانة \"اسم المستخدم\". هذا الإسم هو الذي سيستخدمه المستخدم\n"
+"للدخول الى النظام. يمكنك تغييره أيضا. بعد ذلك ستحتاج لإدخال كلمة المرور "
+"هنا.\n"
+"كلمة المرور الخاصة بالمستخدم العادي ليست مهمة مثل كلمة مرور \"الجذر\"\n"
+"من وجهة نظر أمنية, لكن هذا ليس سببا لتناسي الموضوع لأنه في هذه الحال\n"
+"فإن ملفات ستكون في خطر.\n"
+"\n"
+"إذا ضغطت على زر \"وافق على المستخدم\", فسيمكنك بعد ذلك أن تضيف بقدر ما "
+"تريد.\n"
+"مثلا يمكنك أن تضيف اسم مستخدم لكل من أصدقائك أو والدك أو أختك. عندما تنتهي\n"
+"من إضافة كل المستخدمين الذين تريدهم, اختر زر \"انتهى\".\n"
+"\n"
+"ضغط زر \"متقدم\" سيسمح لك بتغيير \"الغلاف\" أو سطر الأوامر الإفتراضي لهذا\n"
+"المستخدم (bash هو الغلاف الإفتراضي)."
#: ../../help.pm_.c:41
msgid ""
@@ -2289,6 +2467,34 @@ msgid ""
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
+"في الأعلى ستجد تقسيمات لينكس الموجودة و التي تم ايجادها على القرص الصلب "
+"الخاص بك.\n"
+"يمكنك أن تُبقي إختيارات المعالج, و هي جيدة لأغلب أنواع التثبيت.\n"
+"إذا قمت بعمل أي تغييرات فيجب عليك أن تعرف التقسيم الجذر (\"/\"). لا تختر\n"
+"تقسيمات ضغيرة جدا و إلا لن تستطيع تثبيت برامج كافية. إذا كنت تريد تخزين "
+"البيانات\n"
+"على تقسيم مستقل فستحتاج الى عمل تقسيم لـ\"/home\"\n"
+"(ممكن فقط إذا كان لديك أكثر من تقسيم للينكس).\n"
+"\n"
+"كل تقسيم مُعطى بالسكل التالي: \"الإسم\", \"السعة\".\n"
+"\n"
+"\"الإسم\" مركب بالسكل التالي: \"نوع القرص الصلب\", \"رقم القرص الصلب\",\n"
+"\"رقم التقسيم\" (مثلا, \"hda1\").\n"
+"\n"
+"\"رقم القرص الصلب\" دائما هو حرف بعد \"hd\" أو \"sd\". بالنسبة للأقراص "
+"الصلبة\n"
+"من نوع IDE فإن:\n"
+" * \"a\" تعني \"القرص الصلب الأساسي على متحكم IDE الأساسي\",\n"
+"\n"
+" * \"b\" تعني \"القرص الصلب الثانوي على متحكم IDE الأساسي\",\n"
+"\n"
+" * \"c\" تعني \"القرص الصلب الأساسي على متحكم IDE الثانوي\",\n"
+"\n"
+" * \"d\" تعني \"القرص الصلب الثانوي على متحكم IDE الثانوي\",\n"
+"\n"
+"أما بالنسبة لأقراص سكزي SCSI فالحرف \"a\" يعني \"أقل معرف SCSI\", و الحرف \"b"
+"\"\n"
+"يعني \"ثاني أقل معرف SCSI\", الخ."
#: ../../help.pm_.c:72
msgid ""
@@ -2296,6 +2502,9 @@ msgid ""
"knows if a selected package is located on another CD-ROM and will eject the\n"
"current CD and ask you to insert a different one as required."
msgstr ""
+"تثبيت Mandrake Linux موزع على العديد من الأقراص. DrakX\n"
+"يعلم إذا كانت حزمة ما في قرص آخر و سيخرج القرص\n"
+"الحالي و سيطلب منك أن تدخل قرصاً مختلفا كما هو مطلوب."
#: ../../help.pm_.c:77
msgid ""
@@ -2311,9 +2520,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2495,7 +2703,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2507,9 +2715,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2555,21 +2762,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2585,9 +2791,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2608,9 +2814,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2720,38 +2925,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2825,11 +3024,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2853,7 +3052,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2868,7 +3067,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2883,7 +3082,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2899,29 +3098,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -2943,7 +3142,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -2965,7 +3164,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -2973,7 +3172,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -2994,7 +3193,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3007,7 +3206,7 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3016,29 +3215,28 @@ msgid ""
"(MBR)\"."
msgstr ""
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3047,7 +3245,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3072,11 +3270,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3086,9 +3284,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3100,7 +3297,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3126,7 +3323,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3153,18 +3350,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3172,12 +3368,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3193,14 +3388,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3211,7 +3406,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3219,12 +3414,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3239,26 +3434,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS لا تسطيع ا ستعمال هذ ا البرنامج مع"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr ""
@@ -3283,75 +3478,78 @@ msgstr ""
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr "استمرّ بأيّة حال"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "استعمل مكانا حرا"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr ""
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr ""
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3363,63 +3561,63 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr ""
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr ""
@@ -3427,16 +3625,16 @@ msgstr ""
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr ""
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr ""
@@ -3446,12 +3644,12 @@ msgid ""
"Continue at your own risk."
msgstr ""
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr ""
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3459,12 +3657,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr ""
@@ -3474,192 +3672,158 @@ msgstr ""
msgid "Entering step `%s'\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr ""
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "قبول"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3669,17 +3833,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr ""
@@ -3723,11 +3887,11 @@ msgstr ""
msgid "Do you really want to leave the installation?"
msgstr "هل تريد فعلا مغادرة التثبيت؟"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3742,7 +3906,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -3848,284 +4012,290 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "لوحة المفاتيح"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "رجاء, اختر لوحة المفاتيح."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
-msgstr ""
+msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "ترقية"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "رجاء اختر لغة نوع الفأرة."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
-msgstr ""
+msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
-msgstr ""
+msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "اختر الحزم التي ستُثبَّت"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
-msgid "Recommended (%dMB)"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
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:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4162,157 +4332,187 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "خادم NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "بطاقة الصّوت ISA هل عندك عند"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "الفأرة"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "ءابؚ؊"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "خادم LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
-msgstr ""
+msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
+msgstr " الخادم NIS"
+
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "التحقق"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "احصل على خطوط Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "خادم NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4330,19 +4530,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
-msgstr ""
+msgstr "المدخل المرن الثّاني"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "تخطي"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4358,7 +4558,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4367,28 +4567,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
-msgstr ""
+msgstr "آسف , لا مدخل مرن متاح"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
-msgstr ""
+msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
+msgstr " إنشاء قرص الا قلا ع "
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
+msgstr " bootloader ؼؚداد "
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4396,25 +4596,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
-msgstr ""
+msgstr " aboot هل تريد أن تستخدم "
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
-msgstr ""
+msgstr "bootloader التّركيب "
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4425,25 +4625,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4454,18 +4654,23 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4474,15 +4679,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr ""
@@ -4498,531 +4703,535 @@ msgstr ""
#: ../../interactive.pm_.c:87
msgid "kdesu missing"
-msgstr ""
+msgstr "kdesu missing"
#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
msgid "consolehelper missing"
-msgstr ""
+msgstr "consolehelper missing"
#: ../../interactive.pm_.c:152
msgid "Choose a file"
msgstr "إختر ملف"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "متقدم"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
+msgstr "Basic"
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
-msgstr ""
+msgstr "اختيارك ? (default %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr ""
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
-msgstr ""
+msgstr "Button `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "هل تريد الضغط على هذا الزر؟ "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr ""
+msgstr "اختيارك ? (default `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
-msgstr ""
+msgstr "إعادة تسليم"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
-msgstr ""
+msgstr "التشيكية (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "الألمانية"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
-msgstr ""
+msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "الإسبانية"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "الفنلندية"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "الفرنسية"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "النرويجية"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "البولندية"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "الروسية"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "السويدية"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح البريطانية"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح الأمريكية"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
-msgstr ""
+msgstr "الألبانيةّ"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
-msgstr ""
+msgstr "الأرمينية (قديم)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
-msgstr ""
+msgstr "الأرمينية (آلة كاتبة)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
-msgstr ""
+msgstr "الأرمينيةّ (صوتي)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
-msgstr ""
+msgstr "الأذربيجانية (لاتيني)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "البلجيكية"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "البلغارية (صوتية)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "البلغارية (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
-msgstr ""
+msgstr "البرازيليةّ (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "البيلاروسية"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
-msgstr ""
+msgstr "السويسرية (تصميم ألماني)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
-msgstr ""
+msgstr "السويسرية (تصميم فرنسي) "
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
-msgstr ""
+msgstr "التشيكية (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
-msgstr ""
+msgstr " الألمانيةّ (no dead keys)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "الدنماركية"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
-msgstr ""
+msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
-msgstr ""
+msgstr "Dvorak (نرويجيةّ) "
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (سويدية)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "الإستونية"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
-msgstr ""
+msgstr "الجورجية (التصميم الروسي)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
-msgstr ""
+msgstr "الجورجيةّ (التصميم اللاتيني)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
-msgstr "يوناني"
+msgstr "اليونانية"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
-msgstr "المجرية (الهنغارية)"
+msgstr "المجرية الهنغارية"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "الكرواتية"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "العبرية"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
-msgstr ""
+msgstr "العبرية (صوتية)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
-msgstr ""
+msgstr "الإيرانيّة"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "الآيسلاندية"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "الإيطالية"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
-msgstr ""
+msgstr "اليابانية 106 مفاتيح"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح الكورية"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
-msgstr ""
+msgstr "الأمريكية اللاتينية"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
-msgstr ""
+msgstr "اللّيتوانيةّ AZERTY ( قديم ) "
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
-msgstr ""
+msgstr "اللّيتوانيّة AZERTY ( جديد ) "
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
-msgstr ""
+msgstr "اللّيتوانيةّ \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr ""
+msgstr " اللّيتوانيةّ \"phonetic\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "اللاتفية"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "المقدونية"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
-msgstr ""
+msgstr "الهولنديّة"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
-msgstr ""
+msgstr "البولندية (qwerty layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
-msgstr ""
+msgstr "البولندية (qwertz layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "البرتغالية"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
-msgstr ""
+msgstr "الكنديّة (كيبيك)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
-msgstr ""
+msgstr "الرّومانيّة (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
-msgstr ""
+msgstr "الرّومانيةّ (qwertz)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
-msgstr ""
+msgstr "الرّوسيةّ (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "السلوفينية"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
-msgstr ""
+msgstr "السلوفاكية (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
-msgstr ""
+msgstr "السلوفاكية (QWERTZ)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
-msgstr ""
+msgstr "الصّربيةّ (cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "التاميل"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح التّايلانديّة"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
-msgstr ""
+msgstr "لوحة مفاتيح الطّاجيكيّة"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
-msgstr ""
+msgstr "التّركيّ (traditional \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
-msgstr ""
+msgstr "التّركيّ (modern \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "الأوكرانية"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
-msgstr ""
+msgstr "( "
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr ""
+msgstr "الفيتناميّ \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
-msgstr ""
+msgstr "( يوغسلافيّ ( اللّاتينيّة "
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
-msgstr ""
+msgstr "مفتاح Alt key"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
-msgstr ""
+msgstr "مفتاح CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+msgstr "Ctrl and Alt keys simultaneously"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
-msgstr ""
+msgstr "Alt and Shift keys simultaneously"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
-msgstr ""
+msgstr "\"Menu\" key"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
-msgstr ""
+msgstr "Left \"Windows\" key"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
-msgstr ""
+msgstr "Right \"Windows\" key"
#: ../../loopback.pm_.c:32
#, c-format
msgid "Circular mounts %s\n"
-msgstr ""
+msgstr "Circular mounts %s\n"
#: ../../lvm.pm_.c:88
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "رقم التّليفون "
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "تجهيز التجزئات"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
-msgstr ""
+msgstr "Sun - Mouse"
#: ../../mouse.pm_.c:32
msgid "Logitech MouseMan+"
-msgstr ""
+msgstr "Logitech MouseMan+"
#: ../../mouse.pm_.c:33
msgid "Generic PS2 Wheel Mouse"
-msgstr ""
+msgstr "Generic PS2 Wheel Mouse"
#: ../../mouse.pm_.c:34
msgid "GlidePoint"
-msgstr ""
+msgstr "GlidePoint"
#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
msgid "Kensington Thinking Mouse"
-msgstr ""
+msgstr "Kensington Thinking Mouse"
#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
msgid "Genius NetMouse"
-msgstr ""
+msgstr "Genius NetMouse"
#: ../../mouse.pm_.c:38
msgid "Genius NetScroll"
-msgstr ""
+msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
msgid "1 button"
-msgstr ""
+msgstr "1 button"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
msgid "Generic 2 Button Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
+msgstr "Generic 2 Button Mouse"
#: ../../mouse.pm_.c:46
msgid "Wheel"
-msgstr ""
+msgstr "Wheel"
#: ../../mouse.pm_.c:49
msgid "serial"
-msgstr ""
+msgstr "serial"
#: ../../mouse.pm_.c:52
msgid "Generic 3 Button Mouse"
-msgstr ""
+msgstr "Generic 3 Button Mouse"
#: ../../mouse.pm_.c:53
msgid "Microsoft IntelliMouse"
-msgstr ""
+msgstr "Microsoft IntelliMouse"
#: ../../mouse.pm_.c:54
msgid "Logitech MouseMan"
-msgstr ""
+msgstr "Logitech MouseMan"
#: ../../mouse.pm_.c:55
msgid "Mouse Systems"
-msgstr ""
+msgstr "Mouse Systems"
#: ../../mouse.pm_.c:57
msgid "Logitech CC Series"
-msgstr ""
+msgstr "Logitech CC Series"
#: ../../mouse.pm_.c:58
msgid "Logitech MouseMan+/FirstMouse+"
-msgstr ""
+msgstr "Logitech MouseMan+/FirstMouse+"
#: ../../mouse.pm_.c:60
msgid "MM Series"
-msgstr ""
+msgstr "MM Series"
#: ../../mouse.pm_.c:61
msgid "MM HitTablet"
-msgstr ""
+msgstr "MM HitTablet"
#: ../../mouse.pm_.c:62
msgid "Logitech Mouse (serial, old C7 type)"
-msgstr ""
+msgstr "Logitech Mouse (serial, old C7 type)"
#: ../../mouse.pm_.c:66
msgid "busmouse"
-msgstr ""
+msgstr "busmouse"
#: ../../mouse.pm_.c:69
msgid "2 buttons"
-msgstr ""
+msgstr "2 buttons"
#: ../../mouse.pm_.c:70
msgid "3 buttons"
-msgstr ""
+msgstr "3 buttons"
#: ../../mouse.pm_.c:73
msgid "none"
@@ -5030,43 +5239,59 @@ msgstr "ولا واحد"
#: ../../mouse.pm_.c:75
msgid "No mouse"
-msgstr ""
+msgstr "No mouse"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
-msgstr ""
+msgstr "من فضلك اختبر الفأرة"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
-msgstr ""
+msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
-msgstr ""
+msgstr " WHEEL! حرّك "
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "إنتهاء"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "التالي ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
-msgstr ""
+msgstr "<-سابق "
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
+msgstr "هل هذا صحيح ? "
+
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "المعلومات"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expand Tree"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Collapse Tree"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
msgstr ""
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
-msgstr ""
+msgstr "وصّل إلى الإنترنت "
#: ../../network/adsl.pm_.c:20
msgid ""
@@ -5077,25 +5302,27 @@ msgstr ""
#: ../../network/adsl.pm_.c:22
msgid "Alcatel speedtouch usb"
-msgstr ""
+msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
-msgstr ""
+msgstr "use dhcp"
#: ../../network/adsl.pm_.c:22
msgid "use pppoe"
-msgstr ""
+msgstr "use pppoe"
#: ../../network/adsl.pm_.c:22
msgid "use pptp"
-msgstr ""
+msgstr "use pptp"
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcpcd"
msgstr ""
+"تريد أن تستخدم dhcp أيّ عميل ?\n"
+" Default is dhcpcd"
#: ../../network/ethernet.pm_.c:88
msgid ""
@@ -5103,9 +5330,9 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
-msgstr ""
+msgstr "اختر السّطح البينيّ للشبكة "
#: ../../network/ethernet.pm_.c:93
msgid ""
@@ -5114,11 +5341,11 @@ msgstr ""
#: ../../network/ethernet.pm_.c:178
msgid "no network card found"
-msgstr ""
+msgstr "لا بطاقة شبكة وجدت "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
-msgstr ""
+msgstr "ا ؚداد شبك؊"
#: ../../network/ethernet.pm_.c:203
msgid ""
@@ -5128,25 +5355,25 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
-msgstr ""
+msgstr "Host اسم "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "معالج إعداد الشبكة"
#: ../../network/isdn.pm_.c:22
msgid "External ISDN modem"
-msgstr ""
+msgstr "External ISDN modem"
#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
-msgstr ""
+msgstr "Internal ISDN card"
#: ../../network/isdn.pm_.c:22
msgid "What kind is your ISDN connection?"
@@ -5177,12 +5404,12 @@ msgstr "إعداد قديم (isdn4net)"
#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
#: ../../network/isdn.pm_.c:215
msgid "ISDN Configuration"
-msgstr ""
+msgstr "ISDN ؼؚداد "
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
#: ../../network/isdn.pm_.c:183
@@ -5199,12 +5426,12 @@ msgstr ""
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr ""
#: ../../network/isdn.pm_.c:199
@@ -5213,22 +5440,23 @@ msgstr ""
#: ../../network/isdn.pm_.c:200
msgid "I don't know"
-msgstr ""
+msgstr "لا أعرف "
#: ../../network/isdn.pm_.c:200
msgid "ISA / PCMCIA"
-msgstr ""
+msgstr "ISA / PCMCIA"
#: ../../network/isdn.pm_.c:200
msgid "PCI"
-msgstr ""
+msgstr "PCI"
#: ../../network/isdn.pm_.c:206
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
#: ../../network/isdn.pm_.c:210
@@ -5240,13 +5468,13 @@ msgid "Continue"
msgstr "تابؚ"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr ""
+msgid "Which is your ISDN card?"
+msgstr "ISDN ما هية بطاقتك"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"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
@@ -5259,96 +5487,96 @@ msgstr ""
#: ../../network/modem.pm_.c:44
msgid "Dialup options"
-msgstr ""
+msgstr "Dialup options"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr ""
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
-msgstr ""
+msgstr "رقم التّليفون "
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
-msgstr ""
+msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
-msgstr ""
+msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
-msgstr ""
+msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
-msgstr ""
+msgstr "Script-based"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
-msgstr ""
+msgstr "Terminal-based"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
-msgstr ""
+msgstr "Domain name"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
-msgstr ""
+msgstr "( خادم ا الأوّل ( اختياريّ "
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "اتصل"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "اقطع الإتصال"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "قم بإعداد الإتصال"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5360,12 +5588,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5373,97 +5601,103 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "وضعية الخبير"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
-msgstr ""
+msgstr "ISDN connection"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
-msgstr ""
+msgstr "detected %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "وصلة ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "وصلة LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
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:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "وصلة انترنت"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
-msgstr ""
+msgstr "ا عداد الشّبكة "
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5471,73 +5705,77 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
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:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
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:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr ""
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
-msgstr ""
+msgstr "(driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
-msgstr ""
+msgstr "IP address"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
-msgstr ""
+msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
-msgstr ""
+msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
-msgstr ""
+msgstr "Automatic IP"
+
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "ابدأ عند الإقلاع"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5545,357 +5783,362 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
-msgstr ""
+msgstr "الخادم DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
-msgstr ""
+msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
-msgstr ""
+msgstr "Gateway device"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
-msgstr ""
+msgstr "Proxies اؚداد"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
-msgstr ""
+msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
-msgstr ""
+msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr ""
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
-msgstr ""
+msgstr "اؚداد Internet "
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr ""
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr ""
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr ""
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr ""
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
-msgstr ""
+msgstr "Card mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
-msgstr ""
+msgstr "Card IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
-msgstr ""
+msgstr "Card IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
-msgstr ""
+msgstr "Card IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr ""
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr ""
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr ""
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "إختر بلدك"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "سرعة الإتصال"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "الوقت الأقصى للاتصال (بالثواني)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr ""
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
+msgstr "Account Password"
+
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:600
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "فشل التحميل: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr ""
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr ""
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr ""
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr ""
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr ""
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr ""
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
-msgstr ""
+msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
-msgstr ""
+msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
-msgstr ""
+msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
-msgstr ""
+msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
-msgstr ""
+msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
-msgstr ""
+msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
-msgstr ""
+msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
-msgstr ""
+msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "طابعة محلية"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "طابعة بعيدة"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr ""
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr ""
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "ءابؚ؊ شبك؊ (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr ""
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr ""
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr ""
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "الطابعات المحلية"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "الطابعات البعيدة"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ""
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr ""
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "على خادم CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr ""
@@ -5914,11 +6157,11 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr " CUPS اؚدادات"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "الخادم CUPS حدّد"
@@ -5947,7 +6190,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -5955,7 +6198,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "عنوان IP لخادم CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "البوابة"
@@ -5963,20 +6206,12 @@ msgstr "البوابة"
msgid "Automatic CUPS configuration"
msgstr "تهيئة CUPS آلية"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "أضف طابعة جديدة"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -5989,13 +6224,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "طابعة محلية"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6013,11 +6248,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "تحقق من الطابعات آليا"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6031,11 +6266,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6045,33 +6280,37 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "تحقق آلي"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr ""
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "تم التحقق من %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6079,12 +6318,12 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr ""
#
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -6092,31 +6331,31 @@ msgstr ""
"لم يتم ايحاد طابعة محلية!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6124,7 +6363,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6132,92 +6371,103 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "رجاء اختر المنفذ الموصلة إليه طابعتك."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr ""
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "إعداد يدوي"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr ""
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr ""
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "تركيب طرود ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "تركيب طرود ..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr ""
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6225,35 +6475,35 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr ""
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr ""
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr ""
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "مجموعة العمل"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6277,7 +6527,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6286,7 +6536,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6294,11 +6544,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6306,27 +6556,27 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr ""
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6334,56 +6584,52 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "اسم مستضيف الطابعة"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr ""
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "الوصف"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "المكان"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr ""
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6398,24 +6644,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr ""
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "تم اختيار النّموذج يدويًّا"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "إختيار وحدات الطابعة"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "ما هو نوع الطابعة لديك؟"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6424,17 +6670,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "ؼؚداد OKI WinPrinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6444,11 +6690,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "ؼؚداد Lexmark Inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6456,7 +6702,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6469,7 +6715,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6479,22 +6725,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -6503,11 +6749,11 @@ msgstr ""
"هل تريد تعيين هذه الطابعة (\"%s\")\n"
"كطابعة افتراضية؟"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6515,39 +6761,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "ؼءبؚ"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6557,21 +6803,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "طابعة خام"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -6580,15 +6826,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -6597,49 +6843,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -6649,7 +6895,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -6658,29 +6904,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "إغلاق"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "جاري الطباعة على الطابعة \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "إغلاق"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "قائمة خيارات الطابعة"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -6688,36 +6945,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "نقل إعدادات الطابعة"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -6727,51 +6984,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -6779,56 +7036,56 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "جاري بدء الشبكة..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr ""
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "لم يتم تحديد وظيفية الشبكة"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -6836,11 +7093,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr ""
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -6850,31 +7107,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "مرتفع"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -6889,11 +7146,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -6907,63 +7164,63 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr ""
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "أي نظام طباعة تريد أن تستخدم؟"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "إعداد الطابعة \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
+msgstr "جاري إعداد الطابعة \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr ""
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "جاري إعداد التطبيقات..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr ""
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -6971,35 +7228,39 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "تغيير نظام الطباعة"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "؎عو؏"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "تعديل اعدادات الطابعة"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -7008,103 +7269,103 @@ msgstr ""
"الطابعة %s\n"
"هل تريد تعديل تلك الطابعة؟"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "نوع وصلة الطابعة"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "اعرف كيف تستخدم هذه الطابعة"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr ""
+msgid "Removing old printer \"%s\"..."
+msgstr "جاري ازالة الطابعة القديمة \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr ""
+msgid "Removing printer \"%s\"..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -7178,24 +7439,51 @@ msgstr ""
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr ""
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr ""
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/msec.pm_.c:144
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+
+#: ../../security/msec.pm_.c:150
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "خيارات متقدمة"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "خيارات"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7238,7 +7526,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7294,7 +7582,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -7351,7 +7639,7 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -7428,7 +7716,7 @@ msgstr "إنترنت"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "نظام"
@@ -7540,6 +7828,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "مركز تحكم Mandrake"
@@ -7562,13 +7851,15 @@ msgstr ""
#: ../../share/advertising/07-server.pl_.c:9
msgid "Server Software"
-msgstr ""
+msgstr "برامج الخادم"
#: ../../share/advertising/07-server.pl_.c:10
msgid ""
"Transform your machine into a powerful server with just a few clicks of the "
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
+"حوّل ماكينتك إلى خادم قويّ مع/ب فقط نقرات قليلة من ال الفأرة : خادم الويب , "
+"البريد الإلكترونيّ , فيروول , الحفّار , الملفّ و خادم الطّبع ,"
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
@@ -7579,10 +7870,12 @@ msgid ""
"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
"cards, sports, strategy, ..."
msgstr ""
+" يمدّون أفضل لعب بمصادر مفتوحة Mandrake Linux 8.2 - arcade, action, "
+"cards, sports, strategy,...."
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
-msgstr ""
+msgstr "MandrakeCampus"
#: ../../share/advertising/09-MDKcampus.pl_.c:10
msgid ""
@@ -7593,7 +7886,7 @@ msgstr ""
#: ../../share/advertising/10-MDKexpert.pl_.c:9
msgid "MandrakeExpert"
-msgstr ""
+msgstr "MandrakeExpert"
#: ../../share/advertising/10-MDKexpert.pl_.c:10
msgid ""
@@ -7616,7 +7909,7 @@ msgstr ""
#: ../../share/advertising/12-MDKstore.pl_.c:9
msgid "MandrakeStore"
-msgstr ""
+msgstr "MandrakeStore"
#: ../../share/advertising/12-MDKstore.pl_.c:10
msgid ""
@@ -7632,21 +7925,186 @@ msgstr ""
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
+msgstr "http://www.mandrakesoft.com/sales/contact"
#: ../../standalone.pm_.c:25
msgid "Installing packages..."
-msgstr ""
+msgstr "تركيب طرود ..."
+
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
msgstr ""
+" لا يمكن أن أقرأ جدول فاصلك هو يفسد أيضًا سوف أحاول أن أستمرّ فواصل سيّئة "
+
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "نقل إعدادات الطابعة"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "خادم قواعد بيانات"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "خادم قواعد بيانات"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "اضف مستخدم"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "مساعدة"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "لم يتم ايجاد بطاقة تلفاز!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "غير متصل"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "إلغاء"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "تم اختيار الكل"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "اضف مستخدم"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "جاري الإعداد..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "إعداة الإعداد"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "أدخل قرص مرن بالدّاخل %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "آسف , لا مدخل مرن متاح"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
-msgstr ""
+msgstr "؎ءأ ! "
#: ../../standalone/drakautoinst_.c:46
#, c-format
@@ -7682,6 +8140,10 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -7690,44 +8152,37 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "تثبيت آلي"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr ""
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "أزل المادة الأخيرة"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -7735,15 +8190,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -7751,161 +8198,177 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
-" "
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
+" "
+msgstr "ارسال الملفات عن طريق FTP"
+
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "المستخدمون"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "فضلا أدخل اسم المستضيف أو عنوان IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
-msgstr ""
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "رجاء أدخل اسم الدخول"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "رجاء كلمة المرور"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "تذكّر كلمة السّرّ هذه "
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "وصلة FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "وصلة آمنة"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "إلى المساعد CD/DVDROM الاستعمال "
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "رجاء اختر مساحة القرص المدمج"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -7913,72 +8376,83 @@ msgstr ""
" من فضلك فحص إذا أردت أن تتضمّن \n"
"ركّب الجدر على قرصك المدمج"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "الشبكة"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "النوع"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "كلّ ساعة "
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "يوميًّا "
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "أسبوعيّا"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "شهريا"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "استخدم المراقب"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -7986,7 +8460,7 @@ msgstr ""
"فضلا اختر الفترة \n"
"ما بين كل عملية نسخ احتياطي"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -7994,71 +8468,66 @@ msgstr ""
"ع؏اإ ا؎تع\n"
"وسيط النسخ الاحتياطي"
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTPاستخدم مع المراقب"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "ماذا "
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "أين"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "متى "
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "خيارات أكثر"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "ؼؚدادات Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "على القرص الصّلب"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "عبر الشّبكة"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "نظام المساعد"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "مستخدمو المساعد"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "اخترالمستخدم يدويًّا"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -8066,7 +8535,7 @@ msgstr ""
"\n"
"مصادر المساعد :\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -8074,7 +8543,7 @@ msgstr ""
"\n"
"-ملفّات النّظام :\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -8082,7 +8551,7 @@ msgstr ""
"\n"
"-ملفّات المستخدم:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -8090,7 +8559,7 @@ msgstr ""
"\n"
"-الملفّات الأخرى:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -8099,23 +8568,52 @@ msgstr ""
"\n"
"- احفد القرص الصّلب على الطّريق :%s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "جهاز الفأرة: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"-FTP و على host احفد على : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"-FTP و على host احفد على : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -8123,19 +8621,19 @@ msgstr ""
"\n"
"- خيارات:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -8144,271 +8642,293 @@ msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Network by FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Network by FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
-msgstr ""
+msgstr "اضغط موافق لاستعادة ملفات اخرى"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
+msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
-msgstr ""
+msgstr "انسخ ملفات النظام قبل:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
+
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "وصلة FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "وصلة آمنة"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
-msgstr ""
+msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr ""
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "اختر وسيط آخر للاستعادة منه"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "وسيط آخر"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "استعد النّظام"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "استؚد آ؎ع"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
-msgstr ""
+msgstr "اختر مسار الإستعادة (بدلاً من / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
+msgstr "قم بنسخ احتياطي جديد فبل الإستعادة (فقط للنسخ الإحتياطية المتدرجة)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
-msgstr ""
+msgstr "أزل أدلة المستخدمين قبل الإستعادة"
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
-msgstr ""
+msgstr "استعد كل النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "استعادة مخصصة"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "السابق"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "حفظ"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
-msgstr ""
+msgstr "ابني النسخة الإحتياطية"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "استؚاد؊"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "التالي"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "قائمة الحزم المطلوب تثبيتها"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "رجاء اختر تاريخ الإستعادة..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
+"لم يتم ايجاد ملف تهيئة \n"
+"فضلا اضغط معالج لأو متقدم."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
-msgstr ""
+msgstr "تحت التطوير ... انتظر فضلا"
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
-msgstr ""
+msgstr "انسخ ملفات النظام"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
-msgstr ""
+msgstr "انسخ ملفات المستخدم"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
-msgstr ""
+msgstr "انسخ ملفات أخرى"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
-msgstr ""
+msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
-msgstr ""
+msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
-msgstr ""
+msgstr "جاري ارسال الملفات..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr ""
+msgstr "قائمة البيانات التي ستضمن في القرص."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "رجاء أدخل سرعة سواقة كتابة الأقراص"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
+msgstr "فضلا اختر اسم جهاز كتابة الأقراص (مثال: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
-msgstr ""
+msgstr "فضلا تأكد بأنك تريد تضمين إقلاع التثبيت في قرصك المدمج."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "قم بالنسخ الآن من ملف التهيئة"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "اعرض تهيئة النسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "إعدادات المعالج"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "إعداد متقدم"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
-msgstr ""
+msgstr "قم بالنسخ الإحتياطي الآن"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
-msgstr ""
+msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -8440,7 +8960,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -8449,7 +8969,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -8490,7 +9010,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -8518,12 +9038,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
+" جميع الحقوق محفوظة (C) 2001 MandrakeSoft من دوبون سيباستيان <dupont_s"
+"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -8539,8 +9066,24 @@ msgid ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
+" هذا البرنامج هو برنامج حر; يمكنك اعادة توزيعة و/أو تعديله\n"
+" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما نُشِرت عن طريق\n"
+" جمعية البرمجيات الحرة; إما اإصدار الثاني من الترخيص أو\n"
+" أي نسخة تالية (حسب اختيارك).\n"
+"\n"
+" هذا البرنامج يُوزَّع على أمل أن يكون مفيدا,\n"
+" لكن دون أي ضمان’; حتى بدون الضمانة المفهومة\n"
+" للإتجار أو المناسبة لغرض معين. انظر\n"
+" رخصة GNU العمومية الشاملة للتفاصيل.\n"
+"\n"
+" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
+" مع البرنامج; في حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على العنوان "
+"التالي\n"
+" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
+"02111-1307,\n"
+" USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -8580,7 +9123,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -8591,7 +9134,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -8604,7 +9147,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -8648,99 +9191,526 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "فشل تثبيت %s. ظهر الخطأ التالي:"
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "أدوات سطر الأوامر"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "على القرص الصّلب"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "استشاعات Mandrake"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "الفأرة"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "طابعة بعيدة"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "معالج إعداد الشبكة"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "التحقق"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr ""
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "من فضلك انتظر"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "ما بعد ازالة التثبيت"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "استؚاد؊"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "اعدادات الشبكة (%d موائمات)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "التشكيل:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "احذف التشكيل..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "التشكيل المطلوب حذفه:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "تشكيل جديد..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"لإسم التشكيل الذي ستعمله (التشكيل الجديد يتم عمله كنسخة من التشكيل الحالي) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "اسم المستضيف :"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "الدخول الى الإنترنت"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "النوع:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "البوابة:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "الواجهة:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "الحالة:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "الانتظار من فضلك"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "إعداد الدخول الى الإنترنت..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "ؼؚداد LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "المحرك"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "الواجهة"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "البروتوكول"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "الحالة"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "إعداد الشبكة المحلية..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "انقر هنا لتشغيل المعالج ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "المعالج..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "تطبيق"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "متّصل "
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "غير متصل"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "اتصل..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "اقطع الإتصال..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"لم تقم بتهيئة أي واجهات.\n"
+"قم بتهيئتهم أولا عن طريق الضغط على 'تهيئة'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "ؼؚداد LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "المحوّل %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "بروتوكول الإقلاع"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "يتم بدءه عند الإقلاع"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP العميل "
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "قم بالتنشيط الآن"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "قم بإزالة التنشيط الآن"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"لم يتم تهيئة الواجهة بعد.\n"
+"قم بتشغيل معالج التهيئة في النافذة الرئيسية"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"ليست لديك أي اتصالات إنترنت.\n"
+"قم بعمل اتصال أولا باستخدام 'تهيئة'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "نوع العلاقة"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameters"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet Card"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "الاستخدام: دريك للاقراص المرنة\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-متنوع-ثابت-وسط-ر-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "اسم الوحدة"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "حجم"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "دريك للاقراص المرنة"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "صنع قرص مرن لبدء النظام"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "المرجع"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "خطأ فى دريك لعمل قرص بدء النظام: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "اصدارة اللب"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "عام"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "منطقة الخبراء"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd الخصائص الاختيارية"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "ا؜اف؊ وحد؊"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "ا؏باع"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "اذا احتجته"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "SCSI اهمل وحدات ال"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "RAID اهمل وحدات ال"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "ازالة وحدة"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "الناتج"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "جهز القرص"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "تأكد من وجود الوسيط للوحدة %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
+"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
+"فضلاً ادخل وسط فى الوحدة."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "تعذر تنفيذ: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"غير قادر على غلق mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
+msgid "Search installed fonts"
+msgstr "ابحث في الخطوط المثبتة"
+
+#: ../../standalone/drakfont_.c:234
+msgid "Unselect fonts installed"
+msgstr "أزل اختيار الخطوط المثبتة"
+
+#: ../../standalone/drakfont_.c:258
+msgid "parse all fonts"
+msgstr "تحليل كل الخطوط"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:261
+msgid "no fonts found"
+msgstr "لا توجد خطوط"
+
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "انتهى"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
-msgstr ""
+msgstr "لم أتمكن من ايجاد أي خطوط في تجزئاتك المحملة"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
-msgstr ""
+msgstr "أعد اختيار الخطوط الصحيحة"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
-msgstr ""
+msgstr "لم أتمكن من إيجاد أي خط.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
-msgstr ""
+msgstr "ابحث عن الخطوط في القائمة المثبتة"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
-msgstr ""
+msgstr "نقل الخطوط"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr ""
+msgstr "تثبيت خطوط True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
-msgstr ""
+msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
-msgstr ""
+msgstr "تم تثبيت خطوط True Type"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
-msgstr ""
+msgstr "تحويل الخطوط"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
-msgstr ""
+msgstr "بناء type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
-msgstr ""
+msgstr "Ghostscript referencing"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
-msgstr ""
+msgstr "تحويل خطوط ttf"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
-msgstr ""
+msgstr "تحويل خطوط pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
-msgstr ""
+msgstr "أبطل الملفات المؤقتة"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
-msgstr ""
+msgstr "أعد تشغيل XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
-msgstr ""
+msgstr "أبطل ملفات الخطوط"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs restart"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -8749,107 +9719,107 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "استيراد الخطوط"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
-msgstr ""
+msgstr "احصل على خطوط Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
-msgstr ""
+msgstr "اخذف الخطوط"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "خيارات متقدمة"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "قائمة الخطوط"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
-msgstr ""
+msgstr "اختر التطبيقات التي ستدعم الخطوط :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
-msgstr ""
+msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "طابعات عادية (Generic)"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+msgstr "اختر ملف أو دليل الخطوط و اضغط 'اضافة'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
-msgstr ""
+msgstr "ثبّت القائمة"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
-msgstr ""
+msgstr "اضغط هنا إذا كنت متأكدا."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
-msgstr ""
+msgstr "إضغط هنا إذا لم تكن متأكدا."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
-msgstr ""
+msgstr "تم ازالة اختيار الكل"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "تم اختيار الكل"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "ازل القائمة"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "الإختبارات الأولية"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
-msgstr ""
+msgstr "انسخ الخطوط الى نظامك"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
-msgstr ""
+msgstr "ثبّت و حوّل الخطوط"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "ما بعد التثبيت"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
-msgstr ""
+msgstr "أزل الخطوط من النظام"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "ما بعد ازالة التثبيت"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت"
+
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "آسفون, نحن ندعم اصدارات النواة 2.4"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت ممكنة حاليا"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -8857,51 +9827,51 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
-msgstr "أعق"
+msgstr "تعطيل"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
-msgstr ""
+msgstr "اهمال"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
-msgstr ""
+msgstr "إعداة الإعداد"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
-msgstr ""
+msgstr "جاري تعطيل الخوادم..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "مشاركة اتصال الإنترنت غير ممكَّنة الآن."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
-msgstr "ماذا تحبّ أن تعمل"
+msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
-msgstr ""
+msgstr "تمكين"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
-msgstr ""
+msgstr "جاري تمكين الخوادم..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "مشاركة إتصال الإنترنت ممكَّنة الآن."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -8911,31 +9881,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
-msgstr "السّطح البينيّ %s(استعمال مركبة%s)"
+msgstr "الواجهة %s (باستخدام الوحدة %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
-msgstr "السّطح البينيّ %s"
+msgstr "الواجهة %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "لا محوّل الشّبكة على نظامك"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "سطح بينيّ للشبكة "
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -8945,17 +9915,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "واجهة الشبكة معدّة مسبقا!"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -8965,15 +9935,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "اعداة تهيئة آلية"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "أظهر تهيئة الواجهة الحالية"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -8983,13 +9953,14 @@ msgid ""
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
-"الشّكل الحاليّ من `%s':\n"
-"n/الشّبكة : %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"الإعداد الحالي لـ`%s':\n"
+"\n"
+"الشبكة: %s\n"
+"عنوان الـIP: %s\n"
+"صفة الـIP: %s\n"
+"المشغل: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9001,74 +9972,80 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
-msgstr ""
+msgstr "شبكة محلية من الفئة C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "عنوان IP لخادم DHCP (هذا)"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
-msgstr ""
+msgstr "إعادة إعداد الواجهة و خادم DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
+msgstr "الشبكة المحلية لم تنته بـ`0', جاري الخروج."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
+"تم ايجاد تعارض في عنوان الشبكة المحلية المبدئي في الإعداد الحالي لـ%s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
-msgstr "Firewalling configuration تم اكتشاف "
+msgstr "تم اكتشاف إعداد للجدار الناري!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
+"تحذير! تم إيجاد إعداد جدار ناري موجود مسبقا. ربما تحتاج الى اصلاح يدوي بعد "
+"التثبيت."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
-msgstr ""
+msgstr "جاري الإعداد..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
+msgstr "جاري إعداد النصوص البرمجية و تثبيت البرمجيات و بدء الخدمات..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
-msgstr ""
+msgstr "كانت هناك مشاكل في تثبيت الحزمة %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
+"تم إعداد كل شئ.\n"
+"يمكنك الآن مشاركة اتصال الإنترنت مع الأجهزة الأخرى في شبكتك المحلية باستخدام "
+"إعداد الشبكة الأوتوماتيكي (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
+msgstr "تم عمل التنصيب, و لكنه غير ممكَّن الآن"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
+msgstr "تم عمل التنصيب, و هو ممكَّن الآن."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "لم يتم اعداد أي مشاركة اتصال بالإنترنت"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "إعدادات مشاركة إتصال الإنترنت"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9077,206 +10054,11 @@ msgid ""
"\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr ""
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "النّبذة :"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "نبذة جد يد ة..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname :"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "النوع:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "الانتظار من فضلك"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "ؼؚداد LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "المحرك"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "الواجهة"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "الحالة"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "المعالج..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "تطبيق"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "متّصل "
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "غير متصل"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "متصل"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "ؼؚداد LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "المحوّل %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP العميل "
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "نوع العلاقة"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet Card"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP العميل"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr ""
+"أهلا بك في أداة مشاركة الإتصال بالإنترنت!\n"
+"\n"
+"%s\n"
+"\n"
+"اضغط على تهيئة لتشغيل معالج الإعداد."
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
@@ -9284,93 +10066,127 @@ msgstr "مركز التّحكّم "
#: ../../standalone/drakxconf_.c:48
msgid "Choose the tool you want to use"
+msgstr "اختر الأداة التي تريد استخدامها"
+
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "كندة (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "الولايات المتّحدة الأمريكيّة (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "الولايات المتّحدة الأمريكيّة (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "الولايات المتّحدة الأمريكيّة (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "الولايات المتّحدة الأمريكيّة (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "الصين (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "الصين (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "اليابان (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "اليابان (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "اليابان (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "أوروبّا الشّرقيّة"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "فرنسا [سيكام]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "أيرلندا"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "أوروبّا الغربيّة"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "أوستراليا"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "نيوزيلندا "
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "جنوب أفريقيا "
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "الأرجنتين "
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-"من فضلك\n"
-" في معيار تليفزيونك و البلد type"
+"فضلاً,\n"
+"اطبع tv norm الخاص بك و بلدك"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV norm :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
-msgstr "Area :"
+msgstr "المنطقة :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
-msgstr ""
+msgstr "ضيط قنوات التلفاز في تقدم ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
-msgstr ""
+msgstr "جاري ضبط قنوات التلفاز"
+
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "كان هناك خطأ أثناء ضبط قنوات التلفاز"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV غير مثبت!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "نتمنى لك يوماً سعيداً!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "الآن يمكنك تشغيل XawTV (في الواجهة الرسومية!) !\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "لم يتم ايجاد بطاقة تلفاز!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -9381,6 +10197,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"لم يتم ايجاد بطاقة تلفاز على جهازك. فضلاً تأكد من أن بطاقة الفيديو/التلفاز "
+"المدعومة في لينكس موصولة بشكل صحيح.\n"
+"\n"
+"\n"
+"يمكنك زيارة قاعدة بيانات العتاد المدعوم الخاصة بنا على:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -9392,27 +10216,29 @@ msgstr "من فضلك اختر تصميم لوحة مفاتيحك"
#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
+msgstr "هل تريد أن يقوم زر BackSpace بعمل وظيفة زر Delete في سطر الأوامر؟"
#: ../../standalone/livedrake_.c:24
msgid "Change Cd-Rom"
-msgstr "Cd-Romتغيير"
+msgstr "غيّر القرص المدمج"
#: ../../standalone/livedrake_.c:25
msgid ""
"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
+"فضلا أدخل قرص التثبيت في سواقتك و اضغط موافق عندما تنتهي.\n"
+"إذا لم يكن قرص التثبيت لديك اضغط الغاء للإمتناع عن التحديث الحي."
#: ../../standalone/livedrake_.c:35
msgid "Unable to start live upgrade !!!\n"
-msgstr ""
+msgstr "لم أتمكن من بدء الترقية الحية !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr ""
+msgstr "تم عمل التغيير, و لكن ليتم تفعيله يجب عليك الخروج"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -9426,7 +10252,7 @@ msgstr "/ملف/_جديد"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>ŘŹ"
+msgstr "<تحكم>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -9434,7 +10260,7 @@ msgstr "/ملف/_فتح"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>ف"
+msgstr "<تحكم>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -9442,11 +10268,11 @@ msgstr "/ملف/_حفظ"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>Ř­"
+msgstr "<تحكم>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/ملف/حفظ با_سم"
+msgstr "/ملف/حفظ _باسم"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -9454,19 +10280,15 @@ msgstr "/ملف/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr "/خ_يارات"
+msgstr "/_خيارات"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/خيارات/احتبار"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_مساعدة"
+msgstr "/خيارات/اختبار"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/مساعدة/_حول"
+msgstr "/مساعدة/_حول البرنامج..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -9524,7 +10346,7 @@ msgstr "التقويم"
msgid "Content of the file"
msgstr "محتويات الملف"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "تنبية البريد/SMS"
@@ -9533,11 +10355,11 @@ msgstr "تنبية البريد/SMS"
msgid "please wait, parsing file: %s"
msgstr "يرجى الإنتظار, جاري تحليل الملف: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "تهيئة تنبيه البريد/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -9547,62 +10369,93 @@ msgstr ""
"\n"
"هنا سيمكنك الإعداد \n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domain name"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "خادم البريد Postfix, خادم الأخبار Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr " الخادم NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "الخدمات"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "الخدمات"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "إعدادات الخدمات"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
-msgstr ""
+msgstr "سوف تستلم تنبيهاً إذا كانت أحد الخدمات المختارة غير عاملة."
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "حمل الإعدادات"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "سوف تستلم تنبيها اذا كان التحميل أعلى من هذه القيمة"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "إعدادات التنبيه"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "أعدّ الطريقة التي سينبهك النظام بها"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "حفظ بإسم.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
-msgstr ""
+msgstr "فضلاً, اختر نوع الفأرة الخاصة بك."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no serial_usb found\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
-msgstr ""
+msgstr "محاكاة الزر الثالث؟"
+
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "جاري قراءة بيانات الطابعة ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "جاري التحقق من الأجهزة ..."
#: ../../standalone/scannerdrake_.c:53
#, c-format
@@ -9626,9 +10479,8 @@ msgid ""
msgstr ""
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "جهاز الإقلاع"
+msgstr "اختر الجهاز "
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -9637,6 +10489,8 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
+"الماسح الضوئي %s يجب اعداده عن طريق PrinterDrake.\n"
+"يمكن تشغيل PrinterDrake من مركز التحكم في قسم العتاد."
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -9645,6 +10499,21 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"تمت تهيئة الماسح الضوئي %s.\n"
+"يمكنك الآن مسح المستندات باستخدام ``XSane'' من فرع وسائط متعددة/برامج رسومية "
+"في قائمة التطبيقات."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -9661,6 +10530,10 @@ msgid ""
"You already have set up a firewall.\n"
"Click on Configure to change or remove the firewall"
msgstr ""
+"الجدار الناري\n"
+"\n"
+"لقد قمت بإعداد جدار ناري مسبقا.\n"
+"اضغط تهيئة لتغيير أو إزالة الجدار الناري"
#: ../../standalone/tinyfirewall_.c:83
msgid ""
@@ -9668,6 +10541,9 @@ msgid ""
"\n"
"Click on Configure to set up a standard firewall"
msgstr ""
+"الجدار الناري\n"
+"\n"
+"اضغط تهيئة لإعداد جدار ناري قياسي"
#: ../../steps.pm_.c:14
msgid "Choose your language"
@@ -9749,6 +10625,11 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
+"أداة تهيئة الجدار الناري البسيط\n"
+"\n"
+"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام Mandrake Linux هذا.\n"
+"إذا كنت تريد جدارا ناريا متخصصا, الق نظرة على\n"
+"توزيعة MandrakeSecurity Firewall."
#: ../../tinyfirewall.pm_.c:14
msgid ""
@@ -9760,6 +10641,13 @@ msgid ""
"it off. You can change this configuration anytime you like by\n"
"re-running this application!"
msgstr ""
+"الآن سنسألك بعض الأسئلة حول أي الخدمات تريد أن تسمح لها\n"
+"بالإتصال بالإنترنت. فضلا فكر بعناية حول هذه\n"
+"الأسئلة لأن أمن كمبيوترك مهم.\n"
+"\n"
+"رجاء, اذا كنت لا تستخدم أياً من هذه الخدمات فاحجبها عن\n"
+"الجدار الناري. يمكنك تغيير التهيئة في أي وقت تريد عن طريق\n"
+"تشغيل هذا البرنامج مرة أخرى!"
#: ../../tinyfirewall.pm_.c:21
msgid ""
@@ -9768,6 +10656,10 @@ msgid ""
"accessed by this machine, you can safely answer NO here.\n"
"\n"
msgstr ""
+"هل تشغّل خادم ويب على هذا الجهاز و تريد كل الإنترنت أن\n"
+"تراه؟ اذا كنت تستخدم خادم ويب تحتاج فقط أن تصل اليه عن طريق\n"
+"هذا الجهاز فيمكنك أن تجيب بـ\"لا\" هنا.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:26
msgid ""
@@ -9776,6 +10668,10 @@ msgid ""
"answer no.\n"
"\n"
msgstr ""
+"هل تشغل خادم أسماء نطاقات هنا؟ إذا لم تكن أعددت واحدا\n"
+"لإعطاء معلومات الـIP و المكان لكل الإنترنت, فضلا أجب\n"
+"بـ\"لا\".\n"
+"\n"
#: ../../tinyfirewall.pm_.c:31
msgid ""
@@ -9785,6 +10681,11 @@ msgid ""
"encrypted -- so some attackers can steal your password if you use\n"
"it. ssh is encrypted and doesn't allow for this eavesdropping."
msgstr ""
+"هل تريد السماح لإتصالات ssh الواردة؟ هذا\n"
+"بديل عن telnet و يمكنك استخدامه للدخول. لإذا كنت تستخدم\n"
+"telnet الآن فيجب عليك حتما بالتبديل الى ssh. Telnet غير\n"
+"مشفر -- مما يسمح للمخترقين بسرقة كلمة المرور إذا كنت تستخدمها.\n"
+"SSH مشفر و لا يسمح بالتلصص."
#: ../../tinyfirewall.pm_.c:36
msgid ""
@@ -9793,6 +10694,10 @@ msgid ""
"strongly recommend answering No here and using ssh in place of\n"
"telnet.\n"
msgstr ""
+"هل تريد السماح لإتصالات Telnet الواردة؟\n"
+"هذا غير آم بشكل مخيف كما شرحنا في الخطوة السابقة. نحن ننصح بقوة\n"
+"بالإجابة ب\"لا\" هنا و استخدام SSH بدلا\n"
+"من Telnet.\n"
#: ../../tinyfirewall.pm_.c:41
msgid ""
@@ -9801,6 +10706,11 @@ msgid ""
"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
"attackers, since FTP also uses no encryption for transferring passwords.\n"
msgstr ""
+"هل تشغل خادم FTP هنا و تريد أن يُسمح للوصل اليه عن طريق\n"
+"الإنترنت؟ إذا كنت كذلك فنحن ننصح بقوة باستخدامه فقط\n"
+"لنقل الملفات عن طريق الدخول اللاإسمي [Anonymous]. أي كلمات مرور مبعوثة\n"
+"عن طريق FTP يمكن سرقتها عن طريق بعض المخترقين بما أن FTP أيضا لا يستخدم "
+"التشفير لنقل كلمات المرور.\n"
#: ../../tinyfirewall.pm_.c:46
msgid ""
@@ -9809,6 +10719,10 @@ msgid ""
"you probably are. Otherwise, you should firewall this off.\n"
"\n"
msgstr ""
+"هل تشغل خادم بريد هنا؟ إذا كنت ترسل الرسائل من خلال \n"
+"pine أو mutt أو أي برنامج بريد يعمل في سطر الأوامر,\n"
+"فالأرجح أنك تفعل ذلك. إذا كان غير ذلك, فسيجب عليك حجب الجدار الناري عن هذا.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:51
msgid ""
@@ -9817,6 +10731,10 @@ msgid ""
"this machine.\n"
"\n"
msgstr ""
+"هل تشغل خدمة POP أو IMAP هنا؟ هذا سوف\n"
+"يستخدم لاستضافة حسابات البريد غير المعتمدة على الإنترنت\n"
+"عبر هذه الماكينة.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:56
msgid ""
@@ -9825,6 +10743,10 @@ msgid ""
"(dynamically assigned), we need to allow for this. Is\n"
"this the case?\n"
msgstr ""
+"يبدو أنك تشغل نواة من الإصدار 2.2. إذا كان عنوان IP الخاص\n"
+"بشبكتك يتم تحديده عن طريق الكمبيوتر في بيتك أو مكتبك \n"
+"(مُعيَّن ديناميكياً), سيجب عليك السماح بهذا. هل\n"
+"هذه هي القضية؟\n"
#: ../../tinyfirewall.pm_.c:61
msgid ""
@@ -9834,6 +10756,11 @@ msgid ""
"of a larger office and haven't heard of this, you probably \n"
"aren't."
msgstr ""
+"هل التوقيت في جهازك متزامن مع جهاز آخر؟\n"
+"غالبا, هذه الطريقة تستخدم في أنظمة يونيكس/لينكس المتوسطة و الكبيرة.\n"
+"لتحديث أوقات الدخول و أشياء أخرى كهذه. إذا لم تكن جزءا من\n"
+"مكتب أكبر (أو شئ من هذا القبيل) أو لم تسمع بهذا من قبل, فالأرجح أن\n"
+"هذا لا يحصل."
#: ../../tinyfirewall.pm_.c:66
msgid ""
@@ -9842,15 +10769,15 @@ msgid ""
"\n"
"\n"
msgstr ""
-"?قد نكتب التّغييرات هذه للقرص. اعد اد كامل \n"
-" \n"
+"اكتملت التهيئة. هل يمكننا كتابة هذه التغييرات الى القرص؟\n"
+"\n"
"\n"
"\n"
#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
+#, c-format
msgid "Can't open %s: %s\n"
-msgstr "استءؚ"
+msgstr "لا يمكن أن ينفتح %s: %s\n"
#: ../../tinyfirewall.pm_.c:84
#, c-format
@@ -9904,6 +10831,8 @@ msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+"فشل تثبيت الحزم الضرورية: %s و Bastille.\n"
+" حاول تثبيتهم يدوياً."
#: ../../share/compssUsers:999
msgid "Web/FTP"
@@ -9990,10 +10919,6 @@ msgid "Multimedia - Sound"
msgstr "وسائط متعددة - صوت"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "أدوات خدمية"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "وثائق المساعدة"
@@ -10097,10 +11022,6 @@ msgstr ""
"لتصفح الإنترنت"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "الأرشفة, محاكيات, أدوات مراقبة النظام"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "الميزانية الشخصية"
@@ -10148,122 +11069,193 @@ msgstr "وسائط متعددة - نسخ أقراص"
msgid "Scientific Workstation"
msgstr "محطة عمل علمية"
-#~ msgid "About"
-#~ msgstr "حول"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "معرف بطاقة الشاشة: %s\n"
-#~ msgid " Help "
-#~ msgstr " مساعدة "
+#~ msgid "Choose options for server"
+#~ msgstr "إختر خيارات الخادم"
-#~ msgid "None"
-#~ msgstr "ولا واحدة"
+#~ msgid "Monitor not configured"
+#~ msgstr "الشاشة غير معدّة"
-#~ msgid "Choose a default printer!"
-#~ msgstr "اختر الطابعة الافتراضية:"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "لم يتم اعداد بطاقة الشاشة حتى الآن"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "يمكنك الآن اعطاء الخيارات للوحدة %s"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "ام يتم اعداد دقة العرض حتى الآن"
-#~ msgid "mount failed"
-#~ msgstr "فشل التحميل"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "حاول تغيير بعض المعاملات"
+
+#~ msgid "An error occurred:"
+#~ msgstr "ظهر خطأ:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "المغادرة في %d ثوان"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "هل هذا هو الضبط الصحيح؟"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "ظهر خطأ, حاول تغيير بعض الماملات"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "خادم XFree86 :%s"
+
+#~ msgid "Show all"
+#~ msgstr "اظهار الكل"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "جاري تجهيز تهيئة X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "ماذا تريد أن تفعل؟"
+
+#~ msgid "Change Monitor"
+#~ msgstr "تغيير الشاشة"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "تغيير بطاقة الشاشة"
+
+#~ msgid "Change Server options"
+#~ msgstr "تغيير خيارات الخادم"
+
+#~ msgid "Change Resolution"
+#~ msgstr "تغيير دقة العرض"
-#~ msgid "Low"
-#~ msgstr "منخفض"
+#~ msgid "Show information"
+#~ msgstr "اعرض المعلومات"
-#~ msgid "Medium"
-#~ msgstr "متوسط"
+#~ msgid "Test again"
+#~ msgstr "اختبر مرة أخرى"
-#~ msgid "Export"
-#~ msgstr "تصدير"
+#~ msgid "Use FTP with daemon"
+#~ msgstr "FTPاستخدم مع المراقب"
-#~ msgid "click here"
-#~ msgstr "انقر هنا"
+#~ msgid "Package List to Install"
+#~ msgstr "قائمة الحزم المطلوب تثبيتها"
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "تم التخقق من وجود %s, هل تريد اعداده؟"
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "رجاء اختر الطابعة التي تريد تهيئتها."
+#~ msgid "sshd"
+#~ msgstr "sshd"
-#~ msgid "authentification"
-#~ msgstr "المصادقة"
+#~ msgid "webmin"
+#~ msgstr "webmin"
-#~ msgid "user"
-#~ msgstr "المستخدم"
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "جاري مسح مصادر nfs المشتركة المتوفرة"
+#~ msgid "Setting security level"
+#~ msgstr "جاري ضبط مستوى الأمن"
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "جاري مسح مصادر nfs المشتركة المتوفرة للخادم %s"
+#~ msgid "Graphics card"
+#~ msgstr "بطاقة الشاشة"
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "جاري مسح مصادر samba المشتركة المتوفرة"
+#~ msgid "Select a graphics card"
+#~ msgstr "اختر بطاقة شاشة"
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "جاري مسح مصادر samba المشتركة المتوفرة للخادم %s"
+#~ msgid "Choose a X driver"
+#~ msgstr "إختر مشغل X"
-#~ msgid "\\@quit"
-#~ msgstr "\\@؎عو؏"
+#~ msgid "X driver"
+#~ msgstr "مشغل X"
-#~ msgid "Removable media"
-#~ msgstr "وسائط قابلة للإزالة"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
-#~ msgid "Active"
-#~ msgstr "نشط"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 at 60 Hz"
-#~ msgid "No X"
-#~ msgstr "لا X"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 at 56 Hz"
-#~ msgid " Linux "
-#~ msgstr " لينكس "
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgid " System "
-#~ msgstr " نظام "
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgid " Other "
-#~ msgstr " أخرى "
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgid "please choose your CD space"
-#~ msgstr "رجاء اختر مساحة القرص المدمج"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgid " Tape "
-#~ msgstr " الشريط "
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgid " Cancel "
-#~ msgstr " إلغاء "
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgid " Ok "
-#~ msgstr " موافق "
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgid "close"
-#~ msgstr "إغلاق"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "لم يمكن فتح /etc/sysconfig/autologin للقراءة: %s"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgid "New"
-#~ msgstr "جديد"
+#~ msgid "Choose security level"
+#~ msgstr "اختر مستوى الأمن"
-#~ msgid "Remote"
-#~ msgstr "بعيد"
+#~ msgid "hide expert mode"
+#~ msgstr "اخفاء اسلوب المحترف"
+
+#~ msgid "show expert mode"
+#~ msgstr "اظهار اسلوب المحترف"
#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "فضلا اضغط الزر بالأعلى\n"
-#~ "\n"
-#~ "أو استخدم \"جديد\""
+#~ "اذا كان الجهاز '%s' قابلاً للتغيير,\n"
+#~ " تأكد من أن الوسيط داخل الجهاز."
+
+#~ msgid ""
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
+#~ msgstr ""
+#~ "تحذير! هذا سيقوم بتهيئة '%s'.\n"
+#~ "كل البيانات الموجودة على الوسط '%s' سيتم محوها.\n"
+#~ "اذا كنت تريد المتابعة, اضغط موافق. "
+
+#~ msgid "unknown"
+#~ msgstr "غير معروف"
+
+#~ msgid "Select a module or write his name:"
+#~ msgstr "اختار الوحدة أو اكتب اسمها:"
+
+#~ msgid "Category"
+#~ msgstr "صنف"
+
+#~ msgid "preload module"
+#~ msgstr "وحدة ما قبل التحميل"
+
+#~ msgid "click on a category"
+#~ msgstr "اضغط على الصنف"
+
+#~ msgid "Remove"
+#~ msgstr "محو"
+
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "اداة لتجهيز قرص مرن لبدء النظام"
-#~ msgid "Use \"New\""
-#~ msgstr "استخدم \"جديد\""
+#~ msgid "Show expert mode"
+#~ msgstr "اظهار اسلوب المحترف"
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "اذا لم تتضمن القائمة المدخل المطلوب, قم بإدخاله هنا:"
+#~ msgid "modules"
+#~ msgstr "وحدات"
-#~ msgid "Shared resource"
-#~ msgstr "مصدر مشترك"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "صانع القرص لبدء النظام. لم يزل فى مرحلة مبكرة.\n"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index fb71a4b28..502ff3346 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -1,11 +1,13 @@
-# Azerbaijani Turkish translation of DrakX
-# Copyright (C) 1999 MandrakeSof
-# Vasif Ismailoglu MD <azerb_linux@hotmail.com>, 2000
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 MandrakeSoft
+# Vasif Ismailoglu MD<azerb_linux@hotmail.com> , 2000-2001
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-06-09 23:30GMT +0200\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+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"
"MIME-Version: 1.0\n"
@@ -13,24 +15,56 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Bütün başlıqları ayrı ayrı quraşdır"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama ifadələrini işlət"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Təkcə \"%s\" kartını qur (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+#, fuzzy
+msgid "64 MB or more"
+msgstr "16 MB və ya daha çox"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Bir X vericisi seçin"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X verici"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Çoxlu Başlıq quraşdırılması"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -38,43 +72,44 @@ msgstr ""
"Sizin sisteminiz çoxlu başlıq quraşdırmasını dəstəkləyir.\n"
"Nə etmək istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Ekran kartÄą"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Ekran kartĹnĹzĹ seçin"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree quraşdırılması"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Bir X vericisi seçin"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X verici"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Bütün başlıqları ayrı ayrı quraşdır"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Bir X vericisi seçin"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Xinerama ifadələrini işlət"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X verici"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Təkcə \"%s\" kartını qur (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,32 +121,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."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, 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."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-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."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, 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"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,31 +145,58 @@ 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."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
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."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree quraşdırılması"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "X verici üçün seçənəkləri göstərin"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Mövcud qurğuları saxlayım?\n"
+"Hal-hazırkı qurğular:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Monitorunuzu seçin"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "XĂźsusi"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Ümumi"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Geri al"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,512 +214,326 @@ msgstr ""
"seçməməyiniz çox vacibdir, əks halda monitor zərər görər.\n"
"Seçərkən bir qərarsızlığa düşərsəniz, alçaq rezolyusiya seçin."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Üfüqi yeniləmə sür'əti"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Şaquli yeniləmə sür'əti"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor qurulmayÄąb"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ekran kartı hələ qurulmayıb"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezolyusiya hələ seçilməyib"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlükəlidir"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Qurğuların sınağı"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 rəng (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"bə'zi parametrləri dəyişdirin"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 min rəng (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Bir xəta oldu:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 min rəng (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d saniyə sonra çıxılacaq"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milyon rəng (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Bu qurğular doğrudur?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milyard rəng (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Bir xəta oldu, parametrləri dəyişdirin"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolyusiyalar"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolyusiya"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Rezolyusiya və rəng dərinliyini seçin"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Ekran kartÄą: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 verici: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Daha Çox"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Ləğv et"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Oldu"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Usta Modu"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Hamısını Göstər"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolyusiyalar"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Qurğuların sınağı"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavatura düzülüşü: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Siçan nÜvß: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitorun Şaquli Daraması: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitorun Üfüqi Yeniləməsi: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Ekran kartÄą: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Ekran kartÄą: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Ekran kartı yaddaşı: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Rəng dərinliyi: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolyusiya: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 verici: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sĂźrĂźcĂź: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window qurğuları hazırlanır"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Nə etmək istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitoru Dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ekran kartını dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verici seçənəklərini dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Rezolyusiyanı Dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mə'lumatı göstər"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Yenidən sına"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Çıx"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Mövcud qurğuları saxlayım?\n"
-"Hal-hazırkı qurğular:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ilə Açılış"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
"Açılışda X Window ilə başlamaq istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:1610
-#, 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"
-
-#: ../../Xconfigurator.pm_.c:1625
-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"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 rəng (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 min rəng (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 min rəng (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milyon rəng (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyard rəng (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB və ya daha çox"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standart VGA, 60 Hz-də 640x480 "
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 56 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Uyğun, 87 Hz-də titrəşimli 1024x768 (800x600 yox)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 87 Hz-də titrəşimli 1024x768, 56 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Təkmilləşdirilmiş Super VGA, 60 Hz-də 800x600, 72 Hz-də 640x480"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Titrəşimsiz SVGA, 60 Hz-də 1024x768, 72 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Yüksək Frekanslı SVGA, 70 Hz-də 1024x768"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Çoxlu Frekansa qadir 60 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Çoxlu Frekansa qadir 74 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Çoxlu Frekansa qadir 76 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "70 Hz də 1600x1200 qadir Monitor"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "76 Hz də 1600x1200 qadir Monitor"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Açılış qisminin ilk sektoru"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Qurulumu"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grup Qurulumu"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "Mətn menyulu LILO"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "Qrafiki menyulu LILO"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "DOS/Wİndowsdan açĹl (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Sistem yükləyicisi ana seçənəkləri"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Açılış yükləyici quruluşu"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (köhnə BIOSlarda işləməz)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Bəsit"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "bəsit"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Ekran modu"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Parol (təkrar)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Əmr sətiri seçənəklərini məhdudlaşdır"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "məhdudlaşdır"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "/tmp-i hər açılışda təmizlə"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ümumi yaddaş miqdarı (%d MB tapıldı)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Birdən artıq profilə icazə ver"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Yaddaş miqdarını Mb cinsindən verin"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"``Əmr sətiri seçənəklərini məhdudlaşdır`` seçənəyi parolsuz bir işə yaramaz"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Ä°nit Ä°smarÄącÄą"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Firmware Gecikməsini Aç"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Çəkirdək Açılışı Vaxt Dolması"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "CDdən Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "OF Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Əsas OS"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -681,83 +542,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
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:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Əlavə et"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "QurtardÄą"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Təkmilləşdir"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Ne cür bir giriş istəyirsiniz?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linuks"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Digər sistemlər (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Digər sistemlər (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Əks"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "KĂśk"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Sonuna əlavə et"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Cədvəl"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "E'tibarsÄąz"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Əsas"
@@ -790,53 +651,75 @@ msgstr "Bir swap sahəsinə ehtiyacınız var"
msgid "This label is already used"
msgstr "Bu etiket istifadə edilməz"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ara ĂźzĂź tapÄąldÄą"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Başqa var?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara ßzß var?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Bəli"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
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:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) üçün sürücü yüklənir"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
+"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
+"Məsələn ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modul seçənəkləri:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "HansÄą %s sĂźrĂźcĂźsĂź sÄąnansÄąn?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -853,37 +736,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:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Seçənəkləri göstər"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
-"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
-"Məsələn ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modul seçənəkləri:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -892,51 +753,56 @@ msgstr ""
"%s modulunun yüklənməsi iflas etdi.\n"
"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Xahiş edirik bir istifadəçi adı alın"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
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:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Bu istifadəçi adı artıq vardır"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "İstifadəçini əlavə et"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -945,32 +811,32 @@ msgstr ""
"Bir istifadəçi girin\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "İstifadəçini qəbul et"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Həqiqi adı"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "İstifadəçi adı"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "QabÄąq"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -979,123 +845,103 @@ msgstr ""
"Kompüterinizi avtomatik olaraq bir istifadəçi ilə başlada bilərəm.\n"
"İstəmirsiniz isə rədd edin."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "HamÄąsÄą"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "İstifadəçi əlavə et"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "XĂźsusi"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS başlayır"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, 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:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ləğv et"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Krakerlərə xoşgəlmişsiniz"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Zəif"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Yüksək"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Yüksək"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Şübhəci"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1106,7 +952,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:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1114,7 +960,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:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1123,62 +969,63 @@ 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:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
"mĂźmkĂźndĂźr. \n"
"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:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Biz dördüncü səviyyə haqlarını verdik və sistem xarici bağlantılara qarşı "
"tamamilə qapalıdır.\n"
"Təhlükəsizlik səviyyəsi indi ən üstdədir."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Təhlükəsizlik səviyyəsini seçin"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1203,7 +1050,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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
@@ -1217,7 +1064,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:931
+#: ../../bootloader.pm_.c:915
#, 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"
@@ -1232,7 +1079,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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1246,7 +1093,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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1261,27 +1108,27 @@ 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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Masa Üstü"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Başlama Menyusu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
@@ -1294,17 +1141,21 @@ msgstr "hələlik yardım sistemi mövcud deyildir.\n"
msgid "Boot Style Configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fayl"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Fayl/Çı_x"
+msgstr "/Fayl/_Çıx"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>x"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1337,14 +1188,14 @@ msgstr "Yaboot modu"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
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:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Qur"
@@ -1354,7 +1205,7 @@ msgid "System mode"
msgstr "Sistem modu"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Açılışda X-Window sistemini başlat"
#: ../../bootlook.pm_.c:148
@@ -1366,14 +1217,16 @@ 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:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Oldu"
@@ -1422,7 +1275,7 @@ msgstr "Artıq bölmə əlavə edilə bilməz"
msgid "Screenshots will be available after install in %s"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "FransÄązca"
@@ -1431,7 +1284,7 @@ msgstr "FransÄązca"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belçika dili"
@@ -1460,11 +1313,12 @@ msgstr "Norveçcə"
msgid "Sweden"
msgstr "İsveçcə"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Ä°talyanca"
@@ -1474,7 +1328,7 @@ msgstr "Ä°talyanca"
msgid "Austria"
msgstr "serial"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1482,8 +1336,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Əvvəlcə datanızın yedəyini alın"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Diqqətlə Oxuyun!"
@@ -1496,11 +1350,12 @@ msgstr ""
"Aboot istifadə etməyi istəyirsinizsə, boş disk sahəsi (2048 sektor bəsdir.)\n"
"buraxmayÄą unutmayÄąn."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Xəta"
@@ -1508,11 +1363,11 @@ msgstr "Xəta"
msgid "Wizard"
msgstr "Sehirbaz"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1525,78 +1380,78 @@ msgstr ""
"tövsiyə edirik. Əvvəlcə bölmənin üstünə, sonra \"Böyüklüyü\n"
"Dəyişdir\" düyməsinə tıqlayın"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Ətraflı"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "bağlama iflas etdi"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Boş"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Digər"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Fayl sistemi nĂśvĂź:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Yarat"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "NĂśv"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Yerinə ``%s'' işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Sil"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Əvvəlcə ``Ayır'-ı işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1604,106 +1459,111 @@ msgstr ""
"%s bölməsinin növünü dəyişdirdikdən sonra, bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Usta moduna keç"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Normal moda keç"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Geri al"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Davam edilsin?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Qeyd etmədən Çıx"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Avtomatik ayÄąr"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Hamısını təmizlə"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Daha Çox"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Sabit disk seçkisi"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Bütün birinci bölmələr istifadədədir"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Artıq bölmə yaratmaq üçün, bir bölməni silib məntiqi bölmə yaradın"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Bölmə cədvəlini yaz"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Fayl seç"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1711,11 +1571,11 @@ 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:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Xəbərdarlıq"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1723,124 +1583,131 @@ msgstr ""
"Disket sürücüyə bir disket yerləşdirin\n"
"Bu disketdəki bütün mə'lumatlar yox olacaqdır"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Mə'lumatı göstər"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../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/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Seçənəklər"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Böyüklüyünü Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Daşı"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Şəkilləndir"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Bağla"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "RAIDə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "LVMə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "AyÄąr"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "RAIDdən ayır"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "LVMdən ayır"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "RAIDi dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Loopback üçün istifadə et"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Başlanğıç sektoru: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Fayl sistemi nĂśvĂź: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Xüsusiyyətlər: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Bölmə növünü Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hansı dili istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1849,132 +1716,139 @@ msgstr ""
"nöqtəsindən ayrıla bilinmir.\n"
"Əvvəlcə loopback-ı ləğv edin."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Fat fayl sistemi uclarÄą hesaplanÄąr"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Böyüklüyü dəyişdirilir"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Hansı bölmə növünü istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Bu bölmədəki bütün mə'lumatlar yedəklənməlidir"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi böyüklüyü dəyişdirildirkdən sonra bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Yeni bÜyßklßk seçin"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Hansı diskə daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Daşınır"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Bölmə daşınır..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Əlavə etmək üçün mövcud bir RAID seçin"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "yeni"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Əlavə etmək üçün mövcud bir LVM seçin"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM adÄą?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Bu disk bölməsi loopback üçün işlədilməz"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback fayl adÄą: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Həqiqi adı"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Fayl başqa bir loopback tərəfindən istifadədədir, başqa\n"
"birini seçin"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Fayl onsuz da vardır. İşlədilsin?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Modul seçənəkləri:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "avadanlÄąq"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "səviyyə"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "parça bÜyßklßyß"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Diqqətlı olun: bu əməliyyat təhlükəlidir."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Nəcə bölməlandirmə istəyirsən?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Bu paket yenilənməlidir\n"
+"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1986,7 +1860,7 @@ msgstr ""
"ehtiyacınız yoxdur və ya LILO istifadəsini sınayarsınız, ancaq LILO işləməyə "
"bilər."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1998,7 +1872,7 @@ msgstr ""
"istəyirsinizsə, \n"
"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2009,132 +1883,132 @@ msgstr ""
"Əgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bölməsi\n"
"əlavə etməyi unutmayın"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sürücüsünün bölmə cədvəli diskə yazılacaq!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni qurğuların fəallaşmağı üçün sistemi yenidən başlatmalısınız"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Şəkilləndirilir"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Şəkilləndirilən bölmə: %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid iflas etdi"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Rezolyusiya: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "AvadanlÄąq: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sürücü hərfi: %s (sadəcə təxmini)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "NĂśv: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ad: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Başlanğıc: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "BĂśyĂźklĂźyĂź: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d -dən silindr %d-yə\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Şəkilləndirilmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Şəkilləndirilməmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Bağlı\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2143,7 +2017,7 @@ msgstr ""
"Loopback faylÄą:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2151,27 +2025,27 @@ msgstr ""
"Ana açılma bölməsi\n"
" (MS-DOS açılışı üçün)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Səviyyə %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Parça bÜyßklßyß %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faylÄą adÄą: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2182,7 +2056,7 @@ msgstr ""
"Bəlkə də bu bir Sürücü bölməsidir.\n"
"Onda bunu ele beləcə buraxın.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2193,64 +2067,64 @@ msgstr ""
"Bu, ikili açılış üçün xüsusi\n"
"Bootstrap-dÄąr.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "BĂśyĂźklĂźk: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Mə'lumat: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölmə cədvəli növü: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "%d data yolunda, %d nĂś'li\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Seçənəklər: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Fayl sistemi nĂśvĂź: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2261,36 +2135,66 @@ msgstr "Bölmə növünü Dəyişdir"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "TanÄątma"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Ä°nternet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "İstifadəçi adı"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "İstifadəçi adı"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS sahəsi"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, 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:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
@@ -2307,69 +2211,323 @@ msgstr ""
msgid "server"
msgstr "verici"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB dən kiçik disk bölmələrində JFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB dən kiçik disk bölmələrində ReiserFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nöqtəsi %s olan bir bölmə var\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
"ehtiyac vardÄąr.\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləşdirmə üçün boş sahə yoxdur"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Heç disk bölməniz yoxdur!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Avtomatik təsbit işlət"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ümumi"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kart mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Şəkilləndirilir"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Bölmə növünü Dəyişdir"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Çıx"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Kömək"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Kömək"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Kömək/_Haqqında..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Siçan"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kart mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Ləğv et"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Siçan"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Ä°zah"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "TanÄątma"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Fayl seç"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Keçit avadanlığı"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 düyməli"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Sabit disk seçkisi"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Avadanlıq mə'lumatına bax"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mə'lumatı göstər"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Siçan qurğuları"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "%s qapÄąsÄąnda tapÄąldÄą"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d saniyə sonra çıxılacaq"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Avtomatik yoxla"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2383,7 +2541,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2488,9 +2646,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2681,7 +2838,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2693,9 +2850,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2742,21 +2898,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2772,9 +2927,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Bu nöqtədə Linuks Mandrakeni sabit diskinizdə haraya quracağınıza\n"
"qərar verəcəksiniz. Əgər diskiniz boş isə və ya bir başqa sistem\n"
@@ -2843,9 +2998,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2991,38 +3145,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3196,11 +3344,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3253,7 +3401,7 @@ msgstr ""
" çıxa bilmək çox zəhmətli olur. Ona görə də nə etdiyinizi bilirsəniz, bu "
"sinifi seçin."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3268,7 +3416,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3283,7 +3431,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3299,7 +3447,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3308,23 +3456,23 @@ msgstr ""
"Xahiş edirik doğru qapını seçin. Məsələn, MS Windowsdakı COM1'in qarşılığı\n"
"Linuksda ttyS0'dÄąr."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3346,7 +3494,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3368,7 +3516,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3376,7 +3524,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3397,7 +3545,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3419,7 +3567,7 @@ msgstr ""
"bilərlər.\n"
"Parametrlər mövzusunda diqqətli olun."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3431,29 +3579,28 @@ msgstr ""
"\n"
"Nə etdiyinizi bilmirsinizsə, \"Diskin ilk sektoru (MBR)\" seçin."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3462,7 +3609,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3488,7 +3635,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX PCI SCSI adapterleri axtarmağa cəhd edəcək. Əgə DrakX SCSI\n"
@@ -3517,7 +3664,7 @@ msgstr ""
"ya da Microsoft Windowsdan (Əgər sisteminizdə qurulu isə)\n"
"mə'lumat alın."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3528,9 +3675,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3542,7 +3688,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3632,7 +3778,7 @@ msgstr ""
"TAB ilə açılış seçkilərinə baxdığınız vaxt \n"
"'*' işarətilə işıqlandırılacaqdır."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3660,9 +3806,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3710,10 +3855,10 @@ msgstr ""
" - Ana OS: OF gecikməsi müddəti dolduğu vaxt hansı OSnin açılacağını "
"göstərir."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3721,12 +3866,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3742,7 +3886,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3753,7 +3897,7 @@ msgstr ""
"Diqqətli olun, sürücüdəki bütün mə'lumatlar silinəcək\n"
"və geri gəlməyəcək."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3773,7 +3917,7 @@ msgstr ""
"Bölmədəki mə'lumatları qoruyaraq \"Ləğv et\" düyməsinə\n"
"əməliyyatı ləğv edə bilərsiniz."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3781,12 +3925,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3810,20 +3954,20 @@ msgstr ""
"\n"
"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, 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:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT şəklində deyildir"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3831,7 +3975,7 @@ msgstr ""
"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
"defcfg=floppy''ilə başladın."
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "%s faylı oxunurkan xəta oldu"
@@ -3863,67 +4007,67 @@ msgstr "Bir swap sahəsinə ehtiyacınız var"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Bir swap sahəniz yoxdur\n"
"Davam edim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Boş sahəni istifadə et"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Var olan bölmələri işlədimmi"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Bölmə cədvəli qurtarılmağa çalışılır"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Loopback üçün Windows bölməsini işlət"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Linuks4Win'i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Böyüklüklərini seçin"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Kök (root) bölməsi böyüklüyü (Mb): "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Swap sahəsi böyüklüyü (Mb): "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Windows bölməsindəki boş sahəni işlət"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Hansı bölmənin böyüklüyünü dəyişdirəcəksiniz?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Fat fayl sistemi uclarÄą hesaplanÄąr"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3932,13 +4076,16 @@ msgstr ""
"FAT tədqiqatçımız sizin bölümləri işlədə bilmir,\n"
"bu xəta oldu: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Sizin Windows bölümü çox dağınıqdır. Daxiş edirik, əvvəlcə birləşdirin "
"(defraq)"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3958,56 +4105,56 @@ msgstr ""
"ArdÄąndan quruluma \n"
"davam edin. Verilərinizin yedəyini almağı da unutmayın!"
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "bölmə %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT böyüklüyü dəyişdirilməsi bacarılmadı: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr "FAT bölməsi yoxdur ya da loopback üçün lazımi yer buraxılmayıb"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "BĂźtĂźn diski sil"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "\"Windows\"u sil"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
"edəcəksiniz?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"%s bölüməsinin böyüklüyü dəyişdirildikdən sonra bu bölmədəki bütün "
"mə'lumatlar silinəcəkdir"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Hazırkı disk bölmələndirməsi"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Fdisk istifadə et"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4016,11 +4163,11 @@ msgstr ""
"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Heç Windows disk bölməniz yoxdur!"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Artıq bölmə əlavə edilə bilməz"
@@ -4028,16 +4175,16 @@ msgstr "Artıq bölmə əlavə edilə bilməz"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX bölmə sehirbazı bu yolu tapdı:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Bölmə cədvəli növü: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Şəbəkə fəallaşdırılır"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Şəbəkə dayandırılır"
@@ -4049,12 +4196,12 @@ msgstr ""
"Bir xəta oldu, fəqət necə düzəldiləcəyini bilmirəm.\n"
"Davam edin, riski sizə aitdir!"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s bağlama nöqtəsini çoxalt"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4066,12 +4213,12 @@ msgstr ""
"Əvvəldən Linuks qurulu bir sistemdə \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
"istifadə edərək Cd-Rom'u yoxlayın.\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoşgəlmişsiniz"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Disket sĂźrĂźcĂź yoxdur"
@@ -4081,9 +4228,9 @@ msgstr "Disket sĂźrĂźcĂź yoxdur"
msgid "Entering step `%s'\n"
msgstr "Başlanğıc addımı `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4094,198 +4241,156 @@ msgstr ""
"dəCDROMdan başlatdığınız zaman,\n"
" 'F1'ə basın və 'text' yazaraq enter'ə basın."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Qurulum Sinifi"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
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:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Seçdiyiniz paket qruplarının ümumi böyüklüyü təximən %d MBdır.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Bu böyüklükdən daha azını yükləmək istəsəniz,\n"
-"qurmaq istədiyiniz paket faizini seçin.\n"
-"100%%'i seçərsəniz bütün paketlər qurulacaqdır."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sabit diskinizdə bu paketlərin sadəcə olaraq %d%%'sini quracaq qədər yer "
-"var.\n"
-"Bundan daha azını qurmaq istəsəniz,\n"
-"daha az bir faiz sadəcə ən vacib paketləri ;\n"
-"%d%% isə qurula biləcək bütün paketləri quracaqdır."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Sonrakı addımda daha geniş bir seçki qabağınıza gələcəkdir."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Qurulacaq paketlərin faizi"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ümumi böyüklük: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Xətalı paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ad: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Buraxılış: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "BĂśyĂźklĂźyĂź: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Əhəmiyyət: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Avtomatik seçili paketləri göstər"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Qurulum"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Qurulumdan çĹx"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Qurulur"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Təxmini olaraq hesaplanır"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Qalan müddət"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "%s paketi qurulur"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Qəbul Et"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rədd Et"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4299,17 +4404,17 @@ msgstr ""
"\"%s\" adlı Cd-Romu sürücünüzə taxın və OLDU'ya basın.\n"
"Əgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq üçün İMTİNA ET'ə basın."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Paketlər qurulurkən bir xəta oldu:"
@@ -4382,11 +4487,11 @@ msgstr "Bir xəta oldu"
msgid "Do you really want to leave the installation?"
msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisenziya sözləşməsi"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4401,7 +4506,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4519,7 +4624,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4624,113 +4729,117 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klaviatura"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "BĂźtĂźn mĂśvcud klaviaturalarÄąn siyahÄąsÄą"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Hansı qurulum sinifini istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Qurulum/Güncəlləmə"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Bu bir qurulum mu, yoxsa güncəlləməmidir?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Tövsiyə edilən"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Usta"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Güncəlləmə"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Siçan QapĹsĹ"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Düymə emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Düymə 2 emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Düymə 3 emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kartlar qurulur..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE qapÄąlarÄą qurulur"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "uyğun bölmə tapılmadı"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Bağlama nöqtələri üçün bölmələr daranır"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Bağlama nöqtələrini seçin"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4744,7 +4853,7 @@ msgstr ""
"\n"
"Bütün bölmələri itirmək istəyirsiniz?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4752,139 +4861,142 @@ msgstr ""
"DiskDrake bölmə cədvəlini oxumağı bacara bilmədi.\n"
"Özünüz davam edə bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Kök (root) Bölməsi"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Sisteminizin kök (/) bölməsi hansıdır?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bölmə cəvəlindəki dəyişikliklərin daxil olması üçün kompüterinizi yenidən "
"başlatmalısınız."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Xətalı bloklar sınansınmı?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Bölmələr şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s faylı yaradılır və şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik əlavə edin"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Mövcud olan paketlər axtarılır."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Güncəllənəcək paketlar tapılır"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Sisteminizdə qurulum ya da güncəlləmə üçün lazımi boş yer yoxdur(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "HamÄąsÄą (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ən az (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Tövsiyə edilən (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
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:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4895,16 +5007,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:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlÄą Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Qurulum hazÄąrlanÄąr"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4913,23 +5025,23 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, 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:854
+#: ../../install_steps_interactive.pm_.c:844
#, 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:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4997,166 +5109,197 @@ msgstr ""
"USA\n"
"ĂźnvanÄąna yazÄąnÄąz."
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+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:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Çap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Başqa var?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Mündəricat"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartÄą"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Səs kartı"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartÄą"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "NIS istifadə et"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "\"Windows\"u sil"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Yerli Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+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:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "TanÄątma"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "TanÄątma"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "TanÄątma"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS sahəsi"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS Verici"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5187,19 +5330,19 @@ msgstr ""
"yerləşdirin\n"
"və \"OLDU\" basın."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Ä°lk disket sĂźrĂźcĂź"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Ä°kinci disket sĂźrĂźcĂź"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Nəzərə Alma"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5229,7 +5372,7 @@ msgstr ""
"və \"OLDU\" basın.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5238,28 +5381,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bağışlayın, disket sürücü yoxdur"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
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:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, 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:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Açılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5267,11 +5410,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5279,16 +5422,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:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yükləyicini qur"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
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:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5305,18 +5448,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:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, 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:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazÄąrlanÄąr"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5326,8 +5468,8 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1337
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1332
+#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5338,7 +5480,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5352,11 +5494,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:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazÄąrlanÄąr"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5370,15 +5516,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Avtomatlaşdırılmış"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Təkrarla"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5406,421 +5552,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Monitorunuzu seçin"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Ətraflı"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Mə'lumat"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ağacı Aç"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Ağacı Qapat"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Otaq və grup sıralaması arasında gəz"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Xətalı tərcih, təkrar sınayın\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Seçənəklər: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Çex dili (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Almanca"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Ä°spanca"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fincə"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "FransÄązca"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norveçcə"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polyakca"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusca"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "İsveçcə"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Ä°ngiliz (UK) klaviaturasÄą"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Amerikan (US) klaviaturasÄą"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Ermenicə (köhnə) "
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Ermenicə (yazı maşını)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azərbaycanca (latın)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belçika dili"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulqarca"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilya dili (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusca"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "İsveçcə (Alman sırası)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "İsveçcə (Fransız sırası)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Çex dili (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Almanca (ölü düymələr olmasın)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danimarka dili"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveçcə)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "GĂźrcĂź dili (\"Rus\" sÄąrasÄą)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "GĂźrcĂź dili (\"LatÄąn\" sÄąrasÄą)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Yunanca"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Macarca"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "XÄąrvatca"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Ä°srail"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Ä°srail (Fonetik)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Ä°zlandiya dili"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Ä°talyanca"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Yaponca 106 düyməli"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreya klaviaturasÄą"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "LatÄąn Amerika dili"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litvaniya dili AZERTY (köhnə)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanya dili AZERTY (yeni)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanya dili \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanya dili \"Fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Yeri"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedoniya dili"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandiya dili"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polyakca (QWERTY sÄąrasÄą)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polyakca (QWERTZ sÄąrasÄą)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portuqalca"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "FransÄązca (Kanada/Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovencə"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakca (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakca (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azərbaycanca (kiril)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Cədvəl"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Türkcə (ənənəvi \"F\" klaviatura)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Türkcə (müasir \"Q\" klaviatura)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrayna dili"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vyetnam dili \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Yugoslavca (latÄąn/kiril)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5833,7 +5963,31 @@ msgstr "Dairəvi bağlama %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Məntiqi ciltləri birinci olaraq sil\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefon nömrəsi"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Bölmə şəkilləndirilməsi"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5874,10 +6028,6 @@ msgstr "1 düymə"
msgid "Generic 2 Button Mouse"
msgstr "Sıravi 2 Düyməli Siçan"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ümumi"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Çərx"
@@ -5942,38 +6092,54 @@ msgstr "heç biri"
msgid "No mouse"
msgstr "SiçansĹzs"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "TƏKƏRİ OYNADIN!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Qurtar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "SonrakÄą ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Əvvəlki"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Doğrudur?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Mə'lumat"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Ağacı Aç"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Ağacı Qapat"
+
+#: ../../my_gtk.pm_.c:1143
+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
msgid "Connect to the Internet"
msgstr "İnternetə bağlan"
@@ -6020,7 +6186,7 @@ msgstr ""
"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
"Bu bağlantı şəklini qura bilmərəm."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Şəbəkə ara üzünü seçin"
@@ -6033,7 +6199,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:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Şəbəkə Qurğuları"
@@ -6048,15 +6214,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:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Ev sahibi adÄą"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Şəbəkə Quraşdırılması Sehirbazı"
@@ -6104,7 +6270,7 @@ msgstr "ISDN quraşdırılması"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"İnternet xidmət vericinizi seçin.\n"
"Siyahıda deyilsə Siyahıda deyil'i seçin."
@@ -6127,14 +6293,14 @@ msgstr "BĂźtĂźn dĂźnya"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"BĂźtĂźn dĂźnya \n"
" D-Channel'lə xaric (kiralıq xətlər)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
#: ../../network/isdn.pm_.c:199
@@ -6158,7 +6324,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"ISA kartınız var isə sonrakı ekrandakı qiymətlər doğru olmalıdır.\n"
@@ -6174,13 +6341,13 @@ msgid "Continue"
msgstr "Davam et"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "HansÄąsÄą sizin ISDN kartÄąnÄązdÄąr?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
"kartlardan birini seçin."
@@ -6197,47 +6364,47 @@ msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
msgid "Dialup options"
msgstr "Çevirməli şəbəkə seçənəkləri"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Bağlantı adı"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefon nömrəsi"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Giriş adı"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skript əsaslı"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal əsaslı"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Sahə(domain) adı"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Birinci DNS Vericisi (arzuya görə)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "İkinci DNS Vericisi (arzuya görə)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6246,7 +6413,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:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6254,11 +6421,11 @@ msgstr ""
"\n"
"Bağlantınızı yenidən quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Artıq İnternetə bağlısınız."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6266,28 +6433,28 @@ msgstr ""
"\n"
"İstəsəniz İnternetə bağlana bilərsiniz ya da yeniden quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Hələ İnternetə bağlı deyilsiniz."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Bağlan"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Bağlantını kəs"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Şəbəkəni qur"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "İnternet bağlantısı & quraşdırılması"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
@@ -6295,7 +6462,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:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6310,12 +6477,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:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6326,9 +6493,9 @@ 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:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6338,93 +6505,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:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Qurulacaq profili seçin"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Usta Modu"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "AvadanlÄąqlar tanÄąnÄąr..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normal modem təsbiti"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "%s qapÄąsÄąnda tapÄąldÄą"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN Bağlantısı"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s tapÄąldÄą"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "%s ara üzündə tapıldı"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "eternet kart tapÄąldÄą"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
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:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
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:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6435,7 +6608,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6445,7 +6618,7 @@ msgstr ""
"\n"
"Qurğular indi sisteminizə əlavə ediləcək.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6453,16 +6626,16 @@ 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:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6472,45 +6645,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:297
+#: ../../network/network.pm_.c:298
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:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "%s şəbəkə avadanlığı qurulur"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (sĂźrĂźcĂź %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP ĂźnvanÄą"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Avtomatlaşdırılmış IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Açılışda başladılır"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
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:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6521,64 +6699,64 @@ 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:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraşdırılması"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP vəkil verici"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Vəkil verici ftp://... olmalıdır."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "İnternet qurğuları"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "İnternete girişi indi sınamaq istəyirsiniz?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Bağlantınız sınanır..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "İnternetə artıq bağlısınız"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Təhlükəsizlik səbəbi ilə indi bağlantı qopacaqdır."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6586,115 +6764,120 @@ msgstr ""
"Sisteminiz İnternetə bağlı deyil.\n"
"Bağlantını yenidən quraşdırın"
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Bağlantı quraşdırılması"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Xahiş edirik aşağıdakıları doldurun ya da seçin"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kart IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kart mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kart IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kart IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kart IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Sizin şəxsi telefon nömrəniz"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "İXM telefon nömrəsi"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns xidmətcisi 1 (arzuya görə)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns xidmətcisi 2 (arzuya görə)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "KlaviaturanĹzĹ seçin"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Yığma modu"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Bağlantı növü:"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Bağlantı növü:"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Hesab Girişi (istifadəçi adı)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Hesap Parolu"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "bağlama iflas etdi: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Bu platformda genişlədilmiş bölmələr dəstəklənmir"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Bölmə cədvəlinizdə bir boşluq var, amma o da işlədilə bilməz.\n"
"Bu boşluğu, birinci bölmənizi en yaxınındakı genişlədilmiş bölməyə "
"daşıyaraq\n"
"məsələni həll edə bilərsiniz."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s faylından qurtarılışda xəta: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6704,194 +6887,194 @@ msgstr ""
"DatanÄąn bĂźtĂśvlĂźyĂź yoxlamasÄą bacarÄąlmadÄą. \n"
"Bu o demekdir ki diskə yazılan hər şey təsadüfi olacaqdır"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "alÄąnmalÄą"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "vacib"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "əla"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "gözəl"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "bəlkə"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Uzaq çap edici vericisi(lpd)"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Şəbəkə Çap Edicisi (soket) "
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Çap Edici Vericisi"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS verici IP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Əsas)"
@@ -6914,12 +7097,12 @@ msgstr ""
"Buradakı hər çap edici avtomatik tapılacaqdır.\n"
"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Uzaq CUPS vericisi"
@@ -6950,7 +7133,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
@@ -6959,7 +7142,7 @@ msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
msgid "CUPS server IP"
msgstr "CUPS verici IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "QapÄą"
@@ -6968,22 +7151,13 @@ msgstr "QapÄą"
msgid "Automatic CUPS configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "AvadanlÄąqlar tanÄąnÄąr..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "QapÄąlarÄą sÄąna"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6996,14 +7170,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7021,12 +7195,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7040,11 +7214,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7054,35 +7228,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "QapÄąlarÄą sÄąna"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tapÄąldÄą"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7090,43 +7268,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7134,7 +7312,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7142,73 +7320,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Quraşdırma"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "%s paketi qurulur"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7218,31 +7406,31 @@ msgstr ""
"çap edicinin bağlı olduğu çap edici vericisinin adını və növbə \n"
"adınını verməlisiniz."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "UzaqdakÄą ev sahibi adÄą"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "UzaqdakÄą ev sahibi adÄą"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "UzaqdakÄą ev sahibi adÄą"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7255,35 +7443,35 @@ msgstr ""
"IP ünvanı, çap edicinin paylaşdırma adı, işləmə grupu, istifadəçi adı və \n"
"parol verilməlidir."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB verici adÄą"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB verici IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Paylaşdırma adı"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "İş qrupu"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7307,7 +7495,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7316,7 +7504,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7324,11 +7512,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7340,28 +7528,28 @@ msgstr ""
"edici \n"
"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Çap Edici Vericisi"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Çap Edici Növbə Adı"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Soket Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7372,60 +7560,56 @@ msgstr ""
"Soket çap edicidən yekun almaq üçün, çap edicinin ev sahibi adını ve "
"mümkünsə, qapısının nömrəsini verməlisiniz."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Çap edici adı"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Ä°zah"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Yeri"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7440,28 +7624,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Doğrudur?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Nə cür bir çap ediciniz var?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7470,18 +7654,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7491,12 +7675,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7504,7 +7688,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7517,7 +7701,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7527,34 +7711,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Çap edicini sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "QapÄąlarÄą sÄąna"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7562,45 +7746,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Bəli, hər iki sınaq səhifəsini də çap et"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Çap Edici"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Standart"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7616,7 +7800,7 @@ msgstr ""
"\n"
"Düz mü işləyir?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7626,16 +7810,16 @@ msgstr ""
"Çap edicinin işləməsi üçün bir az vaxt keçər.\n"
"Düz mü işləyir?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7644,15 +7828,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7661,49 +7845,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7713,7 +7897,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7722,30 +7906,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Qapat"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Şəbəkə dayandırılır"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Qapat"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7753,38 +7948,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7794,51 +7989,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7846,61 +8041,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Çap edici adı təkcə hərf, rəqəm və alt xətt daxil edə bilər"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Bağlantınız başladılır..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor qurulmayÄąb"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7908,12 +8103,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Şəbəkə Qurğuları"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7923,34 +8118,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Yüksək"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Şübhəci"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7965,12 +8160,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7984,70 +8179,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Bir çap edici qurmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Çap Edici"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8058,7 +8253,7 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8068,139 +8263,143 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normal Mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Çıx"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8284,24 +8483,62 @@ msgstr "Parollar uyğun gəlmir"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Şəkilləndirilmiş RAID md%d-yə disk bölməsi əlavə edilə bilinmədi"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "%s faylına yazıla bilinmədi"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid iflas etdi"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid iflas etdi (raidtools əksik ola bilər mi?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
+"asand\n"
+"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."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
+"mĂźmkĂźndĂźr. \n"
+"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
+"artırılmışdır. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Seçənəklə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"
@@ -8359,7 +8596,7 @@ msgstr ""
"HardDrake texniki tə'minat sınağı aparar və onları bir ön quraşdırmadan "
"keçirər."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8435,7 +8672,7 @@ msgid ""
msgstr ""
"Linuks Virtual Verici, yüksək qabiliyyətli vericilər qurmaq üçün işlədilir."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8514,7 +8751,7 @@ msgstr ""
"bağlantılarını təşkilatlandırır. Portmap vericisi RPC mexanizmini işlədən\n"
"protokollarla xidmət edən kompüterlərdə qurulmalıdır və işlədilməlidir."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8613,7 +8850,7 @@ msgstr "Ä°nternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -8736,6 +8973,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "İdarə Mərkəzi"
@@ -8839,6 +9077,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "%s paketi qurulur"
+#: ../../standalone/XFdrake_.c:131
+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:135
+#, 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"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8847,6 +9094,161 @@ msgstr ""
"Bölmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
"Xəsərli hissələri düzəltməyə cəhd edəcəm"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "İnternet qurğuları"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Databeyz"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Databeyz"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "İstifadəçini əlavə et"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP AlÄącÄąsÄą"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_YardÄąm"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Bağlı deyil"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Sil"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Fayl seç"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "İstifadəçini əlavə et"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP AlÄącÄąsÄą"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Quraşdırılır..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "yenidən quraşdır"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "%s sürücüsünə bir disket taxın"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Disket sĂźrĂźcĂź yoxdur"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8888,6 +9290,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Avtomatik qurulum disketi hazÄąrlanÄąr"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8896,47 +9303,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Təbriklər!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Qurulum"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "İstifadəçi əlavə et"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8944,15 +9344,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8960,709 +9352,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "%s faylı oxunurkan xəta oldu"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, 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:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Çap Edici Bağlantısı Seçin"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, 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:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "NĂśv"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Sabit disk seçkisi"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "İstifadəçi adı"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Siçan avadanlığı: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, 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:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Xahiş edirik siçanınızı seçin"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Yerli Şəbəkə quraşdırılması"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Çap Edici Bağlantısı Seçin"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Digər"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "XĂźsusi"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_YardÄąm"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Əvvəlki"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "SonrakÄą ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Qurulacaq paketləri seçin"
+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:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9694,7 +10149,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9703,7 +10158,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9744,7 +10199,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9772,12 +10227,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -9794,7 +10254,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9834,7 +10294,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9845,7 +10305,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9858,7 +10318,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9902,104 +10362,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s qurulumu iflas etdi. Olan xəta:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsol Vasitələri"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "İdarə Mərkəzi"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Usta"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Siçan"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Uzaq Çap Edici"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Paylaşdırma adı"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Çap Edici"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Şəbəkə Quraşdırılması Sehirbazı"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "TanÄątma"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Paket Qrup Seçkisi"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Qurulumdan çĹx"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "QapÄą"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Şəbəkə quraşdırılması (%d adapter)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Profili sil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Silinəcək profil:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Yeni profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Ev sahibi adÄą:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Ä°nternet imkanÄą"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "NĂśv: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Keçit:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Ara Ăźz"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Hal:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "İnternet keçişini Qur..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Yerli Şəbəkə quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "SĂźrĂźcĂź"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Ara Ăźz"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Hal:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Yerli Şəbəkəni Quraşdır..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Sehirbaz..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Əlavə Et"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Bağlandı"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Bağlı deyil"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Bağlan..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Bağlantını Kəs..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Qurulu ara ĂźzĂźnĂźz yoxdure.\n"
+"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "%s Adapteri: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Açılış Protokolu"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Açılışda başladılır"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP alÄącÄąsÄą"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Fəal"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Fəal"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Heç İnternet bağlantınız yoxdur.\n"
+"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "İnternet bağlantısı quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "İnternet Bağlantısı Quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Bağlantı növü:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametrlər"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Keçit"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Eternet KartÄą"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP AlÄącÄąsÄą"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "istifadə qaydası: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modul adÄą"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "BĂśyĂźklĂźk"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "açılış disketi yaradılması"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "əsas"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy xətası: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "çəyirdək buraxılışı"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Ümumi"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ustaların Sahəsi"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrdin arzuya bağlı olan arqumentləri"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Modul əlavə et"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "zorla"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "lazÄąm olarsa"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "scsi modullarĹ keç"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "raid modullarĹ keç"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Modulu çĹxart"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Nəticə"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Diski yarat"
+
+#: ../../standalone/drakfloppy_.c:422
+#, 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:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"%s avadanlığında medya yoxdur.\n"
+"Xahiş edirik. birini taxın."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Fork edilə bilmir: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"DĂźzgĂźn mkbootdisk aparÄąla bilmir: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "QurtardÄą"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Qurulum hazÄąrlanÄąr"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "məhdudlaşdır"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "məhdudlaşdır"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10008,122 +10896,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Bölmə şəkilləndirilməsi"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Bağlama nöqtəsi"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "İş Yeri"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "DayandÄąr"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Çap Edici"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Sistemi qur"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Fayl seç"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Uzaq Çap Edici"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Ä°nit Ä°smarÄącÄą"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Qurulum"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Qurulumdan çĹx"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10135,31 +11022,31 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "passivləşdir"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "keç"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "yenidən quraşdır"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Vericilər bağlanır..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "İnternet Bağlantısı Bölüşdürülməsi passivləşdirildi"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10171,19 +11058,19 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "fəallaşdır"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Xidmətlər fəallaşdırılır..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10199,21 +11086,21 @@ msgstr ""
"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
"ehtiyacÄąnÄąz var."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ara Üz %s (%s modulu işlədilir)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Ara Ăźz %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10221,11 +11108,11 @@ msgstr ""
"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
"salÄąn."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10240,18 +11127,18 @@ msgstr ""
"\n"
"Yerli Şəbəkə adapterinizi qurmaq üzərəyəm?"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Sizi Yerli Şəbəkəyə bağlayacaq adapteri seçin"
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor qurulmayÄąb"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10261,17 +11148,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "İnternet qurğuları"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10282,7 +11169,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10294,33 +11181,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS verici IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "%s quğusunda dəyəsən bir LAN ünvan çaxışması tapıldı!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10328,20 +11215,20 @@ msgstr ""
"Diqqət! Var olan Firewall qurğusu tapıldı. Yükləmədən sonra bir az əl "
"gəzdirə bilərsiniz."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Quraşdırılır..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər başladılır..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "%s paketi qurulurkən xəta oldu"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10352,23 +11239,23 @@ msgstr ""
"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
"işlədilir."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Quraşdırma artıq qurtarıbdır, amma fəaliyyəti dayandırılıb."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Quraşdırma artıq qurtarıbdır və fəaliyyətdədir."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "İnternet Bağlantısı Bölüşdürmə Quraşdırması aparılmayıb."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "İnternet bağlantısı bölüşdürülməsi quraşdırılması"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10383,213 +11270,6 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Şəbəkə quraşdırılması (%d adapter)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Profili sil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Silinəcək profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Yeni profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Ev sahibi adÄą:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Ä°nternet imkanÄą"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "NĂśv: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Keçit:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Ara Ăźz"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Hal:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "İnternet keçişini Qur..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "SĂźrĂźcĂź"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Ara Ăźz"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Hal:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Yerli Şəbəkəni Quraşdır..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Sehirbaz..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Əlavə Et"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Bağlandı"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Bağlı deyil"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Bağlan..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Bağlantını Kəs..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Qurulu ara ĂźzĂźnĂźz yoxdure.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s Adapteri: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Açılış Protokolu"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Açılışda başladılır"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP alÄącÄąsÄą"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Fəal"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Fəal"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Heç İnternet bağlantınız yoxdur.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "İnternet bağlantısı quraşdırılması"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "İnternet Bağlantısı Quraşdırılması"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Bağlantı növü:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrlər"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Keçit"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Eternet KartÄą"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP AlÄącÄąsÄą"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "İdarə Mərkəzi"
@@ -10598,94 +11278,130 @@ msgstr "İdarə Mərkəzi"
msgid "Choose the tool you want to use"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "FransÄązca (Kanada/Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "FransÄązca"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Ä°zlandiya dili"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "serial"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Paketlər qurulurkən bir xəta oldu:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10729,7 +11445,7 @@ msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10740,11 +11456,11 @@ msgstr "Təkcə bu gününkünü göstər"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/Fayl/_Yeni"
+msgstr "/Fayl/_Təze"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>Y"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10752,7 +11468,7 @@ msgstr "/Fayl/_Aç"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>A"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10760,7 +11476,7 @@ msgstr "/Fayl/_Qeyd Et"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>Q"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
@@ -10778,13 +11494,9 @@ msgstr "/_Seçənəklər"
msgid "/Options/Test"
msgstr "/Seçənəklər/Sınaq"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_YardÄąm"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/YardÄąm/_HaqqÄąnda..."
+msgstr "/Kömək/_Haqqında..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10845,7 +11557,7 @@ msgstr "Təqvim"
msgid "Content of the file"
msgstr "Fayl məzmunu"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10854,80 +11566,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "xahiş edirik, gözləyin, fayl daranır: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache və Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Sahə(domain) adı"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix məktub vericisi, Inn xəbər vericisi"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Verici"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "avadanlÄąq"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Çap Edici Vericisi"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "avadanlÄąq"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Şəkilləndirilir"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Quraşdırma"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Fərqli qeyd et..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_USB avadanlığı tapılmadı\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "3 düymə emulasiyası"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "AvadanlÄąqlar tanÄąnÄąr..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10971,6 +11714,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Firewall quraşdırılması"
@@ -11378,10 +12133,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedya - Səs"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Vasitələr"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Sənədlər"
@@ -11484,10 +12235,6 @@ msgstr ""
"Elektronik məktub və xəbər oxuyucusu (pine, mutt, tin..) və Web səyyahları"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arxivləmə, emulyatorlar, izləmə"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Şəxsi Maliyyə"
@@ -11534,1391 +12281,149 @@ msgstr "Multimedya - CD YandÄąrma"
msgid "Scientific Workstation"
msgstr "Elmi iş stansiyası"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "DayandÄąr"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Choose options for server"
+#~ msgstr "X verici üçün seçənəkləri göstərin"
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "QurtardÄą"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Əsas istifadəçini seçin:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Uzaq Çap Edici"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "İndi %s moduluna parametrlər girə bilərsiniz."
-
-#~ msgid "mount failed"
-#~ msgstr "bağlama iflas etdi"
-
-#~ msgid "Low"
-#~ msgstr "Alçaq"
-
-#~ msgid "Medium"
-#~ msgstr "Orta"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Bu təhlükəsizlik səviyyəsi üçün əlavə olaraq artırılmış təhlükəsizlik "
-#~ "xəbərdarlığı və \n"
-#~ "yoxlama var."
-
-#~ msgid "Boot mode"
-#~ msgstr "Açılış modu"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Usta"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linuks zamanı GMT-yə (Greenwich Mean Time) görə qurğular və olduğunuz \n"
-#~ "yerdəki zamana görə lazımi dəyişiklikləri edər."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "İnternetə bağlantı"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "İnternetə bağlantını kəs"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Şəbəkə (İnternet/LAN) bağlantınızı quraşdırın"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Hansı diskə daşımaq istəyirsiniz?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Mə'lumat"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome iş stansiyası"
-
-#~ msgid "authentification"
-#~ msgstr "tanÄątma"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor qurulmayÄąb"
-#~ msgid "user"
-#~ msgstr "istifadəçi"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache bir World Wide Web vericisidir. HTML faylları və CGI verilməsi "
-#~ "üçün istifadə edilir."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ekran kartı hələ qurulmayıb"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) verici adlarını IP ünvanlarına çevirən\n"
-#~ "Sahə Adı Vericisidir(DNS)."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Rezolyusiya hələ seçilməyib"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Xahiş edirik siçanınızın növünü seçin."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Çıx"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-
-#~ msgid "Active"
-#~ msgstr "Fəal"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Xeyr"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "\"%s\" modelində bir çap edici tapıldı:"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Yerli Çap Edici Avadanlığı"
-
-#~ msgid "Printer Device"
-#~ msgstr "Çap Edici Avadanlığı"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Uzaq CUPS vericisi"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Uzaq CUPS vericisi"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linuks"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistem modu"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Digər"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Klaviatura quruluşunu seçiniz."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "NĂśv: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Xətalı yedəkləmə faylı"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "X qur"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Çap Edici Avadanlığı"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Ləğv et"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Oldu"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Qapat"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Bağlantınız başladılır..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Bağlantınız kəsilir..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "Bağlantı kəsildi. Buna əllə kökdə\n"
-#~ "/etc/sysconfig/şəbəkə-scripts/net_cnx_down\n"
-#~ "əmrini icra edərək nail ola bilərsiniz."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Sistem indi bağlantısını kəsib."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Qurmaq istədiyiniz paketləri seçin"
-
-#~ msgid "Total size: "
-#~ msgstr "HamÄąsÄą: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Xahiş edirik gözləyin, "
-
-#~ msgid "Total time "
-#~ msgstr "Ümumi müddət"
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "X11 qurğuları üçün mövcud qurğulardan istifadə edək?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Çap ediciniz hansı avadanlığa bağlıdır? \n"
-#~ "(/dev/lp0, LPT1'nin qarşılığıdır)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "Diqqət, şəbəkə adapteriniz onsuz da qurulub. Yenidən quracam."
-
-#~ msgid "New"
-#~ msgstr "Yeni"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Uzaqdakı növbə adı"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+#~ "bə'zi parametrləri dəyişdirin"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Qarışıqlıq (%s), daha aydın yazın\n"
+#~ msgid "An error occurred:"
+#~ msgstr "Bir xəta oldu:"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (əsas %s) "
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "%d saniyə sonra çıxılacaq"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Seçkiniz (əsas %s, yoxsa `none' yazın) "
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Bu qurğular doğrudur?"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "/etc/sysconfig/autologin oxunmaq ßçßn açĹla bilmir: %s"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Bir xəta oldu, parametrləri dəyişdirin"
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 verici: %s"
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "RazÄąsÄąnÄąz?"
+#~ msgid "Show all"
+#~ msgstr "Hamısını Göstər"
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Şəbəkə avadanlığını yenidən başlatmalıyam:\n"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window qurğuları hazırlanır"
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "%s avadanlığını yenidən başladacam. Razısınız?"
+#~ msgid "What do you want to do?"
+#~ msgstr "Nə etmək istəyirsiniz?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Başqa bir şəkildə seçilməmiş isə, ümumiyyətlə bu seçki \"/dev/hda\" \n"
-#~ "(Birinci ali IDE disk) ya da \"/dev/sda\" (birinci SCSI disk)\n"
-#~ "olacaqdÄąr."
+#~ msgid "Change Monitor"
+#~ msgstr "Monitoru Dəyişdir"
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Bağlantı növü:"
+#~ msgid "Change Graphics card"
+#~ msgstr "Ekran kartını dəyişdir"
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Əsas istifadəçini seçin:"
+#~ msgid "Change Server options"
+#~ msgstr "Verici seçənəklərini dəyişdir"
-#~ msgid "Test the mouse here."
-#~ msgstr "SiçanĹnĹzĹ buradan sĹnayĹn."
+#~ msgid "Change Resolution"
+#~ msgstr "Rezolyusiyanı Dəyişdir"
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Qurulma və sistem istifadəsi üçün bir dil seçin."
+#~ msgid "Show information"
+#~ msgstr "Mə'lumatı göstər"
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Davam edə bilmək üçün yuxarıdakı lisenziyanın maddələrini qəbul "
-#~ "etməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xahiş edirik, maddələrlə razı isəniz \"Qəbul\" düyməsinə basın.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xahiş edirik, maddələrlə razı deyilsəniz ,\"Rədd\" düyməsinə basın\n"
-#~ "Yükləmə indiki qurğularınız dəyişdirilmədən bitiriləcək."
+#~ msgid "Test again"
+#~ msgstr "Yenidən sına"
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Yuxarıdakı siyahıdan klaviaturanıza uyöun gələn düzülüşü seçiniz"
+#~ msgid "Setting security level"
+#~ msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Əgər yükləmədən sonra işlətmək üçün fərqli dillər (yükləmənin əvvəlində "
-#~ "seçdiyinizdən) seçmək istəyirsinizsə,\n"
-#~ "xahiş edirik, onları yuxarıdakı siyahıdan seçin.\n"
-#~ "Əgər hamısını seçmək istəyirsiniz isə \"Hamısını\" seçin."
+#~ msgid "Graphics card"
+#~ msgstr "Ekran kartÄą"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seç:\n"
-#~ "\n"
-#~ " - Xüsusi: Əgər Linuksa aşina isəniz bu seçənəyə tıqlayın.\n"
-#~ " Sonra sistemin sinifini seçə biləcəksiniz.\n"
-#~ " Ayrınrılar üçün aşağıya baxın.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Usta: Əgər GNU/Linuks haqqında yaxşı bilik sahibi isəniz bunu seçin.\n"
-#~ " Daha sonra \"Xüsusi\" seçkisində olduğu kimi sistemin sinifini seçə "
-#~ "biləcəksiniz.\n"
-#~ " Ancaq artıq dərəcədə xahiş edirik, NƏ ETDİYİNİZİ BİLMİRSƏNİZ BU "
-#~ "SİNİFİ SEÇMƏYİN!."
+#~ msgid "Select a graphics card"
+#~ msgstr "Ekran kartĹnĹzĹ seçin"
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "İndi isə kompüterinizi necə işlədəcəyinizə qerar verin.Seç:\n"
-#~ "\n"
-#~ "* Masa üstü: kompüterinizi gündəlik işlər (idarə işləri, qrafika vs.)\n"
-#~ " üçün istifadə edəcək isəniz, bunu seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Təcrübi: Kompüterinizi proqram tə'minatı inkişafı üçün işlədəcəksəniz, "
-#~ "sizin ßçßn ideal seçkidir.\n"
-#~ " O zaman qaynaq kodları yazmaq, şəkilləndirmək və xətadan ayıqlamaq və ya "
-#~ "proqram paketləri hazırlamaq üçün lazımi hər cür proqramın daxil olduğu "
-#~ "bir kolleksiya kompüterinizə qurulacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Verici: Kompüterinizə Linuks-Mandrakeni verici olaraq işlətmək üçün "
-#~ "quracaqsanız, bu yaxşı bir seçkidir.\n"
-#~ " Bir fayl vericisi (NFS ya da SMB),çap edici vericisi(Unixin lp protokolu "
-#~ "ya da Windows tərzi SMB çap),\n"
-#~ " tanıdıcı verici (NIS), mə'lumat tabanı vericisi və oxşarı...Onda KDE, "
-#~ "GNOME kimi məzəli şeylərin qurulmağını gözləməyin."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlükəlidir"
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "İndi qurmaq ya da güncəlləmək istədiyiniz paket qruplarını\n"
-#~ "seçə bilərsiniz.\n"
-#~ "\n"
-#~ "Sonra DrakX seçdiklərinizi qurmaq ya da güncəlləmək üçün lazımi \n"
-#~ "boş yerinizin olub olmadığını sınayacaq. Əgər yoxsa, sizə bunu \n"
-#~ "söyləyəcək. Nə olursa olsun davam etmək istəsəniz,yükləmə davam edəcək.\n"
-#~ "Amma daha az ehtiyac olan paketlər qurulmayacaq.\n"
-#~ "Siyahının üstündə \"Şəxsi paket seçilməsi\"\n"
-#~ "seçənəyini işarətləsiniz 1000dən artıqpaket arasından seçə bilərsiniz."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standart VGA, 60 Hz-də 640x480 "
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "İndi isə siz istədiyiniz paketi qurmaq üçün\n"
-#~ "seçə bilərsiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paket pəncərəsi solundakı bucaqdaki seçənəyə tıqlayaraqağacı həm aça\n"
-#~ "həm də sıxışdıra bilərsiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paketlərin əlifba sırasına görə düzülməsini istəyirsinizsə\n"
-#~ "\"Otaq və grupu düz\"\n"
-#~ "düyməsinə basın.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paket ehtiyacları xəbərdarlıqlarını istəmirsəniz \"Avtomatik\n"
-#~ "ehtiyaclar\"ı seçə bilərsiniz.\n"
-#~ "Amma bunu işarətlədiyiniz vaxt unutmayın bir paketin işarətini "
-#~ "qaldırdığınızda\n"
-#~ "ehtiyacı olan digər paketlerin de işarəti səssizcə qalxar."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 56 Hz-də 800x600"
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Yuxarıdakı siyahıdakı bütün CDlərə sahibsəniz, OLDUya tıqlayın.\n"
-#~ "Bu CD'lərin heç birinə sahib deyilsəniz, Ləğv et'i tıqlayın.\n"
-#~ "CD'lərdən bə'ziləri əksiksə, bunları seçili vəziyyətdən çıxarıb OLDUya "
-#~ "tÄąqlayÄąn."
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Uyğun, 87 Hz-də titrəşimli 1024x768 (800x600 yox)"
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Kompüterinizi internete və ya yerli networka bağlamaq\n"
-#~ "istəyirsinizsə xahiş edirik doğru xüsusiyəti seçin. Ayrıca DrakXin bunu "
-#~ "tapması üçün avadanlığınızı açın.\n"
-#~ "\n"
-#~ "\n"
-#~ "İnternet və ya yerli networka heç girişiniz yox isə\"Şəbəkə qurğularını "
-#~ "keç\"\n"
-#~ "seçənəyini işarətləyin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Şəbəkə qurğularını sonraya buraxmaq istəyirsinizsəvə ya qurğular bitdiysə "
-#~ "\"Oldu\" seçənəyini işarətləyin."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 87 Hz-də titrəşimli 1024x768, 56 Hz-də 800x600"
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Modem tapılmadı. Xahiş edirik modemin bağlı olduğu serial qapını seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xəbəriniz olsun, birinci serial qapı (Windows altında\n"
-#~ "\"COM1\") linux altında\"ttyS0\" deyə adlandırılır."
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Təkmilləşdirilmiş Super VGA, 60 Hz-də 800x600, 72 Hz-də 640x480"
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "İndi isə çevirməli bağlantı xüsusiyyətləri seçə bilərsiniz.\n"
-#~ "Əgər bilmirsinizsə və ya ne girəcəyinizə qerar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi) bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Titrəşimsiz SVGA, 60 Hz-də 1024x768, 72 Hz-də 800x600"
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Modeminiz xarici isə modeminizi açın ki DrakX onu avtomatik olaraq tapsın."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Yüksək Frekanslı SVGA, 70 Hz-də 1024x768"
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Xahiş edirik modeminizi açın ve doğru seçənəyi işarətləyin."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 60 Hz-də 1280x1024"
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Əgər yuxarıdakılar haqqında mə'lumatınız yox isə və ya ne girəcəyinizə "
-#~ "qərar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi)bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 74 Hz-də 1280x1024"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "İndi isə ev sahibi bilgilərini girin. Ne girəcəyinizə\n"
-#~ "qerar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi)bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 76 Hz-də 1280x1024"
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Seç:\n"
-#~ "\n"
-#~ " - IP ünvanı: Əgər IP ünvanını bilmirsinizsə, sistem idarəcisinəya da \n"
-#~ "İnternet xidmət vericisinə danışın.\n"
-#~ "\n"
-#~ " - Şəbəkə maskası: Ümumiyyətlə \"255.255.255.0\" yaxşı bir seçkidir. Əgər "
-#~ "əmin \n"
-#~ "deyilsəniz, yenə sistem idarəcinizə ya da xidmət vericinizəsoruşun.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Avtomatik IP : Əgər networkunuz bootp ya da dhcp protokollarından bir "
-#~ "dənəsini \n"
-#~ "istifadə edirsə bu seçənəyi işarətləyin."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Əgər şəbəkədə NIS işlədilirsə, \"NIS kullan\" seçənəyini işarətləyin. "
-#~ "Əgər \n"
-#~ "bilmirsinizsə sistem idarəcinizə soruşun."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr "İndi ev sahibi adını girin. Bilmirsinizsə boş buraxın."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "İndi çevirməli bağlantı seçənəklərini girə bilərsiniz. Əgər nə yazılması "
-#~ "lazım olduğunu\n"
-#~ "bilmirsinizsə İnternet xidmət vericinizdən lazımi bilgiləri alın."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr "Əgə vəkil (proxy) verici istifadə edacəmsəniz bunları girin."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Əgər İnternet bağlantınız doğru şəkildə qurulmuş isə kriptoqrafik "
-#~ "paketi \n"
-#~ "də qura bilərsiniz. Əvvəl bir əks ünvanı seçin və daha sonra qurulacaq \n"
-#~ "paketləri quraşdırın."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "İndi isə yaşadığınız yerə görə zaman zolağını seçin."
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Siz indi yerli və ya çevirməli yazıçını qura bilərsiniz\n"
-#~ "(Unix, Netware və ya Microsoft Windows networkundakı)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Yazdırma funksiyası istəyirsinizsə CUPS və LPR arasında seçici\n"
-#~ "davranmalÄąsÄąnÄąz.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS yeni, gĂźclĂź ve elastik bir Unix yazdÄąrma sistemidir\n"
-#~ "CUPS yəni \"Common Unix Printing System\". Bu da Linuks Mandrake\n"
-#~ "də əsas yazdırma sistemidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR Linuks Mandrakenin kĂśhne sistemidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "Printeriniz yox isə \"Yox\" düyməsinə tıqlayın."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linuks bir çox çap edici növü işlədə bilər. Hər bir növ\n"
-#~ "müxtəlif quruluş istəyər.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çap ediciniz fiziki olaraq kompüterinizə bağlı isə\n"
-#~ "\"Yerli çap edici\"nĹ seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Unix sisteminə bağlı çap ediciyə uzaqdan bağlanmaq istəyirsinizsə\n"
-#~ "\"Uzaqdan bağlanılan çap edici\".\n"
-#~ "\n"
-#~ "\n"
-#~ " MS Windows kompüterinə (və ya SMB protokolunu\n"
-#~ "işlədən Unix kompüterinə) bağlı bir çap ediciyə çatmaq üçün\n"
-#~ "\"SMB/Windows95/98/NT\" seçənəyini işarətləyin."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Xahiş edirik DrakXin tapa bilməsi üçün yazıçınızı açın.\n"
-#~ "\n"
-#~ "Burada bir neçə mə'lumat verməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Çap Edici adı: yazıçılar üçün \"lp\" işlədilir.\n"
-#~ "Ona görə də yazıçınızın adı \"lp\" olmalıdır.\n"
-#~ "Bir neçə çap ediciniz var isə istədiyiniz adı verə bilərsiniz. Sadəcə "
-#~ "olaraq ə aralarına boru işarəti \"|\" qoymalısınız.\n"
-#~ "Məsələn \"Mənim yazıçım|lp\".\n"
-#~ "Adında \"lp\" olan çap edici baş çap edici olacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Təsvir: İstəyə bağlıdır. Amma bir neçə çap ediciniz var isə\n"
-#~ "bir xeyli faydalı ola bilər.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Yerləşmə: Çap Edicinin yeri haqqında istədiyinizi yaza bilərsiniz."
-#~ "Məsələn, \"2ci mərtəbə\".\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Burada bir neçə mə'lumat verməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "*İstək adı: yazıçılar üçün \"lp\" işlədilir.\n"
-#~ "Ona görə də yazıçınızın adı \"lp\" olmalıdır.\n"
-#~ "Bir neçə çap ediciniz var isə istədiyiniz adı verə bilərsiniz. Sadəcə "
-#~ "əolaraq aralarına boru işarəti \"|\" qoymalısınız.\n"
-#~ "Məsələn \"Mənim yazıçım|lp\".\n"
-#~ "Adında \"lp\" olan çap edici baş çap edici olacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Saxlama qovluğu: Çap Edici sifarişlərinizi saxlanıldığı yer.\n"
-#~ "Mövzudan bixəbər isəniz əsas qurğunu seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Çap Edici bağlantısı: Çap Edici fiziki olaraq kompüterə bağlı ise\n"
-#~ "\"Yerli Çap Edici\" seçin.\n"
-#~ "Uzaq bir Unix sistemə bağlı çap edici isə\"Uzaqdan idarəli lpd Çap Edici"
-#~ "\" seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Uzaq SMB vericisi işlədən Unix və ya Windows sisteminə bağlıyazıçı üçün "
-#~ "isə \"SMB/Windows 95/98/NT\" seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "NetWare şəbəkədə yerləşən çap edici üçün isə\"NetWare\" seçin.\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Sizin çap edici tapılmadı. Xahiş edirik bağlı olduğu avadanlığın\n"
-#~ "adÄąnÄą girin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xəbəriniz olsun, bir çox çap edici birinci paralel qapıya bağlıdır.\n"
-#~ "Bu da GNU/Linuksda \"/dev/lp0\", Windowsda isə \"LPT1\"dir."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "70 Hz də 1600x1200 qadir Monitor"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "İndi yuxarĹdakĹ siyahĹdan çap edici seçmalisiniz."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "76 Hz də 1600x1200 qadir Monitor"
#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Xahiş edirik yazıcınız üçün doğru qurğuları girin.\n"
-#~ "Nə seçəcəyinizi bilmirsiniz isə sənədlərə baxın\n"
-#~ "\n"
-#~ "\n"
-#~ "Bir sonrakı addımda yazıcınızı sınaya bilərsiniz və\n"
-#~ "daha sonra da istədiyiniz zaman dəyişdirə bilər."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Seçdiyiniz paket qruplarının ümumi böyüklüyü təximən %d MBdır.\n"
#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Linuks sisteminiz üçün bir idarəci parolu verilməlidir. Bu parol\n"
-#~ "yazılış xətalarına meydan verməməsi və e'tibarlı olması səbəbi ilə iki "
-#~ "dəfə\n"
-#~ "girilməlidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "Bu parolu diqqətli seçməlisiniz. Sadəcə idarəi parolunu bilən \n"
-#~ "adamlar sistemi idarə və dəyişiklik edə bilirlər. Ayrıca idarəci \n"
-#~ "parolu ilə sistemə girən bir adam bütün veriləri silib, sistema zərər \n"
-#~ "verə bilər. Seçdiyiniz parol alfanumerik xarakterlər daxil edib en az 8 "
-#~ "xarakter uzunluğunda olmalıdır. Hər hansı bir kağıza, dəftara qeyd\n"
-#~ "alınmamalıdır. Çox uzun bir parol və ya çox qarışıq bir parol işlədilir "
-#~ "isə \n"
-#~ "parolun xatırlanması çətinləşir.\n"
-#~ "\n"
-#~ "\n"
-#~ "İdarəci olaraq sistemə girəcayiniz zaman, giriş sırasında \"login\"\n"
-#~ "yazan qismə \"root\" və \"password\" yazan qismə idarəci parolunu\n"
-#~ "yazmalÄąsÄąnÄąz."
+#~ "Bu böyüklükdən daha azını yükləmək istəsəniz,\n"
+#~ "qurmaq istədiyiniz paket faizini seçin.\n"
+#~ "100%%'i seçərsəniz bütün paketlər qurulacaqdır."
#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "İndi bir ya da daha çox adamın Linuks sisteminizi istifadə etməsinə "
-#~ "icazə\n"
-#~ "verə bilərsiniz. Hər istifadəçi hesabı üçün edilən dəyişikliklər sadəcə\n"
-#~ "o istifadəçi ve istifadəçinin \"istifadəçi sırası\" üçün hökmlü olar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Sistemi sadəcə siz istifadə edeceksəniz belə ayrı bir istifadəçi hesabı "
-#~ "açaraq\n"
-#~ "normal işler üçün bu hesabı istifadə etməlisiniz. İdarəçi \"root\" "
-#~ "hesabÄą\n"
-#~ "gündəlik işlərdə istifadə edilməməlidir. Bu bir təhlükəsizlik riski "
-#~ "təşkil edər.\n"
-#~ "Sadə bir istifadəçi hesabı ilə işləmək sizi və sistemi size qarşı\n"
-#~ "qoruyar. İdarəci hesabı olan \"root\" sadəcə, sadə bir istifadəçi hesabı\n"
-#~ "ilə etməyəcəyiniz idarə və təmir işləri üçün istifadə edilməlidir."
-
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Başlanğıc disketi yaradılması aşırı dərəcədə tövsiyyə edilir.\n"
-#~ "Sistemi aça bilmədiyiniz zaman bu, sizin üçün tək qurtuluş yolu olar.\n"
-#~ "Yoxsa sistemi yenidən yükləmək məcburiyyətindəsiniz."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO və grub ana seçənəkləri bunlardır: \n"
-#~ "- Açılış avadanlığı: Açılış sektorunu olduğu sabit disk bölməsini daxil "
-#~ "edən avadanlığın\n"
-#~ "adını təyin edər.\n"
-#~ "Əgər heç bir şey bilmirsinizsə \"/dev/hda\"yı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Əsas əks ilə açmadan əvvəl gecikmə: Açılış sistem yükləyicisinin ilk \n"
-#~ "əksi açmadan əvvəl gözləyəcəyi zamanın, saniyənin onda biri cinsindən "
-#~ "miqdarÄądÄąr.\n"
-#~ "Bu, klaviaturanın fəallaşmasından həmən sonra sabit diskdən açılan "
-#~ "sistemlər üçün faydalıdır.\n"
-#~ "Sistem yükləyicisi, əgər \"delay\" sıfır olaraq verilmiş isə\n"
-#~ "heç gözləməz.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Ekran modu: Açılışda bir neçə mətn ekran modu seçilə bilər:\n"
-#~ " * sadə: 80x25 mətn ekran açılır.\n"
-#~ " * <rəqəm>: Göstərilənn rəqəmlərə görə mətn ekran rezolyusiyası "
-#~ "quraşdırılır.\n"
-#~ "\n"
-#~ "\n"
-#~ "- \"/tmp\"I hər açılışda təmizlə: Əgər hər açılışda \"/tmp\" cərgəsində "
-#~ "olan bĂźtĂźn\n"
-#~ "olan bütün cərgə və qovluqların silinməsini istəyirsinizsə, bu seçənəyi "
-#~ "seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Var olan RAM miqdarı: Təəsüf ki, Linuks həmişə RAM miqdarını BIOSdan "
-#~ "dĂźzgĂźn\n"
-#~ "bir şəkildə öyrənəməyə bilər. Onda siz çzünüz sisteminizdə olan həqiq RAM "
-#~ "miqdarÄąnÄą buradan\n"
-#~ "girə bilərsiniz. Yadda saxlayın ki, həqiqi RAM ilə sistemin tapdığı "
-#~ "miqdar arasÄąnda 2\n"
-#~ "və ya 4 MBlıq fərq ola bilər."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO (Linuks Yükləyici) SPARC üçün bir sistem yükləyicidir: sistemi "
-#~ "Linuks\n"
-#~ "ya da kompüterinizdəki başqa bir əməliyyat sistemiylə aça bilirlər.\n"
-#~ "Əsasən bu digər əməliyyat sistemləri doğru bir şəkildə təsbit edilib "
-#~ "açılışa\n"
-#~ "qurula bilərlər. Əgər bir problem olarsa, buradan əllə əlavə edilə "
-#~ "bilərlər.\n"
-#~ "Parametrlər mövzusunda diqqətli olun."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ " - Açılış avadanlığı: Açılış sektorunu olduğu sabit disk bölməsini daxil "
-#~ "edən avadanlığın\n"
-#~ "adını təyin edər.\n"
-#~ "Əgər heç bir şey bilmirsinizsə \"/dev/hda\"yı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ana əks ilə açmadan əvvəl gecikmə: Açılış sistem yükləyicisinin ilk \n"
-#~ "görünüşü açmadan əvvəl gözləyəcəyi zamanın, saniyənin onda biri cinsindən "
-#~ "miqdarÄądÄąr.\n"
-#~ "Bu, klaviaturanın aktivləşməsindən həmən sonra sabit diskdən açılan "
-#~ "sistemlər üçün faydalıdır.\n"
-#~ "Sistem yükləyicisi, əgər delay sıfır olaraq verilmiş isə\n"
-#~ "heç gözləməz."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Buradan etibarən, Linuks GUI (Qrafik İstifadəçi Ara üzü) çəkirdəyini\n"
-#~ "əmələ gətirən X Window sistemini quracağıq. Buna görə də ekran kartınızı\n"
-#~ "və monitorunuzu qurmalısınız. Bu addımların çoxu onsuz da avtomatik "
-#~ "olaraq\n"
-#~ "keçiləcək və sizə sadəcə olaraq tövsiyə edilən qurğuları incələmək və "
-#~ "qəbul etmək\n"
-#~ "düşəcək. :-)\n"
-#~ "\n"
-#~ "\n"
-#~ "Quruluş qurtardığında əgər DrakXdən əksini istəmədiniz isə X Window \n"
-#~ "başlayacaqdır. Qurğuşarınıza baxın və yoxlayın. Qurğularınızı yoxlayaraq\n"
-#~ "uyuşmazlıq olub olmadığına baxın, lazım gəlirsə geriyə dönün."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr "X qurğularında problem olarsa aşağıdakı seçənəkləri istifadə edin."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Əgər sistemə girərkən qrafik arar üzünün gəlməsini istəyirsənız isə \"Bəli"
-#~ "\",əks halda \"Xeyr\" düyməsinə basın."
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Sisteminiz üçün təhlükəsizlik səviyyəsini seçə bilərsiniz. Ətraflı "
-#~ "mə'lumat üçün xahiş edirik bələdçiyə\n"
-#~ " baş vurun. Əsasən , nə seçəcəyinizi bilmirsiniz isə buraya heç "
-#~ "toxunmayÄąn.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "İndi sistem yenidən qapanıb açılacaqdır.\n"
-#~ "\n"
-#~ "Açıldıqdan sonra Linuks Mandrake avtomatik olaraq yüklənəcəkdir. Əgər "
-#~ "başqa \n"
-#~ "bir əməliyyat sistemi də işlədəcəksəniz əlavə xəbərdarlıqları oxuyun."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Çex dili (Proqramcılar)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovakca (ProqramcÄąlar)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "YaradÄąlacaq profil adÄą:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "/etc/fstab-a Yaz"
-
-#~ msgid "Format all"
-#~ msgstr "Hamısını şəkilləndir"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Bütün bölmələri şəkilləndirdikdən sonra, "
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "bu bölmələrdəki bütün verilər itəcəkdir"
-
-#~ msgid "Reload"
-#~ msgstr "Yenidən yüklə"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Linuks köçürülməsi üçün bir dənə avtomatik qurulum disketi yaratmaq "
-#~ "istəyərmisiniz?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL quraşdırılması"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Uzaq CUPS vericiləri üçün heç bir quraşdırmaya lüzüm yoxdur \n"
-#~ "Buradakı hər çap edici avtomatik tapılacaqdır. \n"
-#~ "Əgər uzaq çap edici vericiniz var ise CUPS vercisinin \n"
-#~ "IP ünvanını verməlisiniz. Qapı nömrəsi vacib \n"
-#~ "deyil."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Uzaqdakı növbə adı"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Sahə(domain) adı"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Çap Edicisiz"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Şəbəkə Monitoru"
-
-#~ msgid "Profile "
-#~ msgstr "Profil "
-
-#~ msgid "Statistics"
-#~ msgstr "Statistikalar"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Yollama Sür'əti:"
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Alam Sür'əti:"
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Bağlantı növü:"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "İnternetə bağlanılır"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "İnternet ilə bağlantını kəs"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "İnternet ilə bağlantı kəsilməsi bacarılmadı."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "İnternet ilə bağlantı kəsilməsi qurtardı."
-
-#~ msgid "Connection complete."
-#~ msgstr "Bağlantı qurtardı."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Bağlantı iflas etdi.\n"
-#~ "Qurğularınızı Mandrake İdarə Mərkəzindən yoxlayın."
-
-#~ msgid "sent: "
-#~ msgstr "yollandÄą:"
-
-#~ msgid "received: "
-#~ msgstr "alÄąndÄą:"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Əsas Runlevel"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Quraşdırma faylının içindəkilərlə oynanılmaz"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Tanınmaz quraşdırma faylı"
-
-#~ msgid "Adapter"
-#~ msgstr "Adapter"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Bağla"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Aç"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "İndi siçanı sınaya bilərsiniz. Hər şeyin yolunda olduğunu \n"
-#~ "sınamaq üçün düymə və çarxı işlədin. Qurğular yaxşı isə\n"
-#~ "problem yoxdur. Əgər deyilsə onda \"Ləğv et\"i tıqlayaraq\n"
-#~ "başqa siçan sürücüsü seçə bilərsiniz."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (və ya ADSL) bağlantısı"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Qapat"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "CUPS ilə çap ediciyə yetişmək üçün URIni verməlisiniz"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Bəli, ASCII sınaq səhifəsi çap et"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Bəli, PostScript sınaq səhifəsi çap et"
-
-#~ msgid "Paper Size"
-#~ msgstr "Kağız Böyüklüyü"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "İş bittikdən sonra səhifə atılsın mı?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint sürücü seçənəkləri"
-
-#~ msgid "Color depth options"
-#~ msgstr "Rəng dərinlik seçənəkləri"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Mətni PostScript olaraq yazdırsın mı?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Mətn pilləli olaraq düzəldilsin mi?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Hər yekun səhifəsinin nömrəsi"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Sağ/Sol boşluqlar nöqtəvi(inch'in 1/72'si"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Üst/Alt boşluqlar nöqtəvi (inch'in 1/72'si)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Əlavə GhostScript seçənəkləri"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Əlavə mətn seçənəkləri"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Tərs səhifə sıralaması"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Çap Edici Bağlantısı Seçin"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Hər çap edicinin bir adı olmalıdır (məsələn lp).\n"
-#~ "Çap edicinin təsviri və yeri də göstərilməlidir.\n"
-#~ "Bu çap edicinin adı nədir və yeri haradadır?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Hər çap edici növbəsinin (çap edici işlərinin yollandığı yer) bir adı "
-#~ "olar \n"
-#~ "(çoxunda lp) və gözləmə qovluğuna ehtiyac duyar. Bu növbə üçün\n"
-#~ "hansı ad və qovluq istifadə edilsin?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Növbənin adı"
-
-#~ msgid "Spool directory"
-#~ msgstr "Gözləmə qovluğu"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Daha e'tibarlı bir sistem üçün \"Kölgə parol işlət\" və \"MD5 kodlama \n"
-#~ "işlət\" seçənəklərini işarətlayin."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Əgər şəbəkədə NIS istifadə edilirsə, \"NIS işlət\" seçəneyini "
-#~ "işarətləyin. Əgər \n"
-#~ "bilmirsinizsə sistem idarəcinizə soruşun."
-
-#~ msgid "yellow pages"
-#~ msgstr "sarı səhifələr"
+#~ "Sabit diskinizdə bu paketlərin sadəcə olaraq %d%%'sini quracaq qədər yer "
+#~ "var.\n"
+#~ "Bundan daha azını qurmaq istəsəniz,\n"
+#~ "daha az bir faiz sadəcə ən vacib paketləri ;\n"
+#~ "%d%% isə qurula biləcək bütün paketləri quracaqdır."
-#~ msgid "Provider dns 1"
-#~ msgstr "Ä°XM dns 1"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Sonrakı addımda daha geniş bir seçki qabağınıza gələcəkdir."
-#~ msgid "Provider dns 2"
-#~ msgstr "Ä°XM dns 2"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Qurulacaq paketlərin faizi"
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "İnternetə necə bağlanmaq istəyirsiniz?"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Təhlükəsizlik səviyyəsini seçin"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 617c278c6..e808ec713 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-03-11 18:29+0100\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -13,67 +13,99 @@ msgstr ""
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 Ęá"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 Ęá"
-#: ../../Xconfigurator.pm_.c:246
-#, fuzzy, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ęŕíôiăóđŕâŕöü ěŕţ ęŕđňó"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Ěá"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Ěá"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Ěá"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Ěá"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Ěá"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Ěá"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Ěá öi áîëĺé"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Ŕá˙đűöĺ X ńĺđâĺđ"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X ńĺđâĺđ"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "÷űňŕííĺ íŕńňđîéęi"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Âiäýŕęŕđňŕ"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ âiäýŕďŕě˙öi"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Ŕá˙đűöĺ âiäýŕęŕđňó"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Íŕńňđîéęŕ XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Ŕá˙đűöĺ X ńĺđâĺđ"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "ßęóţ ęŕíôiăóđŕöűţ XFree âű ćŕäŕĺöĺ ŕňđűěŕöü?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ńĺđâĺđ"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Ŕá˙đűöĺ X ńĺđâĺđ"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ńĺđâĺđ"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Ęŕíôiăóđŕâŕöü ěŕţ ęŕđňó"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "Ńĺđâĺđ XFree86 %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "ßęóţ ęŕíôiăóđŕöűţ XFree âű ćŕäŕĺöĺ ŕňđűěŕöü?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ç ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,36 +114,19 @@ msgstr ""
"Ďŕäňđűěęŕ 3D-ďŕńęŕđýíí˙ ˘ Âŕřŕé âłäýŕęŕđöĺ âűęŕíŕíŕ ňîëüęł ˘ XFree %s.\n"
"XFree %s ěîćŕ âűęŕđűńňî˘âŕöü ňîëüęł 2D-ďŕńęŕđýííĺ äë˙ ăýňŕé âłäýŕęŕđňű."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree %"
"s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ç ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree %"
-"s.\n"
-"ĚŔÉÖĹ ÍŔ ĄÂŔÇĹ, ŘŇÎ ĂÝŇŔ ÝĘŃĎĹĐŰĚĹÍŇŔËÜÍŔß ĎŔÄŇĐŰĚĘŔ I ĚÎĆŔ ĎĐŰÂĹŃÖI ÄŔ\n"
-"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ç ýęńďĺđűěĺíňŕëüíŕé ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +139,60 @@ msgstr ""
"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ. Âŕřŕ âiäýŕęŕđňŕ ďŕäňđűěëiâŕĺööŕ XFree %s, ˙ęi\n"
"ëĺďĺé ďŕäňđűěëiâŕĺ ęŕđňű ç 2D-ďŕńęŕđýííĺě."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree %"
+"s.\n"
+"ĚŔÉÖĹ ÍŔ ĄÂŔÇĹ, ŘŇÎ ĂÝŇŔ ÝĘŃĎĹĐŰĚĹÍŇŔËÜÍŔß ĎŔÄŇĐŰĚĘŔ I ĚÎĆŔ ĎĐŰÂĹŃÖI ÄŔ\n"
+"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Íŕńňđîéęŕ XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ âiäýŕďŕě˙öi"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Ŕá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Öł ćŕäŕĺöĺ Âű çŕőŕâŕöü çě˙íĺííł?\n"
+"Á˙ăó÷ŕ˙ ęŕíôłăóđŕöű˙:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Ŕá˙đűöĺ ěŕíiňîđ"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Ěŕíiňîđ"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Ďŕ âűáŕđó"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Ŕăóëüíű"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Ŕäęŕň"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,518 +215,328 @@ msgstr ""
"âű ěîćŕöĺ ńŕďńŕâŕöü ěŕíiňîđ.\n"
"Ęŕëi âű ńóěí˙âŕĺöĺń˙, ŕá˙đűöĺ ęŕíńĺđâŕňű˘íű˙ íŕńňđîéęi."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "×ŕńöłí˙ ăŕđűçŕíňŕëüíűé đŕçăîđňęi"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "×ŕńöłí˙ âĺđňűęŕëüíŕé đŕçăîđňęi"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Âiäýŕęŕđňŕ ˙ř÷ý íĺ ŕäęŕíôiăóđŕâŕíŕ"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Ďŕěĺđű ýęđŕíó ˙ř÷ý íĺ ďŕçíŕ÷ŕíű"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Ďŕď˙đýäćŕííĺ: ňýńöiđŕâŕííĺ íŕ ăýňŕé âiäýŕęŕđöĺ íĺá˙ńďĺ÷íŕ"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 ęîëĺđࢠ(8 áiňŕ˘)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ďŕńďđŕáóéöĺ çě˙íiöü íĺęŕňîđű˙ ďŕđŕěĺňđű"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ňűń˙÷ű ęîëĺđࢠ(15 áiňŕ˘)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ďŕěűëęŕ:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ňűń˙÷ ęîëĺđࢠ(16 áiňŕ˘)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Çŕńňŕëîń˙ %d ńĺęóíäŕ˘"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 ěiëü¸íࢠęîëĺđࢠ(24 áiňű)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ăýňŕ äŕęëŕäíű˙ ďŕđŕěĺňđű íŕńňđîéęi?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 ěiëi˙đäŕ ęîëĺđࢠ(24 áiňű)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ŕňđűěŕíŕ ďŕěűëęŕ, ďŕńďđŕáóéöĺ çě˙íiöü ďŕđŕěĺňđű"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Ďŕěĺđű ýęđŕíó"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Ďŕěĺđű ýęđŕíó"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Âűáŕđ ďŕěĺđࢠýęđŕíó i ăëűáiíi ęîëĺđó"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Âiäýŕęŕđňŕ: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Ńĺđâĺđ XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Ďĺđŕíîń"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Ŕäěĺíŕ"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Îę"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr "Ýęńďĺđň"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ďŕęŕçŕöü óń¸"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Ďŕěĺđű ýęđŕíó"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ňűď ęëŕâi˙ňóđű: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ňűď ěűřű: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Ěűř: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Ěŕíiňîđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "×ŕńöłí˙ ăŕđ.đŕçă. ěŕíiňîđó: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "×ŕńöłí˙ âĺđň.đŕçă. ěŕíiňîđó: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Âiäýŕęŕđňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Âiäýŕęŕđňŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Âiäýŕďŕě˙öü: %s Ęá\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Ďŕđŕěĺňđű ăëűáiíi ęîëĺđó: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Ďŕěĺđű ýęđŕíó: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Ńĺđâĺđ XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Ńĺđâĺđ XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ďŕäđűőňî˘ęŕ íŕńňđîéęi X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Řňî âű ćŕäŕĺöĺ çđŕáiöü?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Çě˙íiöü ěŕíiňîđ"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Çě˙íiöü âiäýŕęŕđňó"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Çě˙íiöü íŕńňđîéęi Ńĺđâĺđó"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Çě˙íiöü ďŕěĺđű ýęđŕíó"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Iíôŕđěŕöű˙"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Ďđŕâĺđűöü ˙ř÷ý đŕç"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Âűőŕä"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Öł ćŕäŕĺöĺ Âű çŕőŕâŕöü çě˙íĺííł?\n"
-"Á˙ăó÷ŕ˙ ęŕíôłăóđŕöű˙:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Çŕďóńę X ďđű ńňŕđöĺ ńińňýěű"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ çŕďóńęó X ďŕńë˙ ńňŕđňó ńińňýěű.\n"
"Ćŕäŕĺöĺ, ęŕá X ńňŕđňŕâࢠďđű đýńňŕđöĺ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ęŕëi ëŕńęŕ, ďĺđŕéäçiöĺ ˘ %s äë˙ ŕęňűâŕöűi çě˙íĺíí˙˘"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Ęŕëi ëŕńęŕ, âűéäçiöĺ, ŕ ďîňűě ńęŕđűńňŕéöĺ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 ęîëĺđࢠ(8 áiňŕ˘)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ňűń˙÷ű ęîëĺđࢠ(15 áiňŕ˘)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ňűń˙÷ ęîëĺđࢠ(16 áiňŕ˘)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ěiëü¸íࢠęîëĺđࢠ(24 áiňű)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 ěiëi˙đäŕ ęîëĺđࢠ(24 áiňű)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 Ęá"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 Ęá"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 Ěá öi áîëĺé"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Ńňŕíäŕđňíű VGA, 640x480 ďđű 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ďđű 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Ńóěĺńíű ç 8514, 1024x768 ďđű 87 Hz ďđŕçđŕäęîâŕ (í˙ěŕ 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ďđi 87 Hz ďđŕçđŕäęîâŕ, 800x600 ďđű 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 ďđű 60 Hz, 640x480 ďđű 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Íĺďđŕçđŕäęîâŕ SVGA, 1024x768 ďđű 60 Hz, 800x600 ďđű 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Âűńîę÷ŕńöłí¸âű SVGA, 1024x768 ďđű 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Ďĺđřű ńĺęňŕđ çŕăđóçŕ÷íŕăŕ đŕçäçĺëó"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Ďĺđřű ńĺęňŕđ ďđűëŕäű (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Óńňŕë˙âŕííĺ SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Ęóäű âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ďŕ÷ŕňęîâű çŕăđóç÷űę?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Óńňŕë˙âŕííĺ LILO/GRUB"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Ăŕëî˘íű˙ îďöűi ďŕ÷ŕňęîâŕăŕ çŕăđóç÷űęó"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
#, fuzzy
msgid "Bootloader to use"
msgstr "Ăŕëî˘íű˙ îďöűi ďŕ÷ŕňęîâŕăŕ çŕăđóç÷űęó"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Óńňŕë˙âŕííĺ çŕăđóç÷űęó"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Çŕăđóçŕ÷íŕ˙ ďđűëŕäŕ"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (íĺ ďđŕöóĺ ďđű ńňŕđűő âĺđńi˙ő BIOS)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Ęŕěďŕęňíŕ"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "ęŕěďŕęňíŕ"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Âiäýŕ-đýćűě"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Çŕňđűěęŕ ďĺđŕä çŕăđóçęŕé âîáđŕçó ďŕ äŕěŕ˘ëĺííţ"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Ďŕđîëü"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Ďŕ˘ňŕđűöĺ ďŕđîëü"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Ŕáěĺćŕâŕííĺ îďöű˙˘ ęŕěŕíäíŕăŕ đŕäęŕ"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ŕáěĺćŕâŕííĺ"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Ŕ÷űř÷ŕöü /tmp ďđű ęîćíŕé çŕăđóçöű"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ďŕçíŕ÷öĺ äŕęëŕäíű ďŕěĺđ RAM (çíîéäçĺíŕ %d Má)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Äŕńňóďíŕ řěŕň ďđîôië˙˘"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ RAM ó Má"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Îďöű˙ ``Ŕáěĺćŕâŕííĺ îďöű˙˘ ęŕěŕíäíŕăŕ đŕäęó'' íĺ âűęŕđűńňî˘âŕĺööŕ áĺç ďŕđîë˙"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
#, fuzzy
msgid "Default OS?"
msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -691,84 +545,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ó ěĺíţ ěŕţööŕ íŕńňóďíű˙ ďóíęňű.\n"
"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Äŕäŕöü"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Çđîáëĺíŕ"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Çě˙íiöü RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "ßęi ňűď ďóíęňŕ ćŕäŕĺöĺ äŕäŕöü?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Iířŕ˙ ŔŃ (SunOS,...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Iířŕ˙ ŔŃ (MacOS,...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Iířŕ˙ ŔŃ (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Âîáđŕç"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Äŕëó÷űöü"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "×űňŕííĺ-çŕďiń"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Ňŕáëiöŕ"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Íĺíŕäçĺéíŕ"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Ěĺňęŕ"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Ďŕ äŕěŕ˘ëĺííţ"
@@ -802,53 +656,75 @@ msgstr "Âű ďŕâiííű ěĺöü đŕçäçĺë swap"
msgid "This label is already used"
msgstr "Ăýňŕ˙ ěĺňęŕ ˘ćî âűęŕđűńňî˘âŕĺööŕ"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Çíîéäçĺíű %s %s iíňýđôĺéńű"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Öi ¸ńöü ó âŕń iířű?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Öi ¸ńöü ó âŕń %s iíňýđôĺéń?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Íĺ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ňŕę"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
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:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Óńňŕë˙âŕííĺ äđŕéâĺđó äë˙ %s ęŕđňű %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(ěîäóëü %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s.\n"
+"Îďöűi - ó ôŕđěŕöĺ ``iě˙=çíŕ÷ýííĺ iě˙2=çíŕ÷ýííĺ2 ...''.\n"
+"Íŕďđűęëŕä, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Îďöűi ěîäóëţ:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "ßęi äđŕéâĺđ %s ďŕńďđŕáŕâŕöü?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -865,37 +741,15 @@ msgstr ""
"˘ ďîřóęŕő íĺŕáőîäíŕé iíôŕđěŕöűi? Ěŕă÷űěŕ, ňýńöiđŕâŕííĺ ďđűâ˙äçĺ\n"
"äŕ ńďűíĺíí˙ ęŕěď'ţňýđó, ŕëĺ ˙íî íi÷îăŕ íĺ ńŕďńóĺ."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Ŕ˘ňŕďîřóę"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Ďŕçíŕ÷öĺ ďŕđŕěĺňđű"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s.\n"
-"Îďöűi - ó ôŕđěŕöĺ ``iě˙=çíŕ÷ýííĺ iě˙2=çíŕ÷ýííĺ2 ...''.\n"
-"Íŕďđűęëŕä, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Îďöűi ěîäóëţ:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,51 +758,56 @@ msgstr ""
"Çŕăđóçęŕ ěîäóëţ %s íĺ ďđŕéřëŕ.\n"
"Ćŕäŕĺöĺ ďŕńďđŕáŕâŕöü ç iířűěi ďŕđŕěĺňđŕěi?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(óćî äŕäŕäçĺíŕ %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Ęŕëi ëŕńęŕ, óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięó"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
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:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ăýňŕ iě˙ ęŕđűńňŕëüíięó ˘ćî äŕäŕäçĺíŕ"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ăýňŕ iě˙ ęŕđűńňŕëüíięó ˘ćî äŕäŕäçĺíŕ"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -957,32 +816,32 @@ msgstr ""
"Óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięó\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Ďđűí˙öü ęŕđűńňŕëüíięŕ"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Óëŕńíŕĺ iě˙"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Ŕáŕëîíęŕ:"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ďięňŕăđŕěŕ"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Ŕ˘ňŕěŕňű÷íű ˘âŕőîä ó ńińňýěó"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -991,121 +850,101 @@ msgstr ""
"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ ˘âŕőîäó ˘ ńińňýěó äë˙\n"
"ŕäíŕăî ęŕđűńňŕëüíięŕ. Ęŕëi Âű íĺ ćŕäŕĺöĺ ăýňŕăŕ, íŕöińíiöĺ \"Ŕäěĺíŕ\"."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Ŕá˙đűöĺ ěýíýäćŕđ âîęíŕ˘:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Óń¸"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ďŕ âűáŕđó"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "×ŕęŕĺööŕ"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ŕäěĺíŕ"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Ńŕđäý÷íŕ çŕďđŕřŕĺě ó Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Çóńłě ńëŕáű"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Ńňŕíäŕđňíű"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Âűńîęi"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Âűńîęi"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Ďŕđŕíŕiäŕëüíű"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1117,7 +956,7 @@ msgstr ""
"íŕ ěŕřűíŕő, ˙ęi˙ äŕëó÷ŕíű äŕ ńĺňęi öi äŕ Internet. Óâŕőîä íĺ ŕáŕđîíĺíű "
"ďŕđîëĺě."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1125,7 +964,7 @@ msgstr ""
"Ďŕđîëü çŕđŕç óęëţ÷ŕíű, ŕëĺ âűęŕđűńňŕííĺ ęŕěď'ţňýđó ˘ ˙ęŕńöi ńĺňęŕâŕăŕ\n"
"ňŕęńŕěŕ íĺ đýęŕěĺíäŕâŕíŕ."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1135,55 +974,56 @@ msgstr ""
"˙ęi äŕëó÷ŕíű äŕ Internet ó ˙ęŕńöi ęëiĺíňó. Äŕäŕíű˙ íîâű˙ ďđŕâĺđęi\n"
"á˙ńďĺęi."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Íŕ ăýňŕě óçđî˘íĺ á˙ńďĺęi ěŕă÷űěŕ âűęŕđűńňŕííĺ ńińňýěű ˘ ˙ęŕńöi\n"
"ńĺđâĺđó. Óçđîâĺíü á˙ńďĺęi äŕńňŕňęîâŕ âűńîęi äë˙ đŕáîňű\n"
"ńĺđâĺđó, ˙ęi äŕďóńęŕĺ çëó÷ýííi ńŕ řěŕňëięiěi ęëiĺíňŕěi."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Ďđűěŕţööŕ ˘ëŕńöiâŕńöi 4 óçđî˘í˙, ŕëĺ çŕđŕç ńińňýěŕ ďî˘íŕńöţ çŕ÷űíĺíŕ.\n"
"Ďŕđŕěĺňđű á˙ńďĺęi ˘ńňŕíî˘ëĺíű íŕ ěŕęńiěóě."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Óçđîâĺíü á˙ńďĺęi"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Ŕá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1195,52 +1035,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
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:931
+#: ../../bootloader.pm_.c:915
#, 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:934
+#: ../../bootloader.pm_.c:918
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:937
+#: ../../bootloader.pm_.c:921
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:940
+#: ../../bootloader.pm_.c:924
#, 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:944
+#: ../../bootloader.pm_.c:928
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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Ďđŕöî˘íű ńňîë"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ęóäű âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ďŕ÷ŕňęîâű çŕăđóç÷űę?"
@@ -1254,16 +1094,20 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Íŕńňđîéęŕ ěŕäýěó"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
msgstr "Ôŕéëű:\n"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1302,12 +1146,12 @@ msgstr "Çŕăđóçŕ÷íŕ˙ ďđűëŕäŕ"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
#, fuzzy
msgid "Configure"
@@ -1318,7 +1162,7 @@ msgid "System mode"
msgstr ""
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1329,14 +1173,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr ""
@@ -1385,7 +1231,7 @@ msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
msgid "Screenshots will be available after install in %s"
msgstr "Âű ěîćŕöĺ ŕáđŕöü łířű˙ ěîâű, ˙ęi˙ áóäóöü äŕńňóďíű ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ôđŕíöű˙"
@@ -1393,7 +1239,7 @@ msgstr "Ôđŕíöű˙"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Áĺëüăiéńęi"
@@ -1421,11 +1267,12 @@ msgstr "Íŕđâĺćńęi"
msgid "Sweden"
msgstr "Ăë."
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Iňŕëü˙íńęi"
@@ -1435,7 +1282,7 @@ msgstr "Iňŕëü˙íńęi"
msgid "Austria"
msgstr "ďŕńë˙äî˘íŕ˙"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1443,8 +1290,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Ďŕ-ďĺđřŕĺ, çđŕáiöĺ đýçĺđâîâóţ ęîďiţ âŕřűő äŕäçĺíűő"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "×űňŕéöĺ ˘âŕćëiâŕ!"
@@ -1457,11 +1304,12 @@ msgstr ""
"Ęŕëi âű ďëŕíóĺöĺ âűęŕđűńňî˘âŕöü boot âîáëŕńöü, ňŕäű đŕçě˙ńöiöĺ ˙ĺ\n"
" íĺ äŕëĺé çŕ 2048 ńĺęňŕđî˘ ŕä ďŕ÷ŕňęó äűńęŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Ďŕěűëęŕ"
@@ -1469,11 +1317,11 @@ msgstr "Ďŕěűëęŕ"
msgid "Wizard"
msgstr "Ěŕéńňŕđ ńňâŕđýíí˙"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1485,149 +1333,155 @@ msgstr ""
"Ďđŕďŕíóţ, ďŕ-ďĺđřŕĺ, çě˙íiöü ďŕěĺđű đŕçäçĺëŕ\n"
"(ęëięíiöĺ íŕ ˙ăî, ŕ ďîňűě íŕ \"çě˙íĺííĺ ďŕěĺđŕ˘\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Ďŕäđŕá˙çíŕńöi"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Ďóńňŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "˛ířű˙"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Ňűďű ôŕéëŕâűő ńińňýěŕ˘:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Ńňâŕđűöü"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Ňűď"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Âűęŕđűńňî˘âŕéöĺ ``%s'' çŕěĺńň"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Çíiř÷űöü"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Ńďŕ÷ŕňęó çđŕáiöĺ ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Óńĺ äŕäçĺíű˙ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű ďŕńë˙ çěĺíű ˙ăî ňűďó"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Ńňâŕđýííĺ íîâŕăŕ đŕçäçĺëó"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Đýćűě ýęńďĺđňó"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Çâű÷ŕéíű đýćűě"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Ŕäęŕň"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Ńŕďđŕ˘äű ďđŕö˙ăâŕöü?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Âűéńöi áĺç çŕőŕâŕíí˙"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Âűéńöi áĺç çŕďińó ňŕáëiöű đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Đŕçěĺđęŕâŕöü ŕ˘ňŕěŕňű÷íŕ"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Ŕ÷űńöiöü óń¸"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "More"
+msgstr "Ďĺđŕíîń"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Iíôŕđěŕöű˙"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Óńĺ ďĺđřŕńíű˙ đŕçäçĺëű âűęŕđűńňŕíű"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1635,35 +1489,35 @@ msgstr ""
"Ęŕá çđŕáiöü áîëüř đŕçäĺëŕ˘, âűäŕëiöĺ ŕäçií i ńňâŕđűöĺ ďŕřűđŕíű đŕçäçĺë "
"(extended)"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Çŕďiń ňŕáëiöű đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Ŕ˘ňŕěŕíöiđŕâŕííĺ çěĺííűő íŕçŕďŕřâŕëüíłęŕ˘"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Ŕá˙đűöĺ ôŕéë"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1671,11 +1525,11 @@ msgstr ""
"Ňŕáëiöŕ đŕçě˙ř÷ýíí˙ đýçĺđâîâŕăŕ äűńęó ěŕĺ iířű ďŕěĺđ\n"
"Ďđŕö˙ăâŕöü äŕëĺé?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Óâŕăŕ!"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1683,125 +1537,132 @@ msgstr ""
"Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä\n"
"Óńĺ äŕäçĺíű˙ íŕ ăýňŕé äűńęĺöĺ áóäóöü ńňđŕ÷ŕíű"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Ďŕńďđŕáóĺě âűđŕňŕâŕöü ňŕáëiöó đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Iíôŕđěŕöű˙"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ęđîďęŕ ěŕíöiđŕâŕíí˙"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Îďöűi"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Çě˙íĺííĺ ďŕěĺđŕ˘"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Ďĺđŕíîń"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Ôŕđěŕňŕâŕííĺ"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ěŕíöiđŕâŕííĺ"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Äŕäŕöü äŕ RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Äŕäŕöü äŕ LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Đŕçěŕíöiđŕâŕöü"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Âűäŕëiöü ç RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Âűäŕëiöü ç LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Çě˙íiöü RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Âűęŕđűńňî˘âŕöü äë˙ âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Ńňâŕđýííĺ íîâŕăŕ đŕçäçĺëó"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Ďŕ÷ŕňęîâű ńĺęňŕđ:"
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Ďŕěĺđ ó Ěá:"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Ňűď ôŕéëŕâŕé ńińňýěű:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Ďóíęň ěŕíöiđŕâŕíí˙:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Ďŕđŕěĺňđű: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ôŕđěŕňŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëó %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Çě˙íiöü ňűď đŕçäçĺëó"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Ęóäű âű ćŕäŕĺöĺ ěŕíöiđŕâŕöü âiđňóŕëüíóţ ďđűëŕäó %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Ęóäű âű ćŕäŕĺöĺ ěŕíöiđŕâŕöü ďđűëŕäó %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1810,132 +1671,137 @@ msgstr ""
"âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű.\n"
"Ńďŕ÷ŕňęó âűäŕëiöĺ âiđňóŕëüíóţ ńińňýěó"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Ďŕäëłę ěĺćࢠôŕéëŕâŕé ńińňýěű FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Çě˙íĺííĺ ďŕěĺđŕ˘"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Óńĺ äŕäçĺíű˙ ˘ ăýňűě đŕçäçĺëĺ ďŕâiííű áűöü çŕđőiâŕâŕíű˙"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Óńĺ äŕäçĺíű˙ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Âűáŕđ íîâűő ďŕěĺđŕ˘"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Ďŕěĺđ ó Ěá:"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Íŕ ˙ęi äűńę ďĺđŕíĺńöł?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Ńĺęňŕđ"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Íŕ ˙ęi ńĺęňŕđ ďĺđŕíĺńöł?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Ďĺđŕíîńłě"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Ďĺđŕíîńłööŕ đŕçäçĺë..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Ŕá˙đűöĺ ińíóţ÷ű RAID äë˙ äŕäŕíí˙"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "íîâű"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Âűá˙đűöĺ ińíóţ÷ű LVM äë˙ äŕáŕ˘ëĺíí˙"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ăýňű đŕçäçĺë íĺ ěîćŕ áűöü âűęŕđűńňŕíű ďŕä âiđňóŕëüíóţ ôŕéëŕâóţ ńińňýěó"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Âiđňóŕëüíŕ˙ ôŕéëŕâŕ˙ ńińňýěŕ (loopback)"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Iě˙ âiđňóŕëüíŕăŕ đŕçäçĺëó"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Óëŕńíŕĺ iě˙"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ôŕéë óćî âűęŕđűńňî˘âŕĺööŕ iířŕé âiđňóŕëüíŕé ńińňýěŕé. Ęŕëi ëŕńęŕ, \n"
"ŕá˙đűöĺ iířóţ íŕçâó"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ôŕéë óćî ińíóĺ. Âűęŕđűńňŕöü ˙ăî?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Îďöűi ěîäóëţ:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "ďđűëŕäŕ"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "óçđîâĺíü"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ďŕěĺđ áëîęó"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Áóäçüöĺ óâŕćëiâű. Ăýňóţ ŕďĺđŕöűţ íĺëüăŕ ŕäě˙íiöü"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
#, fuzzy
msgid "What type of partitioning?"
msgstr "ßęi ňűď äđóęŕđęi âű ěŕĺöĺ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1946,7 +1812,7 @@ msgstr ""
"Ęŕëł âű äóěŕĺöĺ âűęŕđűńňî˘âŕöü LILO - ňŕäű ăýňŕ íĺ áóäçĺ ďđŕöŕâŕöü, LILO íĺ "
"âűęŕđűńňî˘âŕĺöŕ, ňŕäű /boot íĺ ďŕňđýáíű."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1958,7 +1824,7 @@ msgstr ""
"Ęŕëi áóäçĺ âűęŕđűńňî˘âŕööŕ äűńďĺ÷ŕđ çŕăđóçęi LILO, íĺ çŕďŕě˙ňŕéöĺ äŕäŕöü\n"
"đŕçäçĺë /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1968,137 +1834,137 @@ msgstr ""
"Í˙ěŕ çŕăđóç÷űęó, ˙ęi á çŕăđóçi˘ń˙ áĺç /boot đŕçäçĺëŕ.\n"
"Äŕäŕéöĺ đŕçäĺë /boot, ęŕëi ëŕńęŕ."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ňŕáëiöŕ đŕçě˙ř÷ýíí˙ ďđűëŕäű %s áóäçĺ çŕďińŕíŕ íŕ äűńę!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Ęŕá çě˙íĺííi ˘ńňóďiëi ˘ äçĺ˙ííĺ, íĺîáőîäíŕ ďĺđŕçŕăđóçiööŕ"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Óńĺ äŕäçĺíűĺ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű ďŕńë˙ ôŕđěŕňŕâŕíí˙"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Ôŕđěŕňŕâŕííĺ"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ôŕđěŕňŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëó %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëó %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid íĺ ďđŕöŕçäîëüíű"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Ďŕěĺđű ýęđŕíó: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Ďđűëŕäŕ:"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ëiňŕđŕ äë˙ DOS-äűńęó: %s (íŕ˘ăŕä)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Ňűď: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Iě˙: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Ďŕ÷ŕňŕę: ńĺęňŕđ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Ďŕěĺđ: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s ńĺęňŕđŕ˘"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Öűëiíäđű ç %d ďŕ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Ôŕđěŕňŕâŕííĺ\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Íĺ ŕäôŕđěŕňŕâŕíŕ\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Çŕěŕíöiđŕâŕíŕ\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Ôŕéë(ű) âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2106,27 +1972,27 @@ msgstr ""
"Çŕăđóçŕ÷íű đŕçäçĺë ďŕ äŕěŕ˘ëĺííţ\n"
" (äë˙ çŕăđóçęi MS-DOS, ŕ íĺ äë˙ lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Óçđîâĺíü %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Ďŕěĺđ ôđŕăěĺíňó %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äűńęi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Iě˙ ôŕéëó âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2134,7 +2000,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2142,65 +2008,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Ďŕěĺđ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăĺŕěĺňđű˙: %s öűëiíäđŕ˘, %s ăŕëîâŕę, %s ńĺęňŕđŕ˘\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Iíôŕđěŕöű˙: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-äűńęi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ňűď ňŕáëiöű đŕçäçĺëŕ˘: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "íŕ řűíĺ %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Îďöűi: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Ňűď ôŕéëŕâŕé ńińňýěű:"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű (˙ăî äŕ˘ćűí˙ ďŕâiííŕ áűöü íĺ ěĺíĺé çŕ %d ëiňŕđŕ˘)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2211,36 +2077,66 @@ msgstr "Çě˙íiöü ňűď đŕçäçĺëó"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Ŕ˘ňýíňűôięŕöű˙"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "öięŕâŕ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Iě˙ ęŕđűńňŕëüíięó:"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Iě˙ ęŕđűńňŕëüíięó:"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS ńĺđâĺđ"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ďŕěűëęŕ ôŕđěŕňŕâŕíí˙ %s"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Íĺ âĺäŕţ ˙ę ŕäôŕđěŕňŕâŕöü %s ç ňűďŕě %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "ďŕěűëęŕ đŕçěŕíöiđŕâŕíí˙ %s: %s"
@@ -2257,72 +2153,325 @@ msgstr ""
msgid "server"
msgstr "ńĺđâĺđ"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
#, fuzzy
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Âű íĺ ěîćŕöĺ đŕçáiâŕöü íŕ đŕçäĺëű, ďŕěĺđ ˙ęiő ěĺíĺé çŕ 16 Ěá"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Âű íĺ ěîćŕöĺ đŕçáiâŕöü íŕ đŕçäĺëű, ďŕěĺđ ˙ęiő ěĺíĺé çŕ 32 Ěá"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Ďóíęň ěŕíöiđŕâŕíí˙ ďŕâiíĺí ďŕ÷űíŕööŕ ç /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Óćî ¸ńöü đŕçäçĺë ç ďóíęňŕě ěŕíöiđŕâŕíí˙ %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ăýňű ęŕňŕëîă ďŕâłíĺí çíŕőîäçłööŕ ˘íóňđű ęŕđŕí¸âŕé ôŕéëŕâŕé ńłńňýěű"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Âŕě íĺŕáőîäíŕ çŕäŕöü ďđŕâiëüíű ňűď ôŕéëŕâŕé ńińňýěű (ext2, reiserfs)\n"
"äë˙ ăýňŕé ęđîďęi ěŕíöiđŕâŕíí˙\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Âŕě íĺŕáőîäíŕ çŕäŕöü ďđŕâiëüíű ňűď ôŕéëŕâŕé ńińňýěű (ext2, reiserfs)\n"
"äë˙ ăýňŕé ęđîďęi ěŕíöiđŕâŕíí˙\n"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ďŕěűëęŕ ŕäęđűöö˙ %s äë˙ çŕďińó: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ďŕěűëęŕ: äë˙ ńňâŕđýíí˙ íîâűő ôŕéëŕâűő ńińňýěࢠíĺ çíŕéäçĺíű ŕäďŕâĺäíű˙ \n"
"ďđűëŕäű. Ďđŕâĺđöĺ ŕáńňŕë˙âŕííĺ äë˙ ďîřóęó iěŕâĺđíŕé ďđű÷űíű."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Âű íĺ ńňâŕđűëi ŕíi˙ęiő đŕçäçĺëŕ˘!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Ŕääŕëĺíű ďđűíňýđ"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ŕăóëüíű"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Ŕäđŕńű ďŕě˙öł ęŕđňű (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "ôŕđěŕňŕâŕííĺ"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Çě˙íiöü ňűď đŕçäçĺëó"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Âűőŕä"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "Ŕäě˙íiöü"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Ďîđň ěűřű"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Ŕäđŕńű ďŕě˙öł ęŕđňű (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Ŕäěĺíŕ"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Ďîđň ěűřű"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Ŕďińŕííĺ"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Ŕ˘ňýíňűôięŕöű˙"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Ŕá˙đűöĺ ôŕéë"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Ďđűëŕäŕ-řëţç"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 ęíîďęi"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Âűçíŕ÷ýííĺ ćîđńňęŕăŕ äűńęó"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Ăë. ŕďińŕííĺ ŕáńňŕë˙âŕíí˙"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Iíôŕđěŕöű˙"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Íŕńňđîéęŕ ěűřű"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Ęŕëi ëŕńęŕ, ďŕ÷ŕęŕéöĺ"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d ńĺęóíäŕ˘"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Ŕ˘ňŕďîřóę"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2336,7 +2485,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2434,9 +2583,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2618,7 +2766,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2630,9 +2778,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2679,21 +2826,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2709,9 +2855,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Ó ăýňűě ďóíęöĺ, âű ďŕâłííű ŕáđŕöü äçĺ íŕ âŕřűě ćîđńęłě \n"
"äűńęó óńňŕë˙âŕöü ŕďĺđŕöűéíóţ ńłńňýěó Mandrake Linux. Ęŕëł äűńę ďóńňű\n"
@@ -2790,9 +2936,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2939,38 +3084,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3073,11 +3212,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3132,7 +3271,7 @@ msgstr ""
"âĺëüěł ńęëŕäŕíűěł, ęŕëł âű íĺ ěŕĺöĺ äîáđűő âĺäࢠó GNU/Linux.\n"
" Ňŕěó íĺ ŕáłđŕéöĺ ăýňű ęëŕń łíńňŕë˙öűł, ęŕëł âű íĺ âĺäŕĺöĺ ňîĺ, řňî đîáłöĺ."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3147,7 +3286,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3162,7 +3301,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3178,29 +3317,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3222,7 +3361,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3244,7 +3383,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3252,7 +3391,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3273,7 +3412,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3298,7 +3437,7 @@ msgstr ""
"Ó ňŕęiě âűďŕäęó ďŕňđýáíŕ âűäŕëiöü ŕäďŕâĺäíű˙ çŕďińű. Ŕëĺ ć ňŕäű âŕě \n"
"ďŕňđýáíŕ áóäçĺ çŕăđóçŕ÷íŕ˙ äűńęĺňŕ, ęŕá çŕăđóçiööŕ!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3314,29 +3453,28 @@ msgstr ""
"Ęŕëi âű íĺ ŕä÷óâŕĺöĺ ŕáńŕëţňíŕ äŕęëŕäíŕ, řňî âű đîáiöĺ, \n"
"ŕá˙đűöĺ \"Ďĺđřű ńĺęňŕđ íŕ äűńęó (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3345,7 +3483,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3370,11 +3508,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3384,9 +3522,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3398,7 +3535,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3424,7 +3561,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3451,18 +3588,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3470,12 +3606,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3491,7 +3626,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3503,7 +3638,7 @@ msgstr ""
"áóäóöü\n"
" çíłř÷ŕíű ł łő íĺěŕă÷űěŕ áóäçĺ ŕäíŕâłöü."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3522,7 +3657,7 @@ msgstr ""
"\n"
"Íŕöłńíłöĺ \"Ŕäěĺíŕ\" ęŕá ŕäě˙íłöü ŕďĺđŕöűţ áĺç ńňđŕňű äŕäçĺíűő ł đŕçäçĺëŕ˘"
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3530,12 +3665,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3550,26 +3685,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Íĺěŕă÷űěŕ âűęŕđűńňî˘âŕöü broadcast áĺç äŕěĺíŕ NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëó %s"
@@ -3599,7 +3734,7 @@ msgstr "Âű ďŕâiííű ěĺöü đŕçäçĺë swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3607,61 +3742,61 @@ msgstr ""
"\n"
"Óń¸ ŕäíî ďđŕö˙ăâŕöü?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Âű ďŕâiííű ěĺöü đŕçäçĺë swap"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Âűęŕđűńňî˘âŕöü íĺçŕí˙ňóţ ďđŕńňîđó"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Âűęŕđűńňî˘âŕöü ińíóţ÷ű đŕçäçĺë"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Í˙ěŕ ińíóţ÷űő đŕçäçĺëŕ˘, ˙ęi˙ ěîćíŕ âűęŕđűńňŕöü"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Âűęŕđűńňî˘âŕöü đŕçäçĺë Windows äë˙ âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Âűáŕđ ďŕěĺđŕ˘"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Ęŕđŕí¸âű đŕçäçĺë ˘ Má: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ďŕěĺđ swap đŕçäçĺëó ˘ Má:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Âűęŕđűńňî˘âŕöü íĺçŕí˙ňóţ ďđŕńňîđó íŕ đŕçäçĺëĺ Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Âűëi÷ýííĺ ěĺćࢠôŕéëŕâŕé ńińňýěű Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3670,13 +3805,16 @@ msgstr ""
"Ó ďđŕăđŕěű çěĺíű ďŕěĺđࢠđŕçäçĺëŕ FAT íĺ ŕňđűěŕëŕń˙\n"
"ŕďđŕöŕâŕöü Âŕř đŕçäçĺë, ďŕěűëęŕ: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Âŕř đŕçäçĺë ç Windows çŕíŕäňŕ ôđŕăěĺíňŕâŕíű. \n"
"Đýęŕěĺíäóĺě ńďŕ÷ŕňęó çŕďóńöiöü ďđŕăđŕěó ``defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3697,55 +3835,55 @@ msgstr ""
"äŕäçĺíűő i ňîëüęi ďîňűě çíî˘ â˙đíiöĺń˙ äŕ ďđŕăđŕěű ˘ńňŕë˙âŕíí˙.\n"
"Ęŕëi ďŕäđűőňŕâŕëiń˙, íŕöińíiöĺ Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "ßęóţ ďđŕńňîđó çŕőŕâŕöü äë˙ Windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Đŕçäçĺë %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ŕ˘ňŕçě˙íĺííĺ ďŕěĺđࢠíĺ ŕňđűěŕëŕń˙ äë˙ đŕçäçĺëó FAT %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Íĺ çíîéäçĺíŕ đŕçäçĺëࢠFAT äë˙ çě˙íĺíí˙ ďŕěĺđࢠŕëüáî âűęŕđűńňŕíí˙\n"
"˘ ˙ęŕńöi âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű (öi íĺäŕńňŕňęîâŕ ďđŕńňîđű íŕ äűńęó)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Ńö¸đöi äŕäçĺíű˙ íŕ ˘ńiě äűńęó"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Âűäŕëiöü Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Íŕ ˙ęi ç ěŕţ÷űőń˙ ćîđńňęiő äűńęࢠÂű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Óńĺ ińíóţ÷ű˙ đŕçäçĺëű íŕ äűńęó %s i äŕäçĺíű˙ íŕ iő áóäóöü ńňđŕ÷ŕíű"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Âűęŕđűńňî˘âŕöü ińíóţ÷ű đŕçäçĺë"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Âűęŕđűńňî˘âŕöü fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3754,12 +3892,12 @@ msgstr ""
"Âű ěîćŕöĺ ö˙ďĺđ đŕçáiöü âŕř äűńę %s\n"
"Ďŕ çŕęŕí÷ýííi íĺ çŕáóäçüöĺń˙ çŕőŕâŕöü çě˙íĺííi, ńęŕđűńňŕ˘řű `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Âűęŕđűńňî˘âŕöü íĺçŕí˙ňóţ ďđŕńňîđó íŕ đŕçäçĺëĺ Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
@@ -3768,16 +3906,16 @@ msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ěŕéńňŕđ ďŕäđűőňî˘ęi đŕçäçĺëࢠDrakX çíŕéřî˘ íŕńňóďíű˙ âŕđű˙íňű:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ďŕäđűőňî˘ęŕ đŕçäĺëࢠíĺ ˘äŕëŕń˙: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Äŕëó÷ýííĺ äŕ ńĺňęi"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
@@ -3789,12 +3927,12 @@ msgstr ""
"Óçíięëŕ ďŕěűëęŕ, ˙ęóţ íĺ ŕňđűěëłâŕĺööŕ ęŕđýęňíŕ ŕďđŕöŕâŕöü,\n"
"ňŕěó ďđŕö˙ăâŕéöĺ íŕ ńâŕţ đűçűęó."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3806,12 +3944,12 @@ msgstr ""
"Ďđŕâĺđöĺ cdrom íŕ âŕřűě ęŕěďóňŕđű, âűęŕđűńňî˘âŕţ÷ű\"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Äűńęŕâîä íĺäŕńňóďíű"
@@ -3821,9 +3959,9 @@ msgstr "Äűńęŕâîä íĺäŕńňóďíű"
msgid "Entering step `%s'\n"
msgstr "Ďĺđŕőîä íŕ ęđîę `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3833,203 +3971,158 @@ msgstr ""
"ďđŕăđŕěó ˘ńňŕë˙âŕíí˙. Äë˙ ăýňŕăŕ íŕöińíiöĺ `F1' ó ÷ŕń çŕăđóçęi, ŕ ďîňűě\n"
"íŕá˙đűöĺ `text' i íŕöińíiöĺ <ENTER>."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Ęëŕń Óńňŕë˙âŕíí˙"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ŕäçií ç ęëŕńࢠóńňŕë˙âŕíí˙:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ŕăóëüíű ďŕěĺđ äë˙ ŕáđŕíűő ăđóďࢠďđűáëiçíŕ đî˘íű %d Ěá.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăó ďŕěĺđó,\n"
-"ŕá˙đűöĺ ŕäńîňŕę ďŕęĺňŕ˘, ˙ęi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü.\n"
-"\n"
-"Ďđű íiçęiě ŕäńîňęó áóäóöü óńňŕë˙âŕíű ňîëüęi íŕéáîëüř âŕćíű˙ ďŕęĺňű,\n"
-"ŕ ďđű 100% áóäóöü óńňŕë˙âŕíű ˘ńĺ ŕáđŕíű˙ ďŕęĺňű."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Íŕ âŕřűě äűńęó ¸ńöü ěĺńöŕ ňîëüęi äë˙ %d%% ăýňűő ďŕęĺňŕ˘.\n"
-"\n"
-"Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăŕ, ňî\n"
-"ďŕçíŕ÷öĺ ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙.\n"
-"Ďđű ěŕëűě ŕäńîňęó áóäóöü óńňŕë˙âŕíű íŕéáîëüř âŕćíű˙ ďŕęĺňű;\n"
-"ďđű ŕäńîňęó %d%% áóäçĺ ˘ńňŕë˙âŕíŕ ńňîëüęi ďŕęĺňࢠęîëüęi ěŕă÷űěŕ."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Áîëüř äŕęëŕäíű âűáŕđ ěîćíŕ áóäçĺ çđŕáiöü íŕ íŕńňóďíűě ęđîęó."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ŕăóëüíű ďŕěĺđ: %d / %d Má"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Äđýííű ďŕęĺň"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Iě˙: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Âĺđńi˙: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Ďŕěĺđ: %d Ká\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Çíŕ÷íŕńöü: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Âű íĺ ěîćŕöĺ âűáđŕöü ăýňű ďŕęĺň, ňŕěó ˙ę íĺ őŕďŕĺ ěĺńöŕ äë˙ ˙ăî ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü äŕäŕíű äŕ ńińňýěű"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü âűäŕëĺíű"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Âű íĺ ěîćŕöĺ âűëó÷ŕöü ł ŕäě˙í˙öü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ăýňŕ ŕáŕâ˙çęîâű ďŕęĺň, ˙ăî âűëó÷ýííĺ íĺëüăŕ ŕäě˙íiöü"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó. ¨í óćî ˘ńňŕë˙âŕíű"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ăýňű ďŕęĺň ďŕâiíĺí áűöü ŕáíî˘ëĺíű\n"
"Âű ˘ďý˘íĺíű, řňî őî÷ŕöĺ ŕäě˙íiöü âűëó÷ýííĺ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó. ßăî ďŕňđýáíŕ ŕáíŕâiöü"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Óńňŕ븢ęŕ"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Çŕőŕâŕííĺ íŕ äűńęĺňó"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Âűäŕëiöü ç ńińňýěű"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Óńňŕ븢âŕĺě"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "×ŕęŕĺööŕ"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Çŕńňŕëîń˙ ÷ŕńó "
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
#, fuzzy
-msgid "Please wait, preparing installation"
+msgid "Please wait, preparing installation..."
msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Ďđűí˙öü"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Ŕäęŕçŕöü"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4045,17 +4138,17 @@ msgstr ""
"Ęŕëi âű íĺ ěŕĺöĺ ˙ăî, íŕöińíiöĺ Ŕäě˙íiöü, ęŕá ŕäě˙íiöü óńňŕë˙âŕííĺ ç ăýňŕăŕ "
"Cd."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Óń¸ đî˘íŕ ďđŕö˙ăâŕöü?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
@@ -4100,11 +4193,11 @@ msgstr "Ŕäáűëŕń˙ ďŕěűëęŕ"
msgid "Do you really want to leave the installation?"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Ëłöýíçłéíŕ˙ äŕěîâŕ"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4119,7 +4212,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4225,114 +4318,118 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Ęëŕâi˙ňóđŕ"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "ßęi ęëŕń óńňŕë˙âŕíí˙ âű ćŕäŕĺöĺ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Install/Update"
msgstr "Óńňŕ븢ęŕ"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Is this an install or an update?"
msgstr "Ŕá˙đűöĺ ˘ńňŕë˙âŕííĺ öi ŕáíŕ˘ëĺííĺ"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Đýęŕěĺíäŕâŕíŕ"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ýęńďĺđň"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Ďîđň ěűřű"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ďîńë˙äî˘íű ďîđň, äŕ ˙ęîăŕ ďŕäęëţ÷ŕíŕ âŕřŕ˙ ěűř."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Íŕńňđîéęŕ ęŕđň PCMCIA ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Íŕńňđîéęŕ IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "í˙ěŕ äŕńňóďíűő đŕçäçĺëŕ˘"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Ŕá˙đűöĺ ďóíęňű ěŕíöiđŕâŕíí˙"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4345,7 +4442,7 @@ msgstr ""
"\n"
"Öi ćŕäŕĺöĺ ńňđŕöiöü óńĺ đŕçäçĺëű?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4353,140 +4450,143 @@ msgstr ""
"DiskDrake íĺ çěîă ďđŕâiëüíŕ ďđŕ÷űňŕöü ňŕáëiöó đŕäçĺëŕ˘.\n"
"Ďđŕö˙ăâŕéöĺ ňîëüęi íŕ ńâŕţ đűçűęó!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Ęŕđŕí¸âű đŕçäçĺë íĺ çíîéäçĺíű"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Ęŕđŕí¸âű đŕçäçĺë"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "ßęi đŕäçĺë ęŕđŕí¸âű (/) äë˙ âŕřŕé ńińňýěű?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ęŕá ěŕäűôięŕöű˙ ňŕáëiöű đŕçäçĺëࢠçäĺéńíiëŕń˙, ďŕňđýáíŕ ďĺđŕçŕăđóçęŕ."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Âűáŕđ đŕçäçĺëࢠäë˙ ôŕđěŕňŕâŕíí˙"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Ďđŕâĺđűöü íŕ íŕ˙˘íŕńöü äđýííűő áëîęŕ˘?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Ôŕđěŕňŕâŕíí˙ đŕçäçĺëŕ˘"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ńňâŕđýííĺ i ôŕđěŕňŕâŕííĺ ôŕéëŕ %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Íĺ őŕďŕĺ ěĺńöŕ ˘ áóôĺđű ďŕäęŕ÷ęi (swap) äë˙ ˘ńňŕë˙âŕíí˙, ďŕâ˙ëi÷öĺ ˙ăî."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Ďđŕăë˙ä äŕńňóďíűő ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Ďđŕăë˙ä äŕńňóďíűő ďŕęĺňŕ˘"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Ďîřóę ďŕęĺňࢠäë˙ ŕáíŕ˘ëĺíí˙"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó. ¨í óćî ˘ńňŕë˙âŕíű"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Âŕřŕ ńińňýěŕ íĺ ěŕĺ äŕńňŕęîâŕ ěĺńöŕ äë˙ ˘ńňŕë˙âŕíí˙ öi ŕáíŕ˘ëĺíí˙ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Ďî˘íű (%dMá)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ěiíiěŕëüíű (%dMá)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Đýęŕěĺíäŕâŕíŕ (%dĚá)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Çŕőŕâŕííĺ íŕ äűńęĺňó"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ óńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "×ŕęŕéöĺ"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4496,16 +4596,16 @@ msgstr ""
"Ęŕëi âű íĺ ěŕĺöĺ ŕíi âîäíŕăŕ ç ăýňűő CD äűńęŕ˘, íŕöińíiöĺ Ŕäě˙íiöü.\n"
"Ęŕëi íĺęŕňîđűő ç CD äűńęࢠíĺ ěŕĺöĺ, ŕäě˙íiöĺ iő âűäç˙ëĺííĺ i íŕöińíiöĺ Îę."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ďŕçíŕ÷ŕíű \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4514,23 +4614,23 @@ msgstr ""
"Óńňŕë˙âŕííĺ ďŕęĺňó %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4606,171 +4706,202 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ńóâ˙çü ç ëţđŕě äë˙ ŕňđűěŕíí˙ ńďińó äŕńňóďíűő ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Âűáŕđ ëţńňđŕ äë˙ ŕňđűěŕíí˙ ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ńóâ˙çü ç ëţđŕě äë˙ ŕňđűěŕíí˙ ńďińó äŕńňóďíűő ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "ßęi âŕř ÷ŕńŕâű ďî˙ń?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Âŕř ńińňýěíű ăŕäçiííię óńňŕë˙âŕíű íŕ GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS ńĺđâĺđ:"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "No printer"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Öi ¸ńöü ó âŕń iířű?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
#, fuzzy
msgid "Mouse"
msgstr "Ďîđň ěűřű"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Ďđűíňýđ"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
#, fuzzy
msgid "ISDN card"
msgstr "Óíóňđŕíŕ˙ ISDN ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
#, fuzzy
msgid "Sound card"
msgstr "Ńňŕíäŕđňíű"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Âűęŕđűńňî˘âŕöü NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Âűäŕëiöü Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ďŕđîëü äë˙ root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Í˙ěŕ ďŕđîëţ"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű (˙ăî äŕ˘ćűí˙ ďŕâiííŕ áűöü íĺ ěĺíĺé çŕ %d ëiňŕđŕ˘)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "ńĺđâĺđ"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "Ŕ˘ňýíňűôięŕöű˙ NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS ńĺđâĺđ:"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Ŕ˘ňýíňűôięŕöű˙"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS ńĺđâĺđ:"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4797,19 +4928,19 @@ msgstr ""
"Ęŕëi ćŕäŕĺöĺ ńňâŕđűöü çŕăđóçŕ÷íű äűńę çŕđŕç, óńňŕ˘öĺ äűńęĺňó ˘ ďĺđřű\n"
"äűńęŕâîä i íŕöińíiöĺ \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Ďĺđřű äűńęŕâîä"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Äđóăi äűńęŕâîä"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Ďđŕďóńöiöü"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4835,7 +4966,7 @@ msgstr ""
"Ćŕäŕĺöĺ ńňâŕđűöü çŕăđóçŕ÷íű äűńę çŕđŕç?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4844,28 +4975,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Âűáŕ÷ŕéöĺ, ŕëĺ äűńęŕâîä íĺäŕńňóďíű"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Ŕá˙đűöĺ äűńęŕâîä, ó ˙ęiě áóäçĺ ńňâŕđŕööŕ çŕăđóçŕ÷íŕ˙ äűńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Ńňâŕđýííĺ çŕăđóçŕ÷íŕé äűńęĺňű"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Ďŕäđűőňî˘ęŕ çŕăđóç÷űęŕ"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4873,11 +5004,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4885,16 +5016,16 @@ msgstr ""
"Ďŕěűëęŕ ˘ńňŕë˙âŕíí˙ ŕboot, \n"
"ńďđŕáŕâŕöü óńňŕ븢âŕöü, íĺăëĺäç˙÷ű íŕ ěŕă÷űěŕńöü ďŕđóřýíí˙ ďĺđřŕăŕ đŕçäĺëó?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Óńňŕë˙âŕííĺ çŕăđóç÷űęó"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Ďđŕöýń óńňŕë˙âŕíí˙ çŕăđóç÷űęŕ íĺ ŕňđűěŕ˘ń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4905,18 +5036,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4925,7 +5055,8 @@ msgstr ""
"Íĺęŕňîđű˙ ęđîęi íĺ çŕâĺđřŕíű.\n"
"Âű ńŕďđŕ˘äű ćŕäŕĺöĺ âűéńöi çŕđŕç?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4936,7 +5067,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4950,18 +5081,22 @@ msgstr ""
"çâ˙đňŕéöĺńü íŕ \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Iíôŕđěŕöű˙ ďŕ íŕńňđîéęĺ âŕřŕé ńińňýěű ¸ńňü ˘ ďŕńë˙-˘ńňŕë¸âŕ÷íŕé\n"
"ăëŕâĺ âŕřŕăŕ Äŕďŕěîćíięŕ Ęŕđűńňŕëüíięó ç Ŕôiöűéíŕăŕ Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4970,16 +5105,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Ŕ˘ňŕěŕňű÷íű"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Replay"
msgstr "Ďĺđŕçŕăđóçiöü"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
@@ -5008,422 +5143,406 @@ msgstr ""
msgid "Choose a file"
msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Ęŕëi ëŕńęŕ, ďŕ÷ŕęŕéöĺ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Iíôŕđěŕöű˙"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Đŕçăŕđíóöü äđýâŕ"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Çăŕđíóöü äđýâŕ"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Ďĺđŕęëţ÷ýííĺ ďŕěić óďŕđŕäęŕâŕííĺě ďŕ ăđóďĺ i ŕńîáęŕő"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Äđýííű âűáŕđ, ďŕńďđŕáóéöĺ ˙ř÷ĺ\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Îďöűi: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "×ĺřńęi (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Í˙ěĺöęi"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Ińďŕíńęi"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Ôiíńęi"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ôđŕíöóçńęi"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Íŕđâĺćńęi"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Ďîëüńęi"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Đóńęi"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Řâĺöęi"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iđŕíńęi"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Ŕđě˙íńęi (ńňŕđű)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Ŕđě˙íńęi (typewriter)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Ŕđě˙íńęi (ôŕíĺňű÷íű)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Ŕçĺđáŕéäćŕíńęł (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Áĺëüăiéńęi"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ŕđě˙íńęi (ôŕíĺňű÷íű)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Áŕëăŕđńęi"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Áđŕçiëüńęi (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Áĺëŕđóńęł"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Řâĺéöŕđńęi (Í˙ěĺöęŕ˙ đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Řâĺéöŕđńęi (Ôđŕíöóçńęŕ˙ đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "×ĺřńęi (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Í˙ěĺöęi (í˙ěŕ çŕáëŕęiđŕâŕíűő ęëŕâiř)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Äŕöęi"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Íŕđâĺćńęi)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Ýńňîíńęi"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Ăđóçiíńęi (\"Đóńęŕ˙\" đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Ăđóçiíńęi (\"Ëŕöiíńęŕ˙\" đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Ăđý÷ŕńęi"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ěŕäü˙đńęi"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Őŕđâŕöęi"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "I˘đűň"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "I˘đűň (ôŕíĺňű÷íű)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iđŕíńęi"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Ińëŕíäńęi"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Iňŕëü˙íńęi"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "ßďîíńęi 106 ęëŕâiř"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "UK ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Ëŕöiíŕ-Ŕěĺđűęŕíńęi"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Ëiňî˘ńęi AZERTY (ńňŕđű)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Ëiňî˘ńęi AZERTY (íîâű)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëiňî˘ńęi \"íóěŕđ đŕäęŕ\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëiňî˘ńęi \"ôŕíĺňű÷íű\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Ăŕëŕíäńęi"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Ďîëüńęi (ńňŕíäŕđňíŕ˙ đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Ďîëüńęi (qwertz đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Ďŕđňóăŕëüńęi"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Ęŕíŕäńęi (Ęâĺáýę)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Đóńęi (ß-Â-Ĺ-Đ-Ň-Č)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Đóńęi (ß-Â-Ĺ-Đ-Ň-Č)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Đóńęi (ß-Â-Ĺ-Đ-Ň-Č)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Ńëŕâĺíńęi"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Ńëŕâŕöęi (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Ńëŕâŕöęi (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Ŕçĺđáŕéäćŕíńęł (ęłđűëłöŕ)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Ňŕáëiöŕ"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Ňŕéńęŕ˙ ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Ňŕéńęŕ˙ ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Ňóđýöęi (ňđŕäűöű¸íŕ˙ \"F\" ěŕäýëü)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Ňóđýöęi (ńó÷ŕńíŕ˙ \"Q\" ěŕäýëü)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Óęđŕiíńęi"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US ęëŕâi˙ňóđŕ (ěićíŕđîäíŕ˙)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Âüĺňíŕěńęi \"íóěŕđ đŕäęŕ\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Ŕçĺđáŕéäćŕíńęł (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5436,7 +5555,31 @@ msgstr "Ěŕíöiđŕâŕííĺ äűńęó %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Íóěŕđ ňýëĺôîíó"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëŕ˘"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5479,10 +5622,6 @@ msgstr "2 ęíîďęi"
msgid "Generic 2 Button Mouse"
msgstr "Çâű÷ŕéíŕ˙ ěűř ç 2 ęíîďęŕěł"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ŕăóëüíű"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Ç ęîëŕě"
@@ -5548,40 +5687,56 @@ msgstr "í˙ěŕ"
msgid "No mouse"
msgstr "Í˙ěŕ ěűřű"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "Đóřöĺ ęîëŕě ěűřű!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
#, fuzzy
msgid "Finish"
msgstr "Ôiíńęi"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Äŕëĺé ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ăýňŕ äŕęëŕäíŕ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Iíôŕđěŕöű˙"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Đŕçăŕđíóöü äđýâŕ"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Çăŕđíóöü äđýâŕ"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Ďĺđŕęëţ÷ýííĺ ďŕěić óďŕđŕäęŕâŕííĺě ďŕ ăđóďĺ i ŕńîáęŕő"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
@@ -5627,7 +5782,7 @@ msgstr ""
"Íi âîäíű ethernet ńĺňęŕâű ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ íĺ âűçíŕ÷ŕíű. Ęŕëi ëŕńęŕ, "
"ńęŕđűńňŕéöĺ ęŕíôiăóđŕöűéíű iíńňđóěýíň."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Ďŕçíŕ÷öĺ ńĺňęŕâű iíňýđôĺéń"
@@ -5642,7 +5797,7 @@ msgstr ""
msgid "no network card found"
msgstr "ńĺňęŕâŕ˙ ęŕđňŕ íĺ çíîéäçĺíŕ"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Íŕńňđîéęŕ ńĺňęi"
@@ -5658,15 +5813,15 @@ msgstr ""
"íŕďđűęëŕä ``mybox.mylab.myco.com''.\n"
"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçó, ęŕëi ¸í ó âŕń ¸ńöü."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Iě˙ ěŕřűíű"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
@@ -5716,7 +5871,7 @@ msgstr "Íŕńňđîéęŕ ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Ŕá˙đűöĺ âŕřŕăŕ ďđŕâŕéäŕđŕ.\n"
"ęŕëi ˙ăî í˙ěŕ ˘ ăýňűě ńďińĺ, ŕá˙đűöĺ ňűď ``Iířű''"
@@ -5738,14 +5893,14 @@ msgstr "Ďŕäęëţ÷ýííĺ"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Ďŕäęëţ÷ýííĺ \n"
" íĺ ďđŕç D-ęŕíŕë (âűëó÷ŕíű˙ ęŕíŕëű)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "ßęi ďđŕňŕęîë âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
#: ../../network/isdn.pm_.c:199
@@ -5769,7 +5924,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ęŕëi âű ěŕĺöĺ ISA ęŕđňó, âĺëi÷űíi íŕ íŕńňóďíűě ýęđŕíĺ ďŕâiííű áűöü "
@@ -5786,13 +5942,13 @@ msgid "Continue"
msgstr "Ďđŕö˙ăíóöü"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "ßęŕ˙ ˘ âŕń ISDN ęŕđňŕ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Âűçíŕ÷ŕíŕ ISDN PCI ęŕđňŕ, ŕëĺ íĺâ˙äîěű ˙ĺ ňűď. Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ PCI "
"ęŕđňó íŕ íŕńňóďíűě ýęđŕíĺ."
@@ -5809,49 +5965,49 @@ msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
msgid "Dialup options"
msgstr "Ďŕđŕěĺňđű ęŕěóňŕâŕíŕăŕ çëó÷ýíí˙ (Dialup)"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Íóěŕđ ňýëĺôîíó"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Iě˙ (login ID)"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "íŕ ŕńíîâĺ ńęđűďňó"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "íŕ ŕńíîâĺ ňýđěiíŕëó"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Iě˙ äŕěĺíó"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Ďĺđřű ńĺđâĺđ DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Äđóăi ńĺđâĺđ DNS:"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5859,7 +6015,7 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
@@ -5868,12 +6024,12 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
@@ -5882,38 +6038,38 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Íŕńňđîéęŕ ISDN"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5927,12 +6083,12 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5940,106 +6096,113 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+#, fuzzy
+msgid "Expert Mode"
+msgstr "Ýęńďĺđň"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Íŕńňđîéęŕ ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Ńĺňęŕâű iíňýđôĺéń"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
#, fuzzy
msgid "LAN connection"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Ŕá˙đűöĺ iíńňđóěĺíň, ˙ęi ćŕäŕĺöĺ ńęŕđűńňŕöü"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
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:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Âű ćŕäŕĺöĺ, ęŕá ăýňŕĺ çëó÷ýííĺ ńňŕđňŕâŕëŕ ďđű çŕăđóçöű?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
#, fuzzy
msgid "Network configuration"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6047,35 +6210,35 @@ msgid ""
"%s"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
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:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6085,38 +6248,43 @@ msgstr ""
"Ęîćíű ďóíęň ďŕâiíĺí áűöü çŕďî˘íĺíű ˙ę IP ŕäđŕń ˘ äçĺń˙ňęîâŕ-ęđîďęŕâŕé \n"
"íŕňŕöűi (íŕďđűęëŕä, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Íŕńňđîéęŕ ńĺňęŕâŕé ďđűëŕäű %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "Ńĺđâĺđ XFree86: %s\n"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP ŕäđŕń"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Ěŕńęŕ ńĺňęi"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Ŕ˘ňŕěŕňű÷íű IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Ńňâŕđűöü çŕăđ. äűńę"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ŕäđŕń ďŕâiíĺí áűöü ó ôŕđěŕöĺ 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6128,66 +6296,66 @@ msgstr ""
"íŕďđűęëŕä ``mybox.mylab.myco.com''.\n"
"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçó, ęŕëi ¸í ó âŕń ¸ńöü."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS ńĺđâĺđ"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Ďđűëŕäŕ-řëţç"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Íŕńňđîéęŕ proxy ęýřóţ÷űő ńĺđâĺđŕ˘"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy ďŕâiíĺí áűöü http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy ďŕâiíĺí áűöü ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Öi ćŕäŕĺöĺ çŕđŕç ďŕńďđŕáŕâŕöü äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
@@ -6196,309 +6364,314 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Íŕńňđîéęŕ äŕëó÷ýíí˙ äŕ Iíňýđíýňó"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Ęŕëi ëŕńęŕ, çŕďî˘íiöĺ öi ďŕçíŕ÷öĺ ďîëĺ íićýé"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ ęŕđňű"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Ŕäđŕńű ďŕě˙öł ęŕđňű (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO ęŕđňű"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 ęŕđňű"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 ęŕđňű"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Âŕř ŕńŕáińňű ňýëĺôîííű íóěŕđ"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Iě˙ ďđŕâŕéäŕđó, íŕďđűęëŕä ďđŕâŕéäŕđ.net"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Íóěŕđ ňýëĺôîíó ďđŕâŕéäŕđŕ"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 ďđŕâŕéäŕđó"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 ďđŕâŕéäŕđó"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Âűáŕđ ęëŕâi˙ňóđű"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Đýćűě çëó÷ýíí˙"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Iě˙ äë˙ ˘âŕőîäó (iě˙ ęŕđűńňŕëüíięó)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Ďŕđîëü äë˙ ˘âŕőîäó"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Ďŕřűđŕíű đŕçäçĺë íĺ ďŕäňđűěëiâŕĺööŕ ăýňŕé ďëŕňôîđěŕé"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Âű ěŕĺöĺ äçiđęó ˘ ňŕáëiöű đŕäçĺëŕ˘, ŕëĺ ˙ íĺ ěŕţ ěŕă÷űěŕńöi ˙ĺ ńęŕđűńňŕöü.\n"
"Ŕäçiíű âűőŕä ó ňűě, ęŕá ďĺđŕě˙ńöiöü ďĺđřŕńíű˙ đŕçäçĺëű ňŕę, ęŕá äçiđęŕ iřëŕ\n"
"ŕäđŕçó çŕ ďŕřűđŕíűě (extended) đŕçäçĺëŕě"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëŕ %s íĺ ŕňđűěŕëŕń˙: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Ďŕěűëęŕ çŕďińó ˘ ôŕéë %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "ďŕâiííű ěĺöü"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "âŕćíŕ"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "âĺëüěi äîáđŕ"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "äîáđŕ"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ěîćŕ áűöü"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Ŕääŕëĺíű ńĺđâĺđ lpd"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Ńĺňęŕâű ďđűíňýđ (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Ńĺđâĺđ äđóęó"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI ďđűíňýđó"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Ďŕěűëęŕ çŕďińó ˘ ôŕéë %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(ěîäóëü %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ńĺđâĺđŕ SMB"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Ďŕ äŕěŕ˘ëĺííţ)"
@@ -6521,12 +6694,12 @@ msgstr ""
"íŕ ăýňŕé ěŕřűíĺ, ¸í áóäçĺ çíîéäçĺíű ŕ˘ňŕěŕňű÷íŕ.\n"
"Ęŕëł Âű íĺ ˘ďý˘íĺíű, ŕá˙đűöĺ \"Ŕääŕëĺíű ńĺđâĺđ CUPS\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
@@ -6557,7 +6730,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ŕäđŕń ďŕâiíĺí áűöü ó ôŕđěŕöĺ 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6566,7 +6739,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP ńĺđâĺđŕ SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Ďîđň"
@@ -6575,22 +6748,13 @@ msgstr "Ďîđň"
msgid "Automatic CUPS configuration"
msgstr "Íŕńňđîéęŕ ěŕäýěó"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6603,14 +6767,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6628,12 +6792,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6647,11 +6811,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6661,35 +6825,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6697,43 +6865,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI ďđűíňýđó"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6741,7 +6909,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6749,73 +6917,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI ďđűíňýđó"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Îďöűi ŕääŕëĺíŕăŕ ďđűíňýđó lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6825,31 +7003,31 @@ msgstr ""
"ďŕçíŕ÷űöü iě˙ ŕääŕëĺíŕăŕ ńĺđâĺđŕ i iě˙ ÷ŕđăi äđóęó,\n"
"ó ˙ęóţ ŕääŕëĺíű ńĺđâĺđ áóäçĺ ŕäďđŕ˘ë˙öü çŕäŕííi."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Ŕääŕëĺíű âóçĺë"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Ŕääŕëĺíű âóçĺë"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Ŕääŕëĺíű âóçĺë"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Îďöűi ďđűíňýđó SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6862,35 +7040,35 @@ msgstr ""
"đýńóđńó, ˙ęi ńďŕëó÷ŕíű ç âűáđŕíűě ďđűíňýđŕě, iě˙ ęŕđűńňŕëüíięó, ďŕđîëü i "
"iíôŕđěŕöűţ ŕá ďđŕöî˘íŕé ăđóďĺ."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Iě˙ ńĺđâĺđó SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP ńĺđâĺđŕ SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Iě˙ äë˙ đŕçěĺđęŕâŕíŕăŕ đýńóđńó"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Ďđŕöî˘íŕ˙ ăđóďŕ"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6914,7 +7092,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6923,7 +7101,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6931,11 +7109,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Îďöűi ďđűíňýđó NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6947,28 +7125,28 @@ msgstr ""
"(íĺ çŕ˘ń¸äű ńóďŕäŕĺ ç iěĺíĺě ó ńĺňöű TCP/IP) i iě˙ ÷ŕđăi äđóęó, ˙ęŕ˙ "
"ŕäďŕâ˙äŕĺ ŕáđŕíŕěó ďđűíňýđó, ŕ ňŕęńŕěŕ iě˙ ęŕđűńňŕëüíięó i ďŕđîëü."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Ńĺđâĺđ äđóęó"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Iě˙ ÷ŕđăi äđóęó"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Îďöűi ńîęĺňó ďđűíňýđó"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6979,60 +7157,56 @@ msgstr ""
"Ęŕá äđóęŕâŕöü ďđŕç ńîęĺň äđóęŕđęi, âŕě íĺŕáőîäíŕ çŕá˙ńďĺ÷űöü\n"
"iě˙ ďđűíňýđó i ěŕă÷űěŕ ˙ăî íóěŕđ ďîđňó."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Iě˙ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Iě˙ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI ďđűíňýđó"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Ŕďińŕííĺ"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7047,28 +7221,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Ăýňŕ äŕęëŕäíŕ?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "ßęi ňűď äđóęŕđęi âű ěŕĺöĺ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7077,18 +7251,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7098,12 +7272,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7111,7 +7285,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7124,7 +7298,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7134,34 +7308,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü äđóę?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7169,45 +7343,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Ňŕę, íŕäđóęŕâŕöü ŕáĺäçâĺ ńňŕđîíęi ňýęńňó"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Ďđűíňýđ"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Ńňŕíäŕđňíű"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7223,7 +7397,7 @@ msgstr ""
"\n"
"¨í ďđŕöóĺ íŕđěŕëüíŕ?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7233,16 +7407,16 @@ msgstr ""
"Ďĺđŕä ňűě, ˙ę ďđűíňýđ çŕďđŕöóĺ, ěîćŕ ďđŕéńöi ďý˘íű ÷ŕń.\n"
"¨í ďđŕöóĺ íŕđěŕëüíŕ?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7251,15 +7425,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7268,49 +7442,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7320,7 +7494,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7329,31 +7503,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Ďîđň ěűřű"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Ďîđň ěűřű"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Îďöűi ďđűíňýđó"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7361,38 +7546,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7402,51 +7587,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7454,62 +7639,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Íŕńňđîéęŕ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7517,12 +7702,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7532,34 +7717,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Âűńîęi"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Ďŕđŕíŕiäŕëüíű"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7574,12 +7759,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7593,70 +7778,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Íŕńňđîéęŕ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Îďöűi ďđűíňýđó"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Íŕńňđîéęŕ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Ćŕäŕĺöĺ íŕńňđîiöü ďđűíňýđ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Ďđűíňýđ"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7667,7 +7852,7 @@ msgstr ""
"Ňóň çě˙ř÷ŕţööŕ ÷ýđăi äđóęó.\n"
"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7677,140 +7862,144 @@ msgstr ""
"Ňóň çě˙ř÷ŕţööŕ ÷ýđăi äđóęó.\n"
"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Çâű÷ŕéíű"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Âűőŕä"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7893,24 +8082,62 @@ msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Íĺ ŕňđűěëiâŕĺööŕ äŕäŕöü đŕçäçĺë íŕ _ŕäôŕđěŕöiđŕâŕíű_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Íĺ ŕňđűěëiâŕĺööŕ çŕďiń ó ôŕéë %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid íĺ ďđŕöŕçäîëüíű"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid íĺ ďđŕöŕçäîëüíű (ěîćŕ raid ďđűëŕäű ŕäńóňíi÷ŕţöü?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Íĺäŕńňŕňęîâŕ đŕçäçĺëࢠäë˙ RAID óçđî˘í˙ %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ăýňű óçđîâĺíü íĺŕáőîäíŕ âűęŕđűńňî˘âŕöü ç ŕńö˙đîăŕé. Ńińňýěŕ áóäçĺ ďđŕńöĺé\n"
+"ó ęŕđűńňŕííi, ŕëĺ i áîëüř ÷óňíŕé: ăýňű óçđîâĺíü á˙ńďĺęi íĺëüăŕ "
+"âűęŕđűńňî˘âŕöü\n"
+"íŕ ěŕřűíŕő, ˙ęi˙ äŕëó÷ŕíű äŕ ńĺňęi öi äŕ Internet. Óâŕőîä íĺ ŕáŕđîíĺíű "
+"ďŕđîëĺě."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Íŕ ăýňŕě óçđî˘íĺ á˙ńďĺęi ěŕă÷űěŕ âűęŕđűńňŕííĺ ńińňýěű ˘ ˙ęŕńöi\n"
+"ńĺđâĺđó. Óçđîâĺíü á˙ńďĺęi äŕńňŕňęîâŕ âűńîęi äë˙ đŕáîňű\n"
+"ńĺđâĺđó, ˙ęi äŕďóńęŕĺ çëó÷ýííi ńŕ řěŕňëięiěi ęëiĺíňŕěi."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Îďöűi"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7966,7 +8193,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8036,7 +8263,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8112,7 +8339,7 @@ msgstr ""
"âűęîíâŕööŕ\n"
"íŕ ěŕřűíŕő ˙ęi˙ ďđŕöóţöü ˙ę ńĺđâĺđű äë˙ ďđŕňŕęîëŕ˘, ˙ęi˙ ńęŕđűńňî˘âŕţöü RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8209,7 +8436,7 @@ msgstr "öięŕâŕ"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8334,6 +8561,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
@@ -8438,6 +8666,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Ęŕëi ëŕńęŕ, âűéäçiöĺ, ŕ ďîňűě ńęŕđűńňŕéöĺ Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Ęŕëi ëŕńęŕ, ďĺđŕéäçiöĺ ˘ %s äë˙ ŕęňűâŕöűi çě˙íĺíí˙˘"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8446,6 +8683,159 @@ msgstr ""
"Ňŕáëiöŕ đŕçäçĺëࢠíĺ ÷űňŕĺööŕ, ˙íŕ çŕíŕäňŕ ńŕďńŕâŕíŕ äë˙ ěĺí˙ :(\n"
"Ďŕńďđŕáóţ ińöi äŕëĺé i áóäó ďđŕďóńęŕöü äđýííű˙ đŕçäçĺëű"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Ńĺđâĺđ äđóęó"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Ńĺđâĺđ äđóęó"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS ńĺđâĺđ:"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS ńĺđâĺđ:"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Ńňâŕđűöü çŕăđ. äűńę"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Đŕçěĺđęŕâŕííĺ"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Çíiř÷űöü"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Ŕá˙đűöĺ ôŕéë"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Íŕńňđîéęŕ IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "Íŕńňđîéęŕ X Window"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Äűńęŕâîä íĺäŕńňóďíű"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8487,6 +8877,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8495,47 +8890,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Ďđűěłöĺ âiířŕâŕííi!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Óńňŕ븢ęŕ"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Ôŕđěŕňŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëó %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8543,15 +8931,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8559,709 +8939,774 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëó %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Âűäŕëiöü ÷ŕđăó äđóęó"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Âűäŕëiöü Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Í˙ěŕ ďŕđîëţ"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Ńĺňęŕ:"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Ňűď: "
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Âűęŕđűńňî˘âŕöü ŕďňűěiçŕöűţ ćîđńňęŕăŕ äűńęó?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Âűęŕđűńňî˘âŕöü ŕďňűěiçŕöűţ ćîđńňęŕăŕ äűńęó?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "×ŕęŕéöĺ"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Ç ęîëŕě"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Ç ęîëŕě"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Îďöűi ěîäóëţ:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr "Ńĺňęŕ:"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Íŕńňđ. ôŕéëŕâűő ńińňýěŕ˘"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Ěűř: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îďöűi"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+#, fuzzy
+msgid "\t-Tape \n"
+msgstr "Ňűď: "
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Đŕçěĺđęŕâŕííĺ"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "˛ířű˙"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Ďŕ âűáŕđó"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Ňýęńň"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Âűáŕđ ďŕęĺňŕ˘"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü äŕäŕíű äŕ ńińňýěű"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Çŕőŕâŕííĺ ˘ ôŕéë"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Íŕńňđ. ôŕéëŕâűő ńińňýěŕ˘"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9293,7 +9738,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9302,7 +9747,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9343,7 +9788,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9371,12 +9816,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -9393,7 +9843,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9433,7 +9883,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9444,7 +9894,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9457,7 +9907,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9501,105 +9951,551 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Óńňŕë˙âŕííĺ %s íĺ ŕňđűěŕëŕń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Ęŕíńîëüíű˙ łíńňđóěĺíňŕëüíű˙ ńđîäęł"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "ŕáŕâ˙çęîâŕ"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ďîđň ěűřű"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Ŕääŕëĺíű ďđűíňýđ"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Iě˙ äë˙ đŕçěĺđęŕâŕíŕăŕ đýńóđńó"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Âűęŕđűńňî˘âŕöü DiskDrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Đŕçěĺđęŕâŕííĺ"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Ďŕęĺň"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Ęŕëi ëŕńęŕ, ďŕ÷ŕęŕéöĺ"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Çŕęŕí÷ýííĺ ˘ńňŕë˙âŕíí˙"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Ďîđň"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Âű ěîćŕöĺ ŕáđŕöü łířű˙ ěîâű, ˙ęi˙ áóäóöü äŕńňóďíű ďŕńë˙ ˘ńňŕë˙âŕíí˙"
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Iě˙ ěŕřűíű"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Ňűď: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Řëţç:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Íŕńňđîéęŕ ńëóćáŕ˘"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Íŕńňđîéęŕ ADSL"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Driver"
+msgstr "ńĺđâĺđ"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "Ńĺňęŕâű iíňýđôĺéń"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Íŕńňđîéęŕ ëŕęŕëüíŕé ńĺňęi"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Ěŕéńňŕđ ńňâŕđýíí˙..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Iě˙ çëó÷ýíí˙"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Đŕçěĺđęŕâŕííĺ"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Íŕńňđîéęŕ"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Ŕęňű˘íű"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Ŕęňű˘íű"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Iě˙ çëó÷ýíí˙"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Řëţç"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Module name"
+msgstr "Îďöűi ěîäóëţ:"
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Size"
+msgstr "Ďŕěĺđ: %s"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#, fuzzy
+msgid "drakfloppy"
+msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "Ďŕ äŕěŕ˘ëĺííţ"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:126
+#, fuzzy
+msgid "kernel version"
+msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
+
+#: ../../standalone/drakfloppy_.c:132
+#, fuzzy
+msgid "General"
+msgstr "Ŕăóëüíű"
+
+#: ../../standalone/drakfloppy_.c:137
+#, fuzzy
+msgid "Expert Area"
+msgstr "Ýęńďĺđň"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+#, fuzzy
+msgid "Add a module"
+msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
+
+#: ../../standalone/drakfloppy_.c:161
+#, fuzzy
+msgid "force"
+msgstr "Ďĺđŕíîń"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "Đýćűě çëó÷ýíí˙"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:200
+#, fuzzy
+msgid "Remove a module"
+msgstr "Ŕäâŕđîňíű ďŕđŕäŕę ńňŕđîíŕę"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, fuzzy, c-format
+msgid "Unable to fork: %s"
+msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "Íĺ çíŕéřëi %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Çđîáëĺíŕ"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Ôŕđěŕňŕâŕöü äűńęĺňó"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "ŕáěĺćŕâŕííĺ"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "ŕáěĺćŕâŕííĺ"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9608,122 +10504,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëŕ˘"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Âűäŕëĺííĺ âűáđŕíűő RPM-ďŕęĺňࢠç ńińňýěű"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Ęđîďęŕ ěŕíöiđŕâŕíí˙"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Âűáŕđ đŕçäçĺëࢠäë˙ ôŕđěŕňŕâŕíí˙"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "äîáđŕ"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Ŕäě˙íiöü"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Ďđűíňýđ"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Ŕá˙đűöĺ ôŕéë"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Ó âŕřŕé ńłńňýěĺ í˙ěŕ íiâîäíŕăŕ ńĺňęŕâŕăŕ ŕäŕďňŕđŕ!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Óńňŕ븢ęŕ"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Ó âŕřŕé ńłńňýěĺ í˙ěŕ íiâîäíŕăŕ ńĺňęŕâŕăŕ ŕäŕďňŕđŕ!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Çŕęŕí÷ýííĺ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9731,35 +10626,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
#, fuzzy
msgid "disable"
msgstr "Ňŕáëiöŕ"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
#, fuzzy
msgid "reconfigure"
msgstr "Íŕńňđîéęŕ X Window"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç çŕáŕđîíĺíŕ"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç çŕáŕđîíĺíŕ"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9767,21 +10662,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
#, fuzzy
msgid "enable"
msgstr "Ňŕáëiöŕ"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9798,21 +10693,21 @@ msgstr ""
"\n"
"Âű ćŕäŕĺöĺ óńňŕë˙âŕöü ńóěĺńíű äîńňóď äŕ Internet?"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Ńĺňęŕâű iíňýđôĺéń"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ó âŕřŕé ńłńňýěĺ í˙ěŕ íiâîäíŕăŕ ńĺňęŕâŕăŕ ŕäŕďňŕđŕ!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9820,11 +10715,11 @@ msgstr ""
"Íi âîäíű ethernet ńĺňęŕâű ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ íĺ âűçíŕ÷ŕíű. Ęŕëi ëŕńęŕ, "
"ńęŕđűńňŕéöĺ ęŕíôiăóđŕöűéíű iíńňđóěýíň."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Ńĺňęŕâű iíňýđôĺéń"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9834,7 +10729,7 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -9842,12 +10737,12 @@ msgstr ""
"Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ńĺňęŕâű ŕäŕďňŕđ, ˙ęł áóäçĺ âűęŕđűńňŕíű äë˙ äŕëó÷ýíí˙ äŕ "
"âŕřŕé ëŕęŕëüíŕé ńĺňęi."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9857,17 +10752,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Íŕńňđîéęŕ ěŕäýěó"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9878,7 +10773,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9890,33 +10785,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ńĺđâĺđŕ SMB"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ďŕňýíöűéíű ŕäđŕń ËÂŃ ęŕíôëięňóĺ ç á˙ăó÷ŕé ęŕíôiăóđŕöű˙é %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9924,21 +10819,21 @@ msgstr ""
"Óâŕăŕ! Çíîéäçĺíŕ łńíóţ÷ŕ˙ ńińňýěŕ ńĺňęŕâŕé á˙ńďĺęi (firewall). Âŕě ěŕă÷űěŕ "
"ńďŕňđýáłööŕ ńęŕđýęňŕâŕöü ˙ĺ ďŕńë˙ ˘ńňŕë˙âŕíí˙."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "Íŕńňđîéęŕ IDE"
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ęŕíôłăóđŕöű˙ ńöýíŕđŕ˘, óńňŕë˙âŕííĺ ĎÇ, çŕďóńę ńëóćáŕ˘..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Ďđŕáëĺěű ç óńňŕë˙âŕííĺě ďŕęĺňó %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -9949,25 +10844,25 @@ msgstr ""
"ç łířűěł ęŕěď'ţňýđŕěł ˘ âŕřŕé ËÂŃ, ęŕđűńňŕţ÷űń˙ ŕ˘ňŕěŕňű÷íűě\n"
"ęŕíôłăóđŕâŕííĺě (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9977,224 +10872,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Iě˙ ěŕřűíű"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Ňűď: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Řëţç:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Íŕńňđîéęŕ ńëóćáŕ˘"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Íŕńňđîéęŕ ADSL"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "ńĺđâĺđ"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Ńĺňęŕâű iíňýđôĺéń"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Íŕńňđîéęŕ ëŕęŕëüíŕé ńĺňęi"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Ěŕéńňŕđ ńňâŕđýíí˙..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Iě˙ çëó÷ýíí˙"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Ŕęňű˘íű"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Ŕęňű˘íű"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Iě˙ çëó÷ýíí˙"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Řëţç"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10204,94 +10881,130 @@ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
msgid "Choose the tool you want to use"
msgstr "Ŕá˙đűöĺ iíńňđóěĺíň, ˙ęi ćŕäŕĺöĺ ńęŕđűńňŕöü"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Ęŕíŕäńęi (Ęâĺáýę)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Ţđîďŕ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ôđŕíöű˙"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Ińëŕíäńęi"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Ţđîďŕ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "ďŕńë˙äî˘íŕ˙"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10341,7 +11054,7 @@ msgstr "Íĺěŕă÷űěŕ çŕďóńöłöü live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10389,10 +11102,6 @@ msgstr ""
msgid "/Options/Test"
msgstr ""
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr ""
@@ -10455,7 +11164,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10464,80 +11173,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Íŕńňđîéęŕ ADSL"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "öĺíü"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Iě˙ äŕěĺíó"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS ńĺđâĺđ:"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Ńĺđâĺđ äđóęó"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS ńĺđâĺđ:"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS ńĺđâĺđ:"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "ďđűëŕäŕ"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Ńĺđâĺđ äđóęó"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "ďđűëŕäŕ"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "ôŕđěŕňŕâŕííĺ"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb íĺ çíîéäçĺí\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ýěóë˙âŕöü ňđýöţţ ęíîďęó?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10581,6 +11321,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10933,10 +11685,6 @@ msgid "Multimedia - Sound"
msgstr "Ěóëüňűěĺäű˙ - ăóę"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Óöłëłňű"
-
-#: ../../share/compssUsers:999
#, fuzzy
msgid "Documentation"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
@@ -11049,10 +11797,6 @@ msgstr ""
"Web ŕăë˙äŕëüíłęł"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Ŕđőłâŕňŕđű, ýěóë˙ňŕđű, ěŕíłňîđűíă"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Ďĺđńŕíŕëüíű˙ ôłíŕíńű"
@@ -11102,192 +11846,211 @@ msgstr "Ěóëüňűěĺäű˙ - Ńňâŕđýííĺ CD"
msgid "Scientific Workstation"
msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Ŕäě˙íiöü"
+#~ msgid "Choose options for server"
+#~ msgstr "Ŕá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-#~ msgid "None"
-#~ msgstr "Í˙ěŕ"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Âiäýŕęŕđňŕ ˙ř÷ý íĺ ŕäęŕíôiăóđŕâŕíŕ"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Ďŕěĺđű ýęđŕíó ˙ř÷ý íĺ ďŕçíŕ÷ŕíű"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Ŕääŕëĺíű ďđűíňýđ"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "ďŕńďđŕáóéöĺ çě˙íiöü íĺęŕňîđű˙ ďŕđŕěĺňđű"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s."
+#~ msgid "An error occurred:"
+#~ msgstr "Ďŕěűëęŕ:"
-#~ msgid "mount failed"
-#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Çŕńňŕëîń˙ %d ńĺęóíäŕ˘"
-#~ msgid "Low"
-#~ msgstr "Ńëŕáű"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ăýňŕ äŕęëŕäíű˙ ďŕđŕěĺňđű íŕńňđîéęi?"
-#~ msgid "Medium"
-#~ msgstr "Ń˙đýäíi"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ŕňđűěŕíŕ ďŕěűëęŕ, ďŕńďđŕáóéöĺ çě˙íiöü ďŕđŕěĺňđű"
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Ăýňű óçđîâĺíü á˙ńďĺęi ěŕĺ řýđŕă ďŕë˙ďřýíí˙˘, ó ďĺđřóţ ÷ŕđăó\n"
-#~ "ďŕâ˙ëi÷űëŕń˙ ęîëüęŕńöü ďđŕâĺđŕę i ďŕď˙đýäćŕíí˙˘."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Ńĺđâĺđ XFree86: %s"
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Ěóëüňűěĺäű˙"
+#~ msgid "Show all"
+#~ msgstr "Ďŕęŕçŕöü óń¸"
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ýęńďĺđň"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Ďŕäđűőňî˘ęŕ íŕńňđîéęi X-Window"
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
+#~ msgid "What do you want to do?"
+#~ msgstr "Řňî âű ćŕäŕĺöĺ çđŕáiöü?"
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
+#~ msgid "Change Monitor"
+#~ msgstr "Çě˙íiöü ěŕíiňîđ"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Íŕ ˙ęi äűńę ďĺđŕíĺńöł?"
+#~ msgid "Change Graphics card"
+#~ msgstr "Çě˙íiöü âiäýŕęŕđňó"
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
+#~ msgid "Change Server options"
+#~ msgstr "Çě˙íiöü íŕńňđîéęi Ńĺđâĺđó"
-#, fuzzy
-#~ msgid "Infos"
+#~ msgid "Change Resolution"
+#~ msgstr "Çě˙íiöü ďŕěĺđű ýęđŕíó"
+
+#~ msgid "Show information"
#~ msgstr "Iíôŕđěŕöű˙"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
+#~ msgid "Test again"
+#~ msgstr "Ďđŕâĺđűöü ˙ř÷ý đŕç"
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache - ăýňŕ World Wide Web ńĺđâĺđ. ¨í âűęŕđűńňî˘çâŕĺöŕ äë˙ "
-#~ "ŕáńëóăî˘âŕíí˙\n"
-#~ "HTML ôŕéëࢠi CGI."
+#~ msgid "Setting security level"
+#~ msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) - ăýňŕ ńĺđâĺđ äŕěĺííűő iě¸íŕ˘, ˙ęi âűęŕđűńňî˘âŕĺööŕ äë˙\n"
-#~ "ďĺđŕęëŕäŕíí˙ iě¸í âóçëî˘ ó IP ŕäđŕńű."
+#~ msgid "Graphics card"
+#~ msgstr "Âiäýŕęŕđňŕ"
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
+#~ msgid "Select a graphics card"
+#~ msgstr "Ŕá˙đűöĺ âiäýŕęŕđňó"
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Âűőŕä"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Ďŕď˙đýäćŕííĺ: ňýńöiđŕâŕííĺ íŕ ăýňŕé âiäýŕęŕđöĺ íĺá˙ńďĺ÷íŕ"
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Ŕ˘ňŕěŕíöiđŕâŕííĺ çěĺííűő íŕçŕďŕřâŕëüíłęŕ˘"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Ńňŕíäŕđňíű VGA, 640x480 ďđű 60 Hz"
-#~ msgid "Active"
-#~ msgstr "Ŕęňű˘íű"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 ďđű 56 Hz"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Íĺ"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Ńóěĺńíű ç 8514, 1024x768 ďđű 87 Hz ďđŕçđŕäęîâŕ (í˙ěŕ 800x600)"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Ďđűíňýđ ěŕäýëi \"%s\" çíîéäçĺíű íŕ "
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ďđi 87 Hz ďđŕçđŕäęîâŕ, 800x600 ďđű 56 Hz"
-#~ msgid "Local Printer Device"
-#~ msgstr "Ëŕęŕëüíű ďđűíňýđ"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 ďđű 60 Hz, 640x480 ďđű 72 Hz"
-#~ msgid "Printer Device"
-#~ msgstr "Ďîđň ďđűíňýđó"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Íĺďđŕçđŕäęîâŕ SVGA, 1024x768 ďđű 60 Hz, 800x600 ďđű 72 Hz"
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Âűńîę÷ŕńöłí¸âű SVGA, 1024x768 ďđű 70 Hz"
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 60 Hz"
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 74 Hz"
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mouse Systems"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 76 Hz"
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "˛ířű˙"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 70 Hz"
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 76 Hz"
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ŕăóëüíű ďŕěĺđ äë˙ ŕáđŕíűő ăđóďࢠďđűáëiçíŕ đî˘íű %d Ěá.\n"
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Ňűď: "
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăó ďŕěĺđó,\n"
+#~ "ŕá˙đűöĺ ŕäńîňŕę ďŕęĺňŕ˘, ˙ęi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü.\n"
+#~ "\n"
+#~ "Ďđű íiçęiě ŕäńîňęó áóäóöü óńňŕë˙âŕíű ňîëüęi íŕéáîëüř âŕćíű˙ ďŕęĺňű,\n"
+#~ "ŕ ďđű 100% áóäóöü óńňŕë˙âŕíű ˘ńĺ ŕáđŕíű˙ ďŕęĺňű."
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Íŕ âŕřűě äűńęó ¸ńöü ěĺńöŕ ňîëüęi äë˙ %d%% ăýňűő ďŕęĺňŕ˘.\n"
+#~ "\n"
+#~ "Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăŕ, ňî\n"
+#~ "ďŕçíŕ÷öĺ ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙.\n"
+#~ "Ďđű ěŕëűě ŕäńîňęó áóäóöü óńňŕë˙âŕíű íŕéáîëüř âŕćíű˙ ďŕęĺňű;\n"
+#~ "ďđű ŕäńîňęó %d%% áóäçĺ ˘ńňŕë˙âŕíŕ ńňîëüęi ďŕęĺňࢠęîëüęi ěŕă÷űěŕ."
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Íŕńňđîéęŕ X Window"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Áîëüř äŕęëŕäíű âűáŕđ ěîćíŕ áóäçĺ çđŕáiöü íŕ íŕńňóďíűě ęđîęó."
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Ďîđň ďđűíňýđó"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Ŕäěĺíŕ"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Óçđîâĺíü á˙ńďĺęi"
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Îę"
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Ďî˘íű (%dMá)"
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Ďîđň ěűřű"
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Ěiíiěŕëüíű (%dMá)"
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "Root"
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Đýęŕěĺíäŕâŕíŕ (%dĚá)"
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
+#~ msgid "Utilities"
+#~ msgstr "Óöłëłňű"
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr "Ŕđőłâŕňŕđű, ýěóë˙ňŕđű, ěŕíłňîđűíă"
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
+#~ msgid "None"
+#~ msgstr "Í˙ěŕ"
+
+#~ msgid "You may now provide options to module %s."
+#~ msgstr "Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s."
+
+#~ msgid "mount failed"
+#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙"
+
+#~ msgid "Low"
+#~ msgstr "Ńëŕáű"
+
+#~ msgid "Medium"
+#~ msgstr "Ń˙đýäíi"
+
+#~ msgid ""
+#~ "Few improvements for this security level, the main one is that there are\n"
+#~ "more security warnings and checks."
+#~ msgstr ""
+#~ "Ăýňű óçđîâĺíü á˙ńďĺęi ěŕĺ řýđŕă ďŕë˙ďřýíí˙˘, ó ďĺđřóţ ÷ŕđăó\n"
+#~ "ďŕâ˙ëi÷űëŕń˙ ęîëüęŕńöü ďđŕâĺđŕę i ďŕď˙đýäćŕíí˙˘."
+
+#~ msgid ""
+#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
+#~ "host names to IP addresses."
+#~ msgstr ""
+#~ "named (BIND) - ăýňŕ ńĺđâĺđ äŕěĺííűő iě¸íŕ˘, ˙ęi âűęŕđűńňî˘âŕĺööŕ äë˙\n"
+#~ "ďĺđŕęëŕäŕíí˙ iě¸í âóçëî˘ ó IP ŕäđŕńű."
+
+#~ msgid "Active"
+#~ msgstr "Ŕęňű˘íű"
+
+#~ msgid "A printer, model \"%s\", has been detected on "
+#~ msgstr "Ďđűíňýđ ěŕäýëi \"%s\" çíîéäçĺíű íŕ "
+
+#~ msgid "Local Printer Device"
+#~ msgstr "Ëŕęŕëüíű ďđűíňýđ"
+
+#~ msgid "Printer Device"
+#~ msgstr "Ďîđň ďđűíňýđó"
#~ msgid "Choose the size you want to install"
#~ msgstr "Ŕá˙đűöĺ ďŕćŕäŕíű ďŕěĺđ óńňŕë˙âŕíí˙"
@@ -11311,30 +12074,9 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "Äŕ ˙ęîăŕ ďîđňó äŕëó÷ŕíű âŕř ďđűíňýđ \n"
#~ "(/dev/lp0 ýęâiâŕëĺíňíű LPT1:)?\n"
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Óâŕăŕ, ńĺňęŕâű ŕäŕďňŕđ ńęŕíôiăóđŕâŕíű.\n"
-#~ "Öi ćŕäŕĺöĺ ďĺđŕęŕíôiăóđŕâŕöü ˙ăî?"
-
#~ msgid "New"
#~ msgstr "Íîâű"
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Çíiř÷űöü"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Íĺâűçíŕ÷ŕíŕńöü (%s), áóäçüöĺ äŕęëŕäíű˙\n"
@@ -11344,10 +12086,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s. Óâ˙äçiöĺ `none' ďđű ŕäńóňíŕńöi) "
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
#~ msgid ""
#~ "\n"
#~ "Do you agree?"
@@ -11355,27 +12093,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "\n"
#~ "Âű çăîäíű˙?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Ęŕëi âű íĺ âĺäŕĺöĺ äŕęëŕäíŕ, äűę çâű÷ŕéíűě âűáŕđŕě ç'˙˘ë˙ĺööŕ \"/dev/hda"
-#~ "\"\n"
-#~ "(ďĺđřŕńíű ěŕéńňŕđ IDE äűńę) öi \"/dev/sda\" (ďĺđřű SCSI äűńę)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Iě˙ çëó÷ýíí˙"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-
#~ msgid ""
#~ "You need to accept the terms of the above license to continue "
#~ "installation.\n"
@@ -11485,18 +12202,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "řňî íĺ âűáŕđ ŕäíŕăî ďŕęĺňó â˙äçĺ äŕ íĺěŕă÷űěŕńöł âűáđŕöü ďŕęĺňű,\n"
#~ "˙ęł˙ ŕä ˙ăî çŕëĺćŕöü."
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Ęŕëi âű ěŕĺöĺ ˘ńĺ CD äűńęi ńŕ ńďińŕ íićýé, íŕöińíiöĺ Îę.\n"
-#~ "Ęŕëi âű íĺ ěŕĺöĺ ŕíi âîäíŕăŕ ç ăýňűő CD äűńęŕ˘, íŕöińíiöĺ Ŕäě˙íiöü.\n"
-#~ "Ęŕëi íĺęŕňîđűő ç CD äűńęࢠíĺ ěŕĺöĺ, ŕäě˙íiöĺ iő âűäç˙ëĺííĺ i íŕöińíiöĺ "
-#~ "Îę."
-
#~ msgid ""
#~ "If you wish to connect your computer to the Internet or\n"
#~ "to a local network please choose the correct option. Please turn on your "
@@ -11581,26 +12286,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "˘âîäçłöĺ łíôŕđěŕöűţ ŕá DNS, ăýňŕ˙ łíôŕđěŕöű˙ áóäçĺ ŕňđűěŕíŕ ŕä âŕřŕăŕ\n"
#~ "ďđŕâŕéäýđó ďŕä ÷ŕń çëó÷ýíí˙."
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Çŕđŕç ěîćíŕ ˘âĺńöi ďŕđŕěĺňđű çëó÷ýíí˙ ďđŕç ěŕäýě (dialup). Ęŕëi âű\n"
-#~ "íĺ âĺäŕĺöĺ, řňî ďŕňđýáíŕ ďińŕöü,\n"
-#~ "ďŕńďđŕáóéöĺ ŕňđűěŕöü äŕęëŕäíóţ iíôŕđěŕöűţ ˘ ńâŕéăî ďđŕâŕéäýđó Internet "
-#~ "(ISP)."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ęŕëł íĺŕáőîäíŕ, âű ěŕćŕöĺ óâĺńöł łě˙ âŕřŕăŕ őŕńňŕ. Ęŕëł âű\n"
-#~ "íĺ âĺäŕĺöĺ öł íĺ ˘ďĺ˘íĺíű˙, řňî ňđýáŕ ˘âŕäçłöü. Ďŕęłíöĺ ďîëĺ ďóńňűě."
-
#~ msgid ""
#~ "You may now enter your host name if needed. If you\n"
#~ "don't know or are not sure what to enter, leave blank."
@@ -11905,58 +12590,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "çŕăđóçłöü âŕř ęŕěď'ţňŕđ, äűę ăýňŕ âŕř ŕäçłíű ńďîńŕá ŕäíŕâłöü\n"
#~ "ńłňýěű áĺç ĺéíŕăŕ ďĺđŕ˘ńňŕë˙âŕíüí˙."
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Ŕńíî˘íű˙ ďŕđŕěĺňđű SILO:\n"
-#~ " - Óńňŕë˙âŕííĺ çŕăđóç÷űęó: Ŕá˙đűöĺ ěĺńöŕ, äçĺ âű ćŕäŕĺöĺ çěĺńöiöü\n"
-#~ "iíôŕđěŕöűţ, ďŕňđýáíóţ äë˙ çŕăđóçęi GNU/Linux. Ęŕëi íĺ ˘ďý˘íĺíű, řňî\n"
-#~ "đîáiöĺ ďđŕâiëüíŕ, ŕá˙đűöĺ \"Ďĺđřű ńĺęňŕđ äűńęŕ (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Çŕňđűěęŕ ďŕ çěî˘÷ŕííţ ďĺđŕä çŕăđóçęŕé âîáđŕçó: Çŕäŕĺ ÷ŕń ó äç˙ń˙ňűő\n"
-#~ "ńĺęóíäű, íŕ ďđŕö˙ăó ˙ęîăŕ çŕăđóç÷űę ÷ŕęŕĺ ďĺđŕä çŕăđóçęŕé âîáđŕçó ďŕ "
-#~ "çěî˘÷ŕííţ.\n"
-#~ "Ăýňű ďŕđŕěĺňŕđ ęŕđűńíű äë˙ ńińňýěŕ˘, ˙ęi˙ ŕäđŕçó çŕăđóćŕţööŕ ç ćîđńňęŕăŕ\n"
-#~ "äűńęó ŕäđŕçó ŕďŕńë˙ ˘ęëţ÷ýíí˙ ęëŕâi˙ňóđű. Çŕăđóç÷űę íĺ ÷ŕęŕĺ, ęŕëi "
-#~ "\"çŕňđűěęŕ\"\n"
-#~ "\"çŕňđűěęŕ\" íĺ áóäçĺ ďŕçíŕ÷ŕíŕ öi óńňŕë˙âŕíŕ íŕ íîëü."
-
#~ msgid ""
#~ "SILO is a bootloader for SPARC: it is able to boot\n"
#~ "either GNU/Linux or any other operating system present on your computer.\n"
@@ -12084,69 +12717,9 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "ADSL configuration"
#~ msgstr "Íŕńňđîéęŕ ADSL"
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Ŕääŕëĺíű CUPS ńĺđâĺđ íĺ ďŕňđŕáóĺ ŕä Âŕń íŕńňđîéęł ďđűíňýđó\n"
-#~ "íŕ ăýňŕé ěŕřűíĺ, ¸í áóäçĺ çíîéäçĺíű ŕ˘ňŕěŕňű÷íŕ.\n"
-#~ "Ęŕëł Âű íĺ ˘ďý˘íĺíű, ŕá˙đűöĺ \"Ŕääŕëĺíű ńĺđâĺđ CUPS\"."
-
#~ msgid "Remote queue"
#~ msgstr "Ŕääŕëĺíŕ˙ ÷ŕđăŕ äđóęó"
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Ŕääŕëĺíŕ˙ ÷ŕđăŕ äđóęó"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Iě˙ äŕěĺíó"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Iě˙ äđóęŕđęi"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Iě˙ çëó÷ýíí˙"
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Iě˙ çëó÷ýíí˙"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-
#~ msgid "NetWare"
#~ msgstr "NetWare"
@@ -12156,10 +12729,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Disable network"
#~ msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
-
#~ msgid ""
#~ "You can now test your mouse. Use buttons and wheel to verify\n"
#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
@@ -12171,10 +12740,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "óńňŕë˙âŕöü\n"
#~ "łířű äđŕéâĺđ."
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Ďîđň ěűřű"
-
#~ msgid "You can specify directly the URI to access the printer with CUPS."
#~ msgstr "Âű ěîćŕöĺ âűçíŕ÷űöü íŕ˘ďđîńň URI ęŕá äŕëó÷űööŕ äŕ äđóęŕđęi ç CUPS."
@@ -12217,9 +12782,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Extra Text options"
#~ msgstr "Äŕäŕňęîâű˙ ďŕđŕěĺňđű ňýęńňó"
-#~ msgid "Reverse page order"
-#~ msgstr "Ŕäâŕđîňíű ďŕđŕäŕę ńňŕđîíŕę"
-
#~ msgid "Select Remote Printer Connection"
#~ msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ç ŕääŕëĺíűě ďđűíňýđŕě"
@@ -12252,14 +12814,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Spool directory"
#~ msgstr "Äűđýęňîđű˙ ńďóëiíăó"
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Ňŕáëiöŕ"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Ňŕáëiöŕ"
-
#~ msgid ""
#~ "To enable a more secure system, you should select \"Use shadow file\" "
#~ "and\n"
@@ -12281,10 +12835,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "yellow pages"
#~ msgstr "ćî˘ňű˙ ńňŕđîíęi"
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Íŕńňđîéęŕ ADSL"
-
#~ msgid "Provider dns 1"
#~ msgstr "DNS 1 ďđŕâŕéäŕđó"
@@ -12294,61 +12844,18 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "How do you want to connect to the Internet?"
#~ msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Ŕá˙đűöĺ ôŕéë"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Íŕńňđîéęŕ IDE"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Íŕńňđîéęŕ: Äŕäŕöü ęđűíiöó"
-
#~ msgid "This startup script try to load your modules for your usb mouse."
#~ msgstr " Ăýňű ďóńęŕâű ńęđűďň ŕäíŕ˘ë˙ĺ ˘ńĺ ěîäóëi äë˙ usb ěűřű."
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-
-#, fuzzy
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ "Âŕř ęŕěď'ţňŕđ ěîćŕ áűöü ńęŕíôłăóđŕâŕíű íŕ ńóěĺńíŕĺ âűęŕđűńňŕííĺ\n"
-#~ " ˛íňýđíýňó (Internet Connection Sharing)?\n"
-#~ "\n"
-#~ "Çŕ˘âŕăŕ: âŕě ďŕňđýáíű ńĺňęŕâű ŕäŕďňŕđ äë˙ ďŕäęëţ÷ýíí˙ äŕ ËÂŃ.\n"
-#~ "\n"
-#~ "Âű ćŕäŕĺöĺ óńňŕë˙âŕöü ńóěĺńíű äîńňóď äŕ Internet?"
-
#~ msgid "Automatic dependencies"
#~ msgstr "Ďđŕâĺđęŕ çŕëĺćíŕńö˙˘"
#~ msgid "Configure LILO/GRUB"
#~ msgstr "Íŕńňđîéęŕ LILO/GRUB"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Ńňâŕđűöü çŕăđ. äűńę"
-
#~ msgid "Choice"
#~ msgstr "Âűáŕđ"
-#, fuzzy
-#~ msgid "gMonitor"
-#~ msgstr "Ěŕíiňîđ"
-
#~ msgid "Miscellaneous"
#~ msgstr "Đîçíŕĺ"
@@ -12380,10 +12887,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ "Áóäçüöĺ ˘âŕćëiâű, óęëţ÷ýííĺ NumLock ěîćŕ ďđűâĺńöi äŕ ďŕěűëęîâŕé\n"
#~ "ďđŕöű ęëŕâi˙ňóđű (íŕďđűęëŕä, íŕöińę íŕ `p' äŕĺ `6')."
-#, fuzzy
-#~ msgid "Actions"
-#~ msgstr "Đŕçěĺđęŕâŕííĺ"
-
#~ msgid "Scientific applications"
#~ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
@@ -12393,10 +12896,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Second DNS Server"
#~ msgstr "Äđóăi ńĺđâĺđ DNS:"
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Đýćűě çëó÷ýíí˙"
-
#~ msgid "%s is already in use"
#~ msgstr "%s óćî âűęŕđűńňî˘âŕĺööŕ"
@@ -13150,9 +13649,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Other countries"
#~ msgstr "Iířű˙ ęđŕiíű"
-#~ msgid "Package"
-#~ msgstr "Ďŕęĺň"
-
#~ msgid "Password:"
#~ msgstr "Ďŕđîëü:"
@@ -13406,9 +13902,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Use MD5 passwords"
#~ msgstr "Âűęŕđűńňî˘âŕöü ďŕđîëi MD5"
-#~ msgid "Use diskdrake"
-#~ msgstr "Âűęŕđűńňî˘âŕöü DiskDrake"
-
#~ msgid "Use shadow file"
#~ msgstr "Âűęŕđűńňî˘âŕöü öĺí˙âű ôŕéë"
@@ -13513,9 +14006,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "changing type of"
#~ msgstr "Çě˙íĺííĺ ňűďó"
-#~ msgid "default"
-#~ msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-
#~ msgid "dhcp-client"
#~ msgstr "dhcp-client"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 7bea7e548..2ae952797 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -1,84 +1,112 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999, 2000 MandrakeSoft
-# Elena Radeva <ely@triada.bg>, 1999.
-# Pavel Cholakov <pavel@linux.home.bg>, 1999.
-# Boyan Ivanov <boyan17@bulgaria.com>, 1999, 2000
-# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000
-# Valery Dachev <valery@zonebg.com>, 2000, 2001
-#
-# Bulgarians on Linux use windows-1251 encoding
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 MandrakeSoft
+# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000.
#
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-08-15 15:29+0200\n"
-"Last-Translator: Valery Dachev <valery@zonebg.com>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ĘÁ"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Čçďîëçâŕé đŕçřčđĺíčĺňî Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ĘÁ"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Íŕńňđîéęŕ ńŕěî íŕ ęŕđňŕ \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 ĚÁ"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 ĚÁ čëč ďîâĺ÷ĺ"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Čçáĺđĺňĺ X ńúđâúđ"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X ńúđâúđ"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Ăđŕôč÷íŕ ęŕđňŕ"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Čçáĺđĺňĺ ęŕďŕöčňĺň íŕ ďŕěĺňňŕ íŕ ăđŕôč÷íŕňŕ ńč ęŕđňŕ"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Čçáĺđĺňĺ ăđŕôč÷íŕ ęŕđňŕ"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Íŕńňđîéęŕ íŕ XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Čçáĺđĺňĺ X ńúđâúđ"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Ęî˙ íŕńňđîéęŕ íŕ XFree čńęŕňĺ äŕ čěŕňĺ ?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ńúđâúđ"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Čçáĺđĺňĺ X ńúđâúđ"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Čçďîëçâŕé đŕçřčđĺíčĺňî Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ńúđâúđ"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Íŕńňđîéęŕ ńŕěî íŕ ęŕđňŕ \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Ęî˙ íŕńňđîéęŕ íŕ XFree čńęŕňĺ äŕ čěŕňĺ ?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ń őŕđäóĺđíî 3D óńęîđĺíčĺ"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -89,33 +117,17 @@ msgstr ""
"Ęŕđňŕňŕ âč ńĺ ďîääúđćŕ îň XFree %s, ęîéňî ěîćĺ äŕ čěŕ ďî-äîáđŕ ďîääđúćęŕ íŕ "
"2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ â XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ń őŕđäóĺđíî 3D óńęîđĺíčĺ"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ ń XFree %s.\n"
-"ÎŇÁĹËĹĆĹŇĹ, ×Ĺ ŇÎÂŔ Ĺ ĹĘŃĎĹĐČĚĹÍŇŔËÍŔ ĎÎÄÄĐÚĆĘŔ Č ĘÎĚĎŢŇÚĐÚŇ ÂČ ĚÎĆĹ ÄŔ "
-"ÇŔÁČĹ."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ń ĹĘŃĎĹĐČĚĹÍŇŔËÍO őŕđäóĺđíî 3D óńęîđĺíčĺ"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -129,31 +141,59 @@ msgstr ""
"Ęŕđňŕňŕ âč ńĺ ďîääúđćŕ îň XFree %s, ęîéňî ěîćĺ äŕ čěŕ ďî-äîáđŕ ďîääđúćęŕ íŕ "
"2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ ń XFree %s.\n"
+"ÎŇÁĹËĹĆĹŇĹ, ×Ĺ ŇÎÂŔ Ĺ ĹĘŃĎĹĐČĚĹÍŇŔËÍŔ ĎÎÄÄĐÚĆĘŔ Č ĘÎĚĎŢŇÚĐÚŇ ÂČ ĚÎĆĹ ÄŔ "
+"ÇŔÁČĹ."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (číńňŕëŕöč˙ ăđŕôč÷ĺí äđŕéâĺđ)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Íŕńňđîéęŕ íŕ XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Čçáĺđĺňĺ ęŕďŕöčňĺň íŕ ďŕěĺňňŕ íŕ ăđŕôč÷íŕňŕ ńč ęŕđňŕ"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Čçáĺđĺňĺ îďöčč çŕ ńúđâúđŕ"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Äŕ çŕďŕç˙ ëč ďđîěĺíčňĺ ?\n"
+"Ňĺęóůŕňŕ íŕńňđîéęŕ ĺ:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Čçáĺđĺňĺ ěîíčňîđ"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Ěîíčňîđ"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Ęëčĺíňńęŕ"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Îáů"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Âúđíč"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -177,511 +217,325 @@ msgstr ""
"ďîâđĺäčňĺ ěîíčňîđŕ ńč.\n"
" Ŕęî čěŕňĺ í˙ęŕęâč ńúěíĺíč˙, čçáĺđĺňĺ ęîíńĺđâŕňčâíŕ íŕńňđîéęŕ."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Őîđčçîíňŕëíŕ ńęîđîńň íŕ âúçńňŕíîâ˙âŕíĺ"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Âĺđňčęŕëíŕ ńęîđîńň íŕ âúçńňŕíîâ˙âŕíĺ"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ěîíčňîđúň íĺ ĺ íŕńňđîĺí"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ăđŕôč÷íŕňŕ ęŕđňŕ âńĺ îůĺ íĺ ĺ íŕńňđîĺíŕ"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Îůĺ íĺ ĺ čçáđŕíŕ đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Čńęŕňĺ ëč äŕ ňĺńňâŕňĺ íŕńňđîéęčňĺ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Âíčěŕíčĺ: ňĺńňâŕíĺňî íŕ ňŕçč ăđŕôč÷íŕ ęŕđňŕ ěîćĺ äŕ \"çŕěđŕçč\" ęîěďţňúđŕ âč"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Ďđîâĺđęŕ íŕ íŕńňđîéęŕňŕ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 öâ˙ňŕ (8 áčňŕ)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 őčë˙äč öâ˙ňŕ (15 áčňŕ)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ďî˙âč ńĺ ăđĺřęŕ:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 őčë˙äč öâ˙ňŕ (16 áčňŕ)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Čçőîä äî %d ńĺęóíäč"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 ěčëčîíŕ öâ˙ňŕ (24 áčňŕ)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Âĺđíč ëč ńŕ íŕńňđîéęčňĺ ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 ěčëčŕđäŕ öâ˙ňŕ (32 áčňŕ)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ďî˙âč ńĺ ăđĺřęŕ, îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Čçáĺđĺňĺ đŕçäĺëčňĺëíŕ ńďîńîáíîńň č äúëáî÷číŕ íŕ öâĺňîâĺňĺ"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Ăđŕôč÷íŕ ęŕđňŕ: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 ńúđâúđ: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Îůĺ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Îňęŕç"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ĺęńďĺđňĺí đĺćčě"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ďîęŕćč âńč÷ęč"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Čńęŕňĺ ëč äŕ ňĺńňâŕňĺ íŕńňđîéęčňĺ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Ďđîâĺđęŕ íŕ íŕńňđîéęŕňŕ"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ňčď ęëŕâčŕňóđŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ňčď ěčřęŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Óńňđîéńňâî íŕ ěčřęŕňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Ěîíčňîđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Őîđčçîíňŕëíŕ ńčíőđîíčçŕöč˙ íŕ ěîíčňîđŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Âĺđňčęŕëíî îďđĺńí˙âŕíĺ íŕ ěîíčňîđŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Ăđŕôč÷íŕ ęŕđňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Čäĺíňčôčęŕöč˙ íŕ ăđŕôč÷íŕňŕ ęŕđňŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Ăđŕôč÷íŕ ďŕěĺň: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Äúëáî÷číŕ íŕ öâĺňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ńúđâúđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 äđŕéâĺđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ďîäăîňîâęŕ çŕ íŕńňđîéâŕíĺ íŕ X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Ďđîěĺíĺňĺ ěîíčňîđŕ"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ďđîěĺíĺňĺ ăđŕôč÷íŕňŕ ęŕđňŕ"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Ďđîěĺíĺňĺ îďöččňĺ íŕ ńúđâúđŕ"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Ďđîěĺíĺňĺ đŕçäĺëčňĺëíŕňŕ ńďîńîáíîńň"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Ďîęŕćč číôîđěŕöč˙ňŕ"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Ňĺńňâŕé îňíîâî"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Čçëčçŕíĺ"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Äŕ çŕďŕç˙ ëč ďđîěĺíčňĺ ?\n"
-"Ňĺęóůŕňŕ íŕńňđîéęŕ ĺ:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ďđč ńňŕđňčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Kîěďţňúđŕ âč ěîćĺ ŕâňîěŕňč÷íî, äŕ âëĺçĺ â X ďđč ńňŕđňčđŕíĺ.\n"
"Čńęŕňĺ ëč X äŕ ńĺ ńňŕđňčđŕ, ęîăŕňî đĺńňŕđňčđŕňĺ ńčńňĺěŕňŕ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ěîë˙ âëĺçňĺ îňíîâî â %s, çŕ äŕ ŕęňčâčđŕňĺ ďđîěĺíčňĺ"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Ěîë˙ čçëĺçňĺ îň ńĺńč˙ňŕ č čçďîëçâŕéňĺ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 öâ˙ňŕ (8 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 őčë˙äč öâ˙ňŕ (15 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 őčë˙äč öâ˙ňŕ (16 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ěčëčîíŕ öâ˙ňŕ (24 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 ěčëčŕđäŕ öâ˙ňŕ (32 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ĘÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ĘÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 ĚÁ čëč ďîâĺ÷ĺ"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 íŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 íŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-ńúâěĺńňčě, 1024x768 íŕ 87 Hz interlaced (í˙ěŕ 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 íŕ 87 Hz interlaced, 800x600 íŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 íŕ 60 Hz, 640x480 íŕ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 íŕ 60 Hz, 800x600 íŕ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Âčńîęî÷ĺńňîňĺí SVGA, 1024x768 íŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Ďúđâč ńĺęňîđ îň ńňŕđňčđŕůč˙ ńĺ ä˙ë"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Ďúđâč˙ň ńĺęňîđ îň äđŕéâŕ (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO číńňŕëŕöč˙"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Ęúäĺ čńęŕňĺ äŕ číńňŕëčđŕňĺ bootloader-ŕ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub číńňŕëŕöč˙"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO ń ňĺęńňîâî ěĺíţ"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO ń ăđŕôč÷íî ěĺíţ"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Ńňŕđňčđŕíĺ îň DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Îďöčč íŕ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Čçďîëçâŕíŕ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader číńňŕëŕöč˙"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Ńňŕđňčđŕůî óńňđîéńňâî"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (íĺ đŕáîňč íŕ ńňŕđč BIOS-č)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Ęîěďŕęňĺí"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "ęîěďŕęňĺí"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Âčäĺî đĺćčě"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Çŕáŕâ˙íĺ ďđĺäč ńňŕđňčđŕíĺňî íŕ default ä˙ëŕ"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Ďŕđîëŕ"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Ďŕđîëŕ (îňíîâî)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Îăđŕíč÷č îďöččňĺ, çŕäŕâŕíč îň ęîěŕíäíč˙ đĺä"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "îăđŕíč÷č"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Ďî÷čńňâŕíĺ íŕ /tmp ďđč âń˙ęî çŕđĺćäŕíĺ"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ňî÷ĺí đŕçěĺđ íŕ RAM-ďŕěĺňňŕ, ŕęî ĺ íĺîáőîäčěî (íŕěĺđĺíč %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Âęëţ÷č ěíîăî ďđîôčëč"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Äŕéňĺ đŕçěĺđŕ RAM-ďŕěĺň â Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Îďöč˙ňŕ ``Îăđŕíč÷č îďöččňĺ îň ęîěŕíäíč˙ đĺä'' ĺ áĺçďîëĺçíŕ áĺç ďŕđîëŕ"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Ńňŕđňîâî ńúîáůĺíčĺ"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Čç÷ŕęâŕíĺ íŕ Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Čç÷ŕęâŕíĺ çŕ ńňŕđňčđŕíĺ íŕ ˙äđîňî"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Ńňŕđňčđŕíĺ îň CD ?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Ńňŕđňčđŕíĺ îň OF ?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "ÎŃ ďî ďîäđŕçáčđŕíĺ ?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -690,83 +544,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ňîâŕ ńŕ đŕçëč÷íčňĺ çŕďčńč.\n"
"Ěîćĺňĺ äŕ äîáŕâčňĺ îůĺ čëč äŕ ďđîěĺíčňĺ ńúůĺńňâóâŕůčňĺ."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Äîáŕâč"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Ăîňîâî"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ěîäčôčöčđŕé"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Ęŕęúâ ňčď číôîđěŕöč˙ čńęŕňĺ äŕ ďđčáŕâčňĺ"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Äđóăŕ ÎŃ (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Äđóăŕ ÎŃ (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Äđóăŕ ÎŃ (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Îáđŕç"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Ăëŕâĺí"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Äîďúëâŕíĺ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "×ĺňĺíĺ-çŕďčń"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Ňŕáëčöŕ"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Îďŕńĺí"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Ĺňčęĺň"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Ďî ďîäđŕçáčđŕíĺ"
@@ -799,53 +653,75 @@ msgstr "Ňđ˙áâŕ äŕ čěŕňĺ swap-ä˙ë"
msgid "This label is already used"
msgstr "Ňîçč ĺňčęĺň âĺ÷ĺ ńĺ čçďîëçâŕ"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Íŕěĺđĺíč ńŕ %s %s číňĺđôĺéńč"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Čěŕňĺ ëč äđóă(č) ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Čěŕňĺ ëč í˙ęŕęúâ %s číňĺđôĺéń?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Íĺ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Äŕ"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
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:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Číńňŕëčđŕíĺ íŕ äđŕéâĺđ çŕ %s ďëŕňęŕ %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(ěîäóë %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Ńĺăŕ ěîćĺňĺ äŕ ďîäŕäĺňĺ îďöččňĺ ěó äî ěîäóëŕ %s.\n"
+"Îďöččňĺ ńŕ âúâ ôîđěŕň ``čěĺ=ńňîéíîńň čěĺ2=ńňîéíîńň2 ...''.\n"
+"Íŕďđčěĺđ: ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Îďöčč íŕ ěîäóëŕ:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Ęîé %s äđŕéâĺđ äŕ ďđîáâŕě ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -864,37 +740,15 @@ msgstr ""
"îň ęî˙ňî ńĺ íóćäŕĺ ? Ďî ďđčíöčď ňîâŕ ěîćĺ äŕ çŕáčĺ ęîěďţňúđŕ âč, íî í˙ěŕ äŕ "
"ăî ďîâđĺäč."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Çŕäŕé îďöčč"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ńĺăŕ ěîćĺňĺ äŕ ďîäŕäĺňĺ îďöččňĺ ěó äî ěîäóëŕ %s.\n"
-"Îďöččňĺ ńŕ âúâ ôîđěŕň ``čěĺ=ńňîéíîńň čěĺ2=ńňîéíîńň2 ...''.\n"
-"Íŕďđčěĺđ: ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Îďöčč íŕ ěîäóëŕ:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -903,50 +757,55 @@ msgstr ""
"Çŕđĺćäŕíĺňî íŕ ěîäóëŕ %s íĺ óńď˙.\n"
"Čńęŕňĺ ëč äŕ îďčňŕňĺ îňíîâî ń äđóăč ďŕđŕěĺňđč ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(âĺ÷ĺ ďđčáŕâčő %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ňŕçč ďŕđîëŕ ĺ ďđĺęŕëĺíî ďđîńňŕ"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Ěîë˙, çŕäŕéňĺ ďîňđĺáčňĺëńęî čěĺ"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ďîňđĺáčňĺëńęîňî čěĺ ěîćĺ äŕ âęëţ÷âŕ ńŕěî ěŕëęč áóęâč, íîěĺđŕ, `-' č `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ňîâŕ ďîňđĺáčňĺëńęî čěĺ ĺ âĺ÷ĺ äîáŕâĺíî"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ňîâŕ ďîňđĺáčňĺëńęî čěĺ ĺ âĺ÷ĺ äîáŕâĺíî"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Äîáŕâč ďîňđĺáčňĺë"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -955,32 +814,32 @@ msgstr ""
"Âúâĺäĺňĺ ďîňđĺáčňĺë\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Ďđčĺěč ďîňđĺáčňĺë"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Čńňčíńęî čěĺ"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Řĺë"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Čęîíŕ"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -989,123 +848,103 @@ msgstr ""
"ďîňđĺáčňĺë.\n"
"Čńęŕňĺ ëč ňŕçč âúçěîćíîńň ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Čçáĺđĺňĺ ďîäđŕçáčđŕů ńĺ ďîňđĺáčňĺë :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Čçáĺđĺňĺ Windows Manager çŕ ńňŕđňčđŕíĺ:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Âńč÷ęč"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Äîáŕâ˙íĺ íŕ ďîňđĺáčňĺë"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ęëčĺíňńęŕ"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "Ďîäĺë˙íĺ íŕ ôŕéëîâĺ"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Ňîçč ďŕęĺň ňđ˙áâŕ äŕ áúäĺ îáíîâĺí\n"
"Ńčăóđíč ëč ńňĺ, ÷ĺ čńęŕňĺ äŕ ăî čçęëţ÷čňĺ ?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Îňě˙íŕ"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Äîáđĺ äîřëč ďđč Cracker-čňĺ"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Ëîřî"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Ńňŕíäŕđňíŕ"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Âčńîęî"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Âčńîęî"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Ďŕđŕíîč÷íî"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1115,7 +954,7 @@ msgstr ""
"óďîňđĺáŕ, íî ĺ ďî-÷óâńňâčňĺëíî: íĺ ňđ˙áâŕ äŕ áúäĺ čçďîëçâŕíŕ íŕ ěŕřčíč\n"
"ńâúđçŕíč ń äđóăč čëč ďî Číňĺđíĺň. Í˙ěŕ äîńňúď ń ďŕđîëč."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,7 +962,7 @@ msgstr ""
"Ďŕđîëŕňŕ ńĺăŕ ĺ âęëţ÷ĺíŕ, íî čçďîëçâŕíĺňî ęŕňî ěđĺćîâ ęîěďţňúđ íĺ ĺ "
"ďđĺďîđú÷čňĺëíî."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1133,61 +972,62 @@ msgstr ""
"čçďîëçâŕí äŕ ńĺ ńâúđçâŕ ęúě Číňĺđíĺň ęŕňî ęëčĺíň. Čěŕ ďđîâĺđęč íŕ "
"ńčăóđíîńňňŕ. "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Ń ňîâŕ íčâî íŕ ńčăóđíîńň, ďîëçâŕíĺňî íŕ ńčńňĺěŕňŕ ęŕňî ńúđâúđ ńňŕâŕ "
"âúçěîćíî.\n"
"Ńčăóđíîńňňŕ ńĺăŕ ĺ äîńňŕňú÷íî ăîë˙ěŕ äŕ ńĺ čçďîëçâŕ ńčńňĺěŕňŕ ęŕňî\n"
"ńúđâúđ ďđčĺěŕů âđúçęč îň ěíîăî ęëčĺíňč. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Čçáčđŕěĺ 4-ňî íčâî, íî ńčńňĺěŕňŕ ĺ íŕďúëíî çŕňâîđĺíŕ.\n"
"Íčâîňî íŕ ńčăóđíîńň ĺ íŕ ěŕęńčěóěŕ ńč."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Íčâî íŕ ńčăóđíîńň"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Čçďîëçâŕéňĺ libsafe çŕ ńúđâúđč"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Áčáëčîňĺęŕ, ęî˙ňî îńčăóđ˙âŕ çŕůčňŕ îň aňŕęč ń ďđĺďúëâŕíĺ íŕ áóôĺđ č ôîđěŕňíč "
"ńňđčíăîâĺ."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1212,7 +1052,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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1226,7 +1066,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:931
+#: ../../bootloader.pm_.c:915
#, 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."
@@ -1241,7 +1081,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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1255,7 +1095,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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1269,27 +1109,27 @@ 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:940
+#: ../../bootloader.pm_.c:924
#, 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:944
+#: ../../bootloader.pm_.c:928
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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Äĺńęňîď"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Ńňŕđňîâî Ěĺíţ"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Íĺ ěîćĺňĺ äŕ číńňŕëčđŕňĺ bootloader íŕ ä˙ëŕ %s\n"
@@ -1302,17 +1142,21 @@ msgstr "í˙ěŕ âúâĺäĺíŕ ďîěîů îůĺ.\n"
msgid "Boot Style Configuration"
msgstr "Íŕńňđîéęŕ íŕ íŕ÷číŕ íŕ ńňŕđňčđŕíĺ"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/_Ôŕéëîâĺ"
+msgstr "/_Ôŕéë"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ôŕéë/_Čçőîä"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<ęîíňđîë>Q"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1345,14 +1189,14 @@ msgstr "Đĺćčě íŕ Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Â ěîěĺíňŕ čçďîëçâŕňĺ %s ęŕňî ďđîăđŕěŕ çŕ ńňŕđňčđŕíĺ.\n"
"Öúęíĺňĺ íŕ Íŕńňđîé, çŕ äŕ ńňŕđňčđŕňĺ óńňŕíîâ˙âŕůč˙ ěŕăüîńíčę."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Íŕńňđîé"
@@ -1362,7 +1206,7 @@ msgid "System mode"
msgstr "Ńčńňĺěĺí đĺćčě"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Ďóńíč X-Window ńčńňĺěŕňŕ ďđč ńňŕđňčđŕíĺ"
#: ../../bootlook.pm_.c:148
@@ -1373,14 +1217,16 @@ msgstr "Íĺ, íĺ čńęŕě autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Äŕ, čńęŕě autologin ń ňîâŕ (ďîňđĺáčňĺë, äĺńęňîď)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1429,7 +1275,7 @@ msgstr "Íĺ ěîăŕ äŕ äîáŕâ˙ ďîâĺ÷ĺ ä˙ëîâĺ"
msgid "Screenshots will be available after install in %s"
msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ äđóăč ĺçčöč, ęîčňî ůĺ áúäŕň íŕëčöĺ ńëĺäčíńňŕëŕöč˙ňŕ"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ôđŕíöč˙"
@@ -1437,7 +1283,7 @@ msgstr "Ôđŕíöč˙"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Áĺëăčéńęŕ"
@@ -1466,11 +1312,12 @@ msgstr "Íîđâĺćęŕ"
msgid "Sweden"
msgstr "Âčć"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Čňŕëčŕíńęŕ"
@@ -1480,7 +1327,7 @@ msgstr "Čňŕëčŕíńęŕ"
msgid "Austria"
msgstr "ńĺđčéíŕ"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1488,8 +1335,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Ďúđâî ńúçäŕéňĺ backup íŕ ńâîčňĺ äŕííč"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Ďđî÷ĺňĺňĺ âíčěŕňĺëíî !"
@@ -1503,11 +1350,12 @@ msgstr ""
"ńĺęňîđŕ\n"
"ńŕ äîńňŕňú÷íč) â íŕ÷ŕëîňî íŕ äčńęŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Ăđĺřęŕ"
@@ -1515,11 +1363,11 @@ msgstr "Ăđĺřęŕ"
msgid "Wizard"
msgstr "Ěŕăüîńíčę"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Čçáĺđĺňĺ äĺéńňâčĺ"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1531,144 +1379,149 @@ msgstr ""
"Ďđĺäëŕăŕě ďúđâî äŕ ďđîěĺíčňĺ ăîëĺěčíŕňŕ íŕ ňîçč ä˙ë\n"
"(ůđŕęíĺňĺ âúđőó íĺăî, ŕ ńëĺä ňîâŕ ůđŕęíĺňĺ âúđőó \"Ďđîěĺíč ăîëĺěčíŕňŕ\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Ěîë˙, öúęíĺňĺ íŕ ä˙ëŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Ďîäđîáíîńňč"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Ćóđíŕëíŕ FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Ďđŕçĺí"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Äđóăŕ"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Âčäîâĺ ôŕéëîâŕ ńčńňĺěŕ:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Ńúçäŕé"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Âčä"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Âěĺńňî ňîâŕ čçďîëçâŕéňĺ ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Čçňđčé"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Ďúđâî čçďîëçâŕéňĺ 'Äĺěîíňčđŕíĺ'"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ńëĺä ďđîě˙íŕ íŕ ňčďŕ íŕ ä˙ëŕ %s, âńč÷ęč äŕííč âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Čçáĺđĺňĺ ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Čçáĺđĺňĺ äđóă ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Čçëĺç"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Ďđĺěčíč â Ĺęńďĺđňĺí đĺćčě"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ďđĺěčíč â Íîđěŕëĺí đĺćčě"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Âúđíč"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Ďđîäúëćĺíčĺ âúďđĺęč âńč÷ęî ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Čçőîä áĺç çŕďčń"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Čçőîä, áĺç äŕ çŕďčń íŕ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Čńęŕňĺ ëč äŕ çŕďŕçčňĺ ďđîěĺíčňĺ â /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Ŕâňîěŕňč÷íî ńúçäŕâŕíĺ"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Čç÷čńňč âńč÷ęî"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Îůĺ"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Číôîđěŕöč˙ňŕ çŕ ňâúđäč˙ äčńę"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Âńč÷ęč ďúđâč÷íč ä˙ëîâĺ ńĺ čçďîëçâŕň"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Íĺ ěîăŕ äŕ äîáŕâ˙ ďîâĺ÷ĺ ä˙ëîâĺ"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1676,31 +1529,31 @@ msgstr ""
"Ŕęî čńęŕňĺ îůĺ ä˙ëîâĺ, ěîë˙ čçňđčéňĺ ĺäčí, çŕ äŕ ěîćĺňĺ äŕ ńúçäŕäĺňĺ ĺäčí "
"đŕçřčđĺí ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Çŕďŕçč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Âúçńňŕíîâč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Ńďŕń˙âŕíĺ ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ďđĺçŕđĺäč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Ŕâňîěŕňč÷íî ěîíňčđŕíĺ íŕ ńěĺí˙ĺě íîńčňĺë"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Čçáĺđĺňĺ ôŕéë"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1708,11 +1561,11 @@ msgstr ""
"Đĺçĺđâíŕňŕ ňŕáëčöŕ íŕ ä˙ëîâĺňĺ íĺ ĺ ńúń ńúůŕňŕ ăîëĺěčíŕ\n"
"Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Ďđĺäóďđĺćäĺíčĺ"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1720,122 +1573,129 @@ msgstr ""
"Ńëîćĺňĺ äčńęĺňŕ âúâ ôëîďčňî\n"
"Âńč÷ęč äŕííč, íŕěčđŕůč ńĺ âúđőó äčńęĺňŕňŕ, ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Îďčňâŕě ńĺ äŕ ńďŕń˙ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Ďîäđîáíŕ číôîđěŕöč˙"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Îďöčč"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Ďđîěĺíč ăîëĺěčíŕňŕ"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Ďđĺěĺńňč"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Ôîđěŕňčđŕé"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ěîíňčđŕé"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ďđčáŕâč ęúě RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ďđčáŕâč ęúě LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Äĺěîíňčđŕé"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Ďđĺěŕőíč îň RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Ďđĺěŕőíč îň LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Ěîäčôčöčđŕé RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Čçďîëçâŕé çŕ loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Ńúçäŕé íîâ ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Íŕ÷ŕëĺí ńĺęňîđ: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Ăîëĺěčíŕ â MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Âčä ôŕéëîâŕ ńčńňĺěŕ: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Ďđĺäďî÷čňŕíčĺ: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Äŕ ďđĺěŕőíŕ ëč loopback ôŕéëŕ ?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Ďđîě˙íŕ ňčďŕ íŕ ä˙ëŕ"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Ęî˙ ôŕéëîâŕ ńčńňĺěŕ čńęŕňĺ ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Ďđĺőîä îň ext2 ęúě ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Ęúäĺ čńęŕňĺ äŕ ěîíňčđŕňĺ loopback-ôŕéëŕ %s ?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Ęúäĺ čńęŕňĺ äŕ ěîíňčđŕňĺ óńňđîéńňâî %s ?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1844,126 +1704,133 @@ msgstr ""
"loopback.\n"
"Ďúđâî ěŕőíĺňĺ loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Čç÷čńë˙âŕě ăđŕíčöčňĺ íŕ fat ôŕéëîâŕňŕ ńčńňĺěŕ"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ďđîě˙íŕ íŕ ăîëĺěčíŕňŕ"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ăîëĺěčíŕňŕ íŕ ä˙ëŕ íĺ ěîćĺ äŕ áúäĺ ďđîěĺíĺíŕ"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Âńč÷ęč äŕííč íŕ ňîçč ä˙ë ňđ˙áâŕ äŕ áúäŕň ŕđőčâčđŕíč"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ńëĺä ďđîě˙íŕ ăîëĺěčíŕňŕ íŕ ä˙ëŕ %s, äŕííčte âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Čçáĺđĺňĺ íîâŕ ăîëĺěčíŕ"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Íîâŕ ăîëĺěčíŕ â MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Íŕ ęîé äčńę čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ ?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Ńĺęňîđ"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Íŕ ęîé ńĺęňîđ čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Ěĺńňĺíĺ"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Ěĺńňâ˙ ä˙ëŕ ... "
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Čçáĺđĺňĺ ńúůĺńňâóâŕů RAID çŕ ďđčáŕâ˙íĺ"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "íîâ"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Čçáĺđĺňĺ ńúůĺńňâóâŕů LVM çŕ ďđčáŕâ˙íĺ"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM čěĺ ?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ňîçč ä˙ë íĺ ěîćĺ äŕ áúäĺ čçďîëçâŕí çŕ loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Čěĺ íŕ loopback ôŕéëŕ: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Äŕéňĺ čěĺ íŕ ôŕéë"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Ôŕéëúň âĺ÷ĺ ńĺ čçďîëçâŕ ňî äđóă loopback, čçáĺđĺňĺ äđóă ôŕéë."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ôŕéëúň âĺ÷ĺ ńúřĺńňâóâŕ. Äŕ ăî čçďîëçâŕě ëč ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Îďöčč çŕ mount:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Đŕçëč÷íč"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "óńňđîéńňâî"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "íčâî"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ăîëĺěčíŕ íŕ ďŕđ÷ĺňî"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Âíčěŕíčĺ: ňŕçč îďĺđŕöč˙ ĺ îďŕńíŕ"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Ęŕęúâ ňčď đŕçäĺë˙íĺ íŕ ä˙ëîâĺ ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Ňîçč ďŕęĺň ňđ˙áâŕ äŕ áúäĺ îáíîâĺí\n"
+"Ńčăóđíč ëč ńňĺ, ÷ĺ čńęŕňĺ äŕ ăî čçęëţ÷čňĺ ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1975,7 +1842,7 @@ msgstr ""
"Čëč čçďîëçâŕňĺ LILO č ňî íĺ đŕáîňč, čëč íĺ čçďîëçâŕňĺ LILO č í˙ěŕňĺ íóćäŕ "
"îň /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1987,7 +1854,7 @@ msgstr ""
"Ŕęî ńě˙ňŕňĺ äŕ čçďîëçâŕňĺ boot ěĺíčäćúđŕ LILO, áúäĺňĺ âíčěŕňĺëíč ďđč\n"
"ďđčáŕâ˙íĺňî íŕ /boot ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1997,129 +1864,129 @@ msgstr ""
"Í˙ěŕ çŕđĺćäŕůŕ ďđîăđŕěŕ, ęî˙ňî äŕ ěîćĺ äŕ ńĺ ńďđŕâč ń íĺăî áĺç /boot ä˙ë.\n"
"Ňŕęŕ ÷ĺ äîáŕâĺňĺ /boot ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ íŕ óńňđîéńňâî %s ůĺ áúäĺ çŕďčńŕíŕ âúđőó äčńęŕ !"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Ňđ˙áâŕ äŕ đĺńňŕđňčđŕňĺ, ďđĺäč ďđîěĺíčňĺ äŕ âë˙çŕň â ńčëŕ"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ńëĺä ôîđěŕňčđŕíĺ íŕ ä˙ëŕ %s, âńč÷ęč äŕííč âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Ôîđěŕňčđŕíĺ"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ôîđěŕňčđŕíĺ íŕ loopback ôŕéëŕ %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëŕ %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Ńęđčé ôŕéëîâĺňĺ"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Ďđĺěĺńňč ôŕéëîâĺňĺ íŕ íîâ ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Äčđĺęňîđč˙ňŕ %s âĺ÷ĺ ńúäúđćŕ í˙ęŕęâč äŕííč\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Ďđĺěĺńňč ôŕéëîâĺňĺ íŕ íîâ ä˙ë"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Ęîďčđŕíĺ íŕ %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Čçňđčâŕíĺ íŕ %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Óńňđîéńňâî: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Áóęâŕ íŕ óńňđîéńňâîňî ďîä DOS: %s (ďđîńňî ďđĺäďîëîćĺíčĺ)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Âčä: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Čěĺ: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Íŕ÷ŕëî: ńĺęňîđ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Đŕçěĺđ: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s ńĺęňîđŕ"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Îň öčëčíäúđ %d äî öčëčíäúđ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Ôîđěŕňčđŕí\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Íĺôîđěŕňčđŕí\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Ěîíňčđŕí\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2128,7 +1995,7 @@ msgstr ""
"Loopback ôŕéë(îâĺ):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2136,27 +2003,27 @@ msgstr ""
"Ä˙ë, ęîéňî ńĺ ńňŕđňčđŕ ďî ďîäđŕçáčđŕíĺ\n"
" (çŕ MS-DOS boot, íĺ çŕ lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Íčâî %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Đŕçěĺđ íŕ ďŕđ÷ĺňî %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äčńęîâĺ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Čěĺ íŕ loopback ôŕéëŕ: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2168,7 +2035,7 @@ msgstr ""
"Äđŕéâĺđ-ä˙ë, ěîćĺ áč ňđ˙áâŕ\n"
"ňđ˙áâŕ äŕ ăî îńňŕâčňĺ.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2180,64 +2047,64 @@ msgstr ""
"čâčöŕ íŕ ä˙ëŕ ĺ çŕ äâîéíî\n"
"ńňŕđňčđŕíĺ íŕ ńčńňĺěŕňŕ âč.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Đŕçěĺđ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăĺîěĺňđč˙: %s öčëčíäđč, %s ăëŕâč, %s ńĺęňîđč\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Číôîđěŕöč˙: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-äčńęîâĺ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ňčď íŕ ňŕáëčöŕňŕ ń ä˙ëîâĺ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "íŕ řčíŕ %d ŕäđĺń %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Îďöčč: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Âčä ôŕéëîâŕ ńčńňĺěŕ: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Ďŕđîëŕňŕ ĺ ďđĺęŕëĺíî ďđîńňŕ (ňđ˙áâŕ äŕ áúäĺ äúëăŕ ďîíĺ %d ńčěâîëŕ)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2246,36 +2113,66 @@ msgid "Change type"
msgstr "Ďđîě˙íč ňčďŕ"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Čäĺíňčôčęŕöč˙"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Číňĺđíĺň"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Ďîňđĺáčňĺëńęî čěĺ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Ďîňđĺáčňĺëńęî čěĺ"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS äîěĺéí"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS ńúđâúđ"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ôîđěŕňčđŕíĺ îň %s ďđîâŕëĺíî"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "íĺ çíŕě ęŕę äŕ ôîđěŕňčđŕě %s â ňčď %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck čçëĺçĺ ń čçőîäĺí ęîä %d čëč ńčăíŕë %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "ăđĺřęŕ ďđč äĺěîíňčđŕíĺňî íŕ %s: %s"
@@ -2292,70 +2189,323 @@ msgstr ""
msgid "server"
msgstr "ńúđâúđ"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ JFS çŕ ä˙ë ďî-ěŕëúę îň 16 ĚÁ"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Íĺ ěîćĺňĺ äŕ číńňŕëčđŕíĺ ReiserFS íŕ ä˙ë ďî-ěŕëúę îň 32 ĚÁ"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Ňî÷ęčňĺ íŕ ěîíňčđŕíĺ ňđ˙áâŕ äŕ çŕďî÷âŕň ń /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Âĺ÷ĺ čěŕ ä˙ë ń ňŕçč ě˙ńňî íŕ ěîíňčđŕíĺ %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ LVM ëîăč÷ĺńęč ňčď çŕ ě˙ńňî íŕ ěîíňčđŕíĺ %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ňŕçč äčđĺęňîđč˙ ňđ˙áâŕ äŕ îńňŕíĺ â đŕěęčňĺ íŕ root ôŕéëîâŕňŕ ńčńňĺěŕ."
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Íóćäŕĺňĺ ńĺ îň čńňčíńęŕ ôŕéëîâŕ ńčńňĺěŕ (ext2, reiserfs) çŕ ňŕçč ňî÷ęŕ íŕ "
"ěîíňčđŕíĺ\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ LVM ëîăč÷ĺńęč ňčď çŕ ě˙ńňî íŕ ěîíňčđŕíĺ %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ ŕâňîěŕňč÷íî çŕĺěŕíĺ"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ăđĺřęŕ ďđč îňâŕđ˙íĺ íŕ %s çŕ çŕďčń: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ďî˙âč ńĺ ăđĺřęŕ - íĺ ńŕ îňęđčňč âŕëčäíč óńňđîéńňâŕ, âúđőó ęîčňî äŕ áúäŕň "
"ńúçäŕäĺíč íîâč ôŕéëîâč ńčńňĺěč. Ěîë˙ ďđîâĺđĺňĺ ňâúđäč˙ ńč äčńę ńč çŕ "
"ďđč÷číŕňŕ çŕ ňîçč ďđîáëĺě"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Í˙ěŕňĺ íčęŕęâč ä˙ëîâĺ!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Îáů"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Ďŕěĺň (DMA) íŕ ęŕđňŕňŕ"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ôîđěŕňčđŕíĺ"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Ďđîě˙íč ňčďŕ"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Čçőîä"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ďîěîů"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ďîěîů"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ďîěîů/_Îňíîńíî..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Ěîäóë"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Ďŕěĺň (DMA) íŕ ęŕđňŕňŕ"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Îňęŕç"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Ěîäóë"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Îďčńŕíčĺ"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Čäĺíňčôčęŕöč˙"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Čçáĺđĺňĺ ôŕéë"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway óńňđîéńňâî"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 áóňîíŕ"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Çŕńč÷ŕíĺ íŕ äčńęîâĺňĺ"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Âčć őŕđäóĺđíŕňŕ číôîđěŕöč˙"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Ďîęŕćč číôîđěŕöč˙ňŕ"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Íŕńňđîéęŕ íŕ ěčřęŕ"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "çŕńĺ÷ĺí íŕ ďîđň %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Ěîë˙ čç÷ŕęŕéňĺ"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d ńĺęóíäč"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Čçňđčâŕíĺ íŕ ďđčíňĺđŕ \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2369,7 +2519,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2521,9 +2671,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2860,7 +3009,7 @@ msgstr ""
#: ../../help.pm_.c:256
#, fuzzy
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2872,9 +3021,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2946,21 +3094,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2976,9 +3123,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Â ňîçč ěîěĺíň ňđ˙áâŕ čçáĺđĺňĺ ęúäĺ íŕ ňâúđäč˙ ńč äčńęŕ äŕ číńňŕëčđŕňĺ "
"âŕřŕňŕ\n"
@@ -3074,9 +3221,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3273,38 +3419,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3479,11 +3619,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3533,7 +3673,7 @@ msgstr ""
"íĺ ďîçíŕâŕňĺ äîáđĺ GNU/Linux, ňŕęŕ ÷ĺ čçáĺđĺňĺ ňîâŕ, îńâĺí ŕęî íĺ çíŕĺňĺ\n"
"ęŕęâî ďđŕâčňĺ."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3569,7 +3709,7 @@ msgstr ""
"íŕ áóňîíŕ \"Íŕďđĺäíč÷ŕâ\". Ůĺ âč áúäĺ ďđĺäîńňŕâĺí ďúëĺí ńďčńúę ń "
"ďîääúđćŕíčňĺ ęëŕâčŕňóđč."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3595,7 +3735,7 @@ msgstr ""
"Îňáĺëĺćĺňĺ, ÷ĺ ěîăŕň äŕ áúäŕň číńňŕëčđŕíč í˙ęîëęî ĺçčęŕ. Âĺäíúć čçáđŕí\n"
"í˙ęŕęúâ ëîęŕë, öúęíĺňĺ áóňîíŕ \"OK\", çŕ äŕ ďđîäúëćčňĺ."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3623,7 +3763,7 @@ msgstr ""
"íŕńňđîéęŕňŕ ĺ äîđŕ. Ŕęî ěčřęŕňŕ íĺ đŕáîňč, ęŕęňî ňđ˙áâŕ, íŕňčńíĺňĺ číňĺđâŕë\n"
"čëč ŃĹ ÂÚĐÍĹŇĹ ęúě \"Îňęŕç\" č čçáĺđĺňĺ ďŕę."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3631,23 +3771,23 @@ msgstr ""
"Ěîë˙, čçáĺđĺňĺ âĺđíč˙ ďîđň. Íŕďđčěĺđ, ďîđňúň COM1 ďîä Windows ďîä GNU/Linux\n"
"ńĺ íŕđč÷ŕ ttyS0."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3669,7 +3809,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3691,7 +3831,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3699,7 +3839,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3720,7 +3860,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3744,7 +3884,7 @@ msgstr ""
"â ęîéňî ńëó÷ŕé ěîćĺňĺ äŕ čçňđčĺňĺ ńúîňâĺňíčňĺ çŕďčńč. Íî â ňŕęúâ ńëó÷ŕé,\n"
"ůĺ ńĺ íóćäŕĺňĺ îň boot-äčńęĺňŕ, çŕ äŕ ăč ńňŕđňčđŕňĺ !"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3758,29 +3898,28 @@ msgstr ""
"Ŕęî íĺ ńňĺ ńčăóđíč â ňîâŕ, ęîĺňî ďđŕâčňĺ, čçáĺđĺňĺ \"Ďúđâč˙ ńĺęňîđ íŕ\n"
"óńňđîéńňâîňî (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3789,7 +3928,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3814,11 +3953,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3828,9 +3967,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3842,7 +3980,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3868,7 +4006,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3895,18 +4033,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3914,12 +4051,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3935,7 +4071,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3946,7 +4082,7 @@ msgstr ""
"áúäŕň çŕăóáĺíč\n"
"č í˙ěŕ äŕ ěîăŕň äŕ ńĺ âúçńňŕíîâ˙ň."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3965,7 +4101,7 @@ msgstr ""
"Öúęíĺňĺ \"Îňě˙íŕ\", çŕ äŕ îňěĺíčňĺ ňŕçč îďĺđŕöč˙ áĺç çŕăóáŕ äŕ äŕííčňĺ č\n"
"ä˙ëîâĺňĺ ńúůĺńňâóâŕůč íŕ ňîçč ňâúđä äčńę."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3973,12 +4109,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4002,20 +4138,20 @@ msgstr ""
"\n"
"Íŕčńňčíŕ ëč čńęŕňĺ äŕ číńňŕëčđŕňĺ ňĺçč ńúđâúđč ?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ broadcast áĺç NIS äîěĺéí"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ńëîćĺňĺ FAT ôîđěŕňčđŕíŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Ňŕçč äčńęĺňŕ íĺ ĺ ôîđěŕňčđŕíŕ íŕ FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4023,7 +4159,7 @@ msgstr ""
"Çŕ äŕ čçďîëçâŕňĺ çŕďŕçĺí čçáîđ íŕ ďŕęĺňč, ńňŕđňčđŕéňĺ číńňŕëŕöč˙ňŕ ń ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Ăđĺřęŕ ďđč ÷ĺňĺíĺňî íŕ ôŕéëŕ %s"
@@ -4054,7 +4190,7 @@ msgstr "Ňđ˙áâŕ äŕ čěŕňĺ swap-ä˙ë"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4062,59 +4198,59 @@ msgstr ""
"\n"
"Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ňđ˙áâŕ äŕ čěŕňĺ FAT ä˙ë ěîíňčđŕí â /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Čçďîëçâŕé ńâîáîäíîňî ě˙ńňî"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ ńúçäŕâŕíĺ íŕ íîâ ä˙ë"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Čçďîçâŕíĺ íŕ ńúůĺńňâóâŕů ä˙ë"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Í˙ěŕ ä˙ë, ęîéňî ěîăŕ äŕ čçďîëçâŕě"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Čçďîëçâŕé çŕ Windows ä˙ëúň çŕ loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Ęîé ä˙ë čńęŕňĺ äŕ čçďîëçâŕňĺ çŕ Linux4Win ?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Čçáĺđĺňĺ ăîëĺěčíčňĺ"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Ăîëĺěčíŕ íŕ root-ä˙ëŕ â MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ăîëĺěčíŕ íŕ swap-ä˙ëŕ â MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Čçďîëçâŕé ńâîáîäíîňî ě˙ńňî íŕ Windows ä˙ëŕ"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Ęîé ä˙ë ćĺëŕĺňĺ äŕ ďđîěĺíčňĺ?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Čç÷čńë˙âŕě ăđŕíčöčňĺ íŕ Windows ôŕéëîâŕňŕ ńčńňĺěŕ"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4123,12 +4259,15 @@ msgstr ""
"Íĺ âúçěîćíîńň çŕ đŕáîňŕ ń âŕřč˙ FAT ä˙ë, \n"
"ďîđŕäč ďîëó÷ĺíŕňŕ ăđĺřęŕ: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Âŕřč˙ň Windows ä˙ë ĺ ěíîăî ôđŕăěĺíňčđŕí, ěîë˙ ďúđâî ńňŕđňčđŕéňĺ ''defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4149,54 +4288,54 @@ msgstr ""
"ďîâňîđĺňĺ číńňŕëŕöčŕ˙ňŕ. Áč áčëî äîáđĺ äŕ íŕďđŕâčňĺ ŕđőčâ íŕ äŕííčňĺ ńč.\n"
"Ęîăŕňî ńňĺ ńčăóđíč, íŕňčńíĺňĺ ÎĘ."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Ęîëęî čńęŕňĺ äŕ îńňŕâčňĺ çŕ windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "ä˙ë %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Íĺóńďĺříî ďđĺđŕçäĺë˙íĺ íŕ FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Í˙ěŕ FAT ä˙ëîâĺ çŕ ńě˙íŕ íŕ ăîëĺěčíŕňŕ čëč çŕ čçďîëçâŕíĺ ęŕňî loopback (čëč "
"í˙ěŕ äîńňŕňú÷íî ě˙ńňî íŕ äčńęŕ)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Čçňđčé öĺëč˙ äčńę"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Ďđĺěŕőíč Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "čěŕňĺ ďîâĺ÷ĺ îň ĺäčí ňâúđäč äčńęîâĺ, ęîé äŕ čçďîëçâŕě çŕ číńňŕëŕöč˙ňŕ?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ÂŃČ×ĘČ ńúůĺńňâóâŕůč ä˙ëîâĺ č äŕííčňe âúđőó ň˙ő íŕ %s ůĺ áúäŕň çŕăóáĺíč"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Ęëčĺíňńęî đŕçäĺë˙íĺ íŕ äčńęŕ"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Čçďîëçâŕé fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4205,11 +4344,11 @@ msgstr ""
"Ńĺăŕ ěîćĺňĺ äŕ đŕçäĺëčňĺ %s.\n"
"Ęîăŕňî ńňĺ ăîňîâč, íĺ çŕáđŕâ˙éňĺ äŕ çŕďčřĺňĺ čçďîëçâŕéęč `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Í˙ěŕ äîńňŕňú÷íî ńâîáîäíî ě˙ńňî íŕ ä˙ëŕ"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Íĺ ěîăŕ äŕ íŕěĺđ˙ íčęŕęâî ě˙ńňî çŕ číńňŕëŕöč˙"
@@ -4217,16 +4356,16 @@ msgstr "Íĺ ěîăŕ äŕ íŕěĺđ˙ íčęŕęâî ě˙ńňî çŕ číńňŕëŕöč˙"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ďîěîůíčęúň çŕ đŕçäĺëčíĺ íŕ ä˙ëîâĺ íŕ DrakX íŕěĺđč ńëĺäíčňĺ đĺřĺíč˙:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Íĺóńďĺříî đŕçäĺë˙íĺ íŕ: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Âęëţ÷âŕě ěđĺćŕňŕ"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
@@ -4238,12 +4377,12 @@ msgstr ""
"Ďî˙âč ńĺ ăđĺřęŕ, íî íĺ çíŕě ęŕę äŕ ńĺ ńďđŕâ˙ ń íĺ˙ äĺëčęŕňíî.\n"
"Ěîćĺňĺ äŕ ďđîäúëćčňĺ íŕ ńâîé đčńę."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóáëčđŕé ňî÷ęŕňŕ íŕ ěîíňčđŕíĺ %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4255,12 +4394,12 @@ msgstr ""
"Ďđîâĺđĺňĺ ęîěďŕęň äčńęŕ íŕ číńňŕëčđŕíč˙ ęîěďţňúđ čçďîëçâŕéęč \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Äîáđĺ äîřëč â %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Í˙ěŕ ôëîďč óńňđîéńňâî"
@@ -4270,9 +4409,9 @@ msgstr "Í˙ěŕ ôëîďč óńňđîéńňâî"
msgid "Entering step `%s'\n"
msgstr "Íŕâëčçŕě â ĺňŕď `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4282,200 +4421,155 @@ msgstr ""
"Çŕöĺëňŕ,\n"
"íŕňčńíĺňĺ 'F1', ęîăŕňî ńňŕđňčđŕňĺ îň CDROM č âúâĺäĺňĺ 'ňĺüň'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Ęëŕń číńňŕëŕöč˙"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Ěîë˙, čçáĺđĺňĺ ĺäčí îň ńëĺäíčňĺ ęëŕńîâĺ íŕ číńňŕëŕöč˙:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Îáůŕňŕ ăîëĺěčíŕ íŕ ăđóďčňĺ, ęîčňî ńňĺ ěŕđęčđŕëč, ĺ îęîëî %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ ďî-ěŕëęî îň ňŕçč ăîëĺěčíŕ,\n"
-"čçáĺđĺňĺ ďđîöĺíň ďŕęĺňč, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
-"\n"
-"Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
-"ďđč 100%% ůĺ číńňŕëčđŕň âńč÷ęč ěŕđęčđŕíč ďŕęĺňč."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Čěŕňĺ ě˙ńňî íŕ äčńęŕ ńč ńŕěî çŕ %d%% îň ňĺçč ďŕęĺňč.\n"
-"\n"
-"Ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ ďî-ěŕëęî îň ňîâŕ,\n"
-"čçáĺđĺňĺ ďđîöĺíň îň ďŕęĺňčňĺ, ęîčňî číńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
-"Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
-"ďđč %d%% ůĺ číńňŕëčđŕň âńč÷ęč čçáđŕíč ďŕęĺňč."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Ůĺ čěŕňĺ âúçěîćíîńňňŕ äŕ čçáĺđĺňĺ ďî-ňî÷íî ďđč ńëĺäâŕůč˙ ĺňŕď."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Ďđîöĺíň ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Čçáîđ íŕ ăđóďŕ ďŕęĺňč"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Čçáčđŕíĺ íŕ ďŕęĺňč ĺäčí ďî ĺäčí"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Îáůŕ ăîëĺěčíŕ: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Ëîř ďŕęĺň"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Čěĺ: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Âĺđńč˙: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Ăîëĺěčíŕ: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Âŕćíîńň: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Íĺ ěîćĺňĺ äŕ îńňŕâčňĺ ďŕęĺňŕ íĺěŕđęčđŕí, çŕůîňî í˙ěŕňĺ ě˙ńňî äŕ ăî "
"číńňŕëčđŕňĺ"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň číńňŕëčđŕíč"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň ďđĺěŕőíŕňč"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Íĺ ěîćĺňĺ äŕ îňáĺëĺćĺňĺ/äĺîňáĺëĺćĺňĺ ňîçč ďŕęĺň"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ňîâŕ ĺ íóćĺí ďŕęĺň, íĺ ěîćĺ äŕ áúäĺ íĺěŕđęčđŕí"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Íĺ ěîćĺňĺ äŕ îńňŕâčňĺ ňîçč ďŕęĺň íĺěŕđęčđŕí. Ňîé âĺ÷ĺ ĺ číńňŕëčđŕí"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ňîçč ďŕęĺň ňđ˙áâŕ äŕ áúäĺ îáíîâĺí\n"
"Ńčăóđíč ëč ńňĺ, ÷ĺ čńęŕňĺ äŕ ăî čçęëţ÷čňĺ ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Íĺ ěîćĺňĺ äŕ čçęëţ÷čňĺ ňîçč ďŕęĺň. Ňîé ňđ˙áâŕ äŕ áúäĺ îáíîâĺí"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Ďîęŕćč ŕâňîěŕňč÷íî îňáĺë˙çŕíčňĺ ďŕęĺňč"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Číńňŕëčđŕé"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Çŕđĺäč/Çŕďŕçč íŕ äčńęĺňŕ"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Îáíîâ˙âŕíĺ íŕ čçáîđŕ íŕ ďŕęĺňč"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Ěčěčíŕëíŕ číńňŕëŕöč˙"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Číńňŕëčđŕě"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Ďđĺńě˙ňŕíĺ"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Îńňŕâŕůî âđĺěĺ "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Ěîë˙, čç÷ŕęŕéňĺ, ďîäăîňâ˙íĺ íŕ číńňŕëŕöč˙ňŕ"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d ďŕęĺňŕ"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňŕ %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Ďđčĺěč"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Îňęŕćč"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4491,17 +4585,17 @@ msgstr ""
"Ŕęî ăî í˙ěŕňĺ, íŕňčńíĺňĺ Îňě˙íŕ, çŕ äŕ čçáĺăíĺňĺ číńňŕëčđŕíĺňî îň ňîçč CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč ďîđú÷âŕíĺňî íŕ ďŕęĺňčňĺ:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ ďŕęĺňčňĺ:"
@@ -4575,11 +4669,11 @@ msgstr "Ďî˙âč ńĺ ăđĺřęŕ"
msgid "Do you really want to leave the installation?"
msgstr "Íŕčńňčíŕ ëč čńęŕňĺ äŕ ďđĺěŕőíĺňĺ ďđčíňĺđŕ \"%s\" ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Ëčöĺíçčîíĺí äîăîâîđ"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4594,7 +4688,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4818,113 +4912,117 @@ msgstr ""
"íĺăîâč˙ îđčăčíŕë íŕ\n"
"ŕíăëčéńęč.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Ęëŕâčŕňóđŕ"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ĺňî ďúëĺí ńďčńúę íŕ äîńňđúďíčňĺ ęëŕâčŕňóđč"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Ęŕęúâ ęëŕń číńňŕëŕöč˙ ćĺëŕĺňĺ ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Číńňŕëčđŕé/Îáíîâč"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Ňîâŕ íîâŕ číńňŕëŕöč˙ ëč ĺ čëč îáíîâ˙âŕíĺ ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Ďđĺďîđú÷čňĺëíŕ"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ĺęńďĺđňíŕ"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Îáíîâ˙âŕíĺ"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Îáíîâ˙âŕíĺ íŕ čçáîđŕ íŕ ďŕęĺňč"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Ďîđň íŕ ěčřęŕňŕ"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ěîë˙, čçáĺđĺňĺ ęúě ęîé ńĺđčĺí ďîđň ĺ ńâúđçŕíŕ ěčřęŕňŕ âč."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Čěčňŕöč˙ íŕ áóňîíč"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Čěčňŕöč˙ íŕ 2 áóňîíŕ"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Čěčňŕöč˙ íŕ 3 áóňîíŕ"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Íŕńňđîéęŕ íŕ PCMCIA ęŕđňčňĺ ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Íŕńňđîéęŕ íŕ IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "í˙ěŕ ä˙ëîâĺ íŕ đŕçďîëîćĺíčĺ"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Ďđĺňúđńâŕíĺ íŕ ä˙ëîâĺňĺ çŕ íŕěčđŕíĺ íŕ ňî÷ęč íŕ ěîíňčđŕíĺ"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Čçáĺđĺňĺ ěĺńňŕ çŕ ěîíňčđŕíĺ"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4935,7 +5033,7 @@ msgstr ""
"Äđóăî đĺřĺíčĺ ĺ äŕ çŕáđŕíčňĺ íŕ DrakX ďîďđŕâ˙ ňŕáëčöŕňŕ ń ä˙ëîâĺ.\n"
"(ăđĺřęŕňŕ ĺ %s)\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4943,7 +5041,7 @@ msgstr ""
"DiskDrake íĺ óńď˙ äŕ đŕç÷ĺňĺ ďđŕâčëíî ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ.\n"
"Ďđîäúëćčňĺ íŕ ńîáńňâĺí đčńę !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4952,75 +5050,78 @@ msgstr ""
"çŕ äŕ ńňŕđňčđŕňĺ ńčńňĺěŕňŕ ńč, ůĺ ňđ˙áâŕ äŕ ńúçäŕäĺňĺ ńňŕđňčđŕůî ďîëĺ â "
"DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Íĺ ĺ íŕěĺđĺí ăëŕâĺí ä˙ë çŕ íŕäăđŕćäŕíĺ"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root ä˙ë"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Ęîé ĺ root-ä˙ëúň (/) íŕ ńčńňĺěŕňŕ âč ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Íŕëŕăŕ ńĺ đŕ đĺńňŕđňčđŕňĺ, ďđĺäč ěîäčôčęŕöččňĺ äŕ ďđĺäčçâčęŕň ĺôĺęň"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Čçáĺđĺňĺ ä˙ëîâĺňĺ, ęîčňî čńęŕňĺ äŕ ôîđěŕňčđŕňĺ"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Ďđîâĺđęŕ çŕ ëîřč ńĺęňîđč ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëowe"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ńúçäŕâŕíĺ č ôîđěŕňčđŕíĺ íŕ ôŕéëŕ %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Í˙ěŕ äîńňŕňú÷íî swap çŕ ďđčęëţ÷âŕíĺ íŕ číńňŕëŕöč˙ňŕ, ěîë˙ äîáŕâĺňĺ ěŕëęî"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Ňúđń˙ íŕëč÷íč ďŕęĺňč"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Ňúđń˙ íŕëč÷íč ďŕęĺňč"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Ňúđń˙ ďŕęĺňč çŕ îáíîâ˙âŕíĺ"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Íĺ ěîćĺňĺ äŕ îńňŕâčňĺ ňîçč ďŕęĺň íĺěŕđęčđŕí. Ňîé âĺ÷ĺ ĺ číńňŕëčđŕí"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Ńčńňĺěŕňŕ âč í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ číńňŕëŕöč˙ čëč îáíîâ˙âŕíĺ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Ďúëíŕ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ěčíčěŕëíŕ (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Ďđĺďîđú÷čňĺëíŕ (%dMb)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5028,55 +5129,55 @@ msgstr ""
"Ěîćĺ čçáĺđĺňĺ çŕđĺćäŕíĺ čëč çŕďčń íŕ čçáîđŕ íŕ ďŕęĺňč íŕ ôëîďč.\n"
"Ôîđěŕňúň ĺ ńúůč˙ň ęŕňî auto_install ăĺíĺđčđŕíčňĺ äčńęĺňč."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Çŕđĺäč îň äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Çŕđĺćäŕíĺ îň äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Čçáîđ íŕ ďŕęĺňč"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Ńëîćĺňĺ äčńęĺňŕ ńúäúđćŕůŕ čçáîđ íŕ ďŕęĺňč"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Çŕďŕçč íŕ äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Čçáđŕíŕňŕ ăîëĺěčíŕ ĺ ďî-ăîë˙ěŕ îň äîńňúďíîňî ďđîńňđŕíńňâî"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Čçáĺđĺňĺ ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Ĺäčí ěîěĺíň"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5086,16 +5187,16 @@ msgstr ""
"Ŕęî í˙ěŕňĺ íčňî ĺäíî îň ňĺçč CD-ňŕ, íŕňčńíĺňĺ Îňě˙íŕ.\n"
"Ŕęî âč ëčďńâŕň í˙ęîč CD-ňŕ, ěŕőíĺňĺ ăč, č íŕňčńíĺňĺ Ok. "
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM îçŕăëŕâĺí \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Ďîäăîňâ˙ě číńňŕëŕöč˙ňŕ"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5104,23 +5205,23 @@ msgstr ""
"Číńňŕëčđŕě ďŕęĺň %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Ńëĺä číńňŕëŕöčîííŕ íŕńňđîéęŕ"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ńëîćĺňĺ ńňŕđňčđŕůŕňŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ńëîćĺňĺ äčńęĺňŕ çŕ îáíîâ˙âŕíĺ íŕ ěîäóëč â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5184,159 +5285,190 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ńâúđçâŕíĺ ń îăëĺäŕëíč˙ ńúđâúđ çŕ ďîëó÷ŕâŕíĺ íŕ ńďčńúęŕ ń ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Čçáĺđĺňĺ îăëĺäŕëĺí ńúđâúđ,îň ęîéňî äŕ ďîëó÷čňĺ ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ńâúđçâŕíĺ ń îăëĺäŕëíč˙ ńúđâúđ çŕ ďîëó÷ŕâŕíĺ íŕ ńďčńúęŕ ń ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Ęî˙ ĺ âđĺěĺâŕňŕ âč çîíŕ ?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Őŕäđóĺđíč˙ň âč ÷ŕńîâíčę ĺ íŕńňđîĺí ďî GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Ŕâňîěŕňč÷íŕ ńčíőđîíčçŕöč˙ íŕ âđĺěĺňî (čçďîëçâŕ NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP ńúđâúđ"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Îňäŕëĺ÷ĺí CUPS ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Í˙ěŕ ďđčíňĺđ"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Čěŕňĺ ëč äđóă(č) ?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Îáîáůĺíčĺ"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Ěčřęŕ"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "×ŕńîâŕ çîíŕ"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Ďđčíňĺđ"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Çâóęîâŕ ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Ďđĺěŕőíč Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Ëîęŕëíč ôŕéëîâĺ"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Âúâĺäĺňĺ ďŕđîëŕ çŕ root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Áĺç ďŕđîëŕ"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ďŕđîëŕňŕ ĺ ďđĺęŕëĺíî ďđîńňŕ (ňđ˙áâŕ äŕ áúäĺ äúëăŕ ďîíĺ %d ńčěâîëŕ)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Čäĺíňčôčęŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP ŕóňîđčçŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Áŕçîâ dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS ŕóňîđčçŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS äîěĺéí"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP ŕóňîđčçŕöč˙"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS äîěĺéí"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP ńúđâúđ"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5365,19 +5497,19 @@ msgstr ""
"Ŕęî čńęŕňĺ äŕ ńúçäŕäĺňĺ bootdisk çŕ âŕřŕňŕ ńčńňĺěŕ, ďîńňŕâĺňĺ äčńęĺňŕ â\n"
"ďúđâîňî óńňđîéńňâî č íŕňčńíĺňĺ \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Ďúđâî ôëîďč óńňđîéńňâî"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Âňîđî ôëîďč óńňđîéńňâî"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Ďđĺńęî÷č"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5403,7 +5535,7 @@ msgstr ""
"ńëó÷ŕč íŕ ńđčâ. Čńęŕňĺ ëč äŕ ńúçäŕě bootdisk çŕ ńčńňĺěŕňŕ âč ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5412,28 +5544,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Ńúćŕë˙âŕě í˙ěŕ ôëîďč"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Čçáĺđĺňĺ ôëîďč äđŕéâ,ęúäĺňî äŕ íŕďđŕâčňĺ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ńëîćĺňĺ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Ńúçäŕâŕíĺ íŕ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Ďîäăîňîâęŕ íŕ bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5445,11 +5577,11 @@ msgstr ""
"Číńňŕëŕöč˙ňŕ ůĺ ďđîäúëćč, íî ůĺ ňđ˙áâŕ\n"
"äŕ čďîëçâŕňĺ BootX, çŕ äŕ ńňŕđňčđŕňĺ ěŕřčíŕňŕ ńč"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Čńęŕňĺ ëč äŕ čçďîëçâŕňĺ aboot ?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5457,15 +5589,15 @@ msgstr ""
"Ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ aboot, \n"
"äŕ ńĺ îďčňŕě ëč äŕ ďđîäúëćŕ číńňŕëŕöč˙ňŕ äîđč, ŕęî ňîâŕ óíčćňîćč ďúđâč˙ ä˙ë ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Číńňŕëčđŕíĺ íŕ bootloader"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Číńňŕëŕöč˙ňŕ íŕ bootloader ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5482,18 +5614,17 @@ msgstr ""
" Ńëĺä ęîĺňî íŕďčřĺňĺ: shut-down\n"
"Ďđč ńëĺäâŕůîňî đĺńňŕđňčđŕíĺ áč ňđ˙áâŕëî äŕ âčäĺňĺ ďîäńęŕçęŕňŕ."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ńëîćĺňĺ ďđŕçíŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Ďîäăîňâ˙ě äčńęĺňŕ ń ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5503,7 +5634,8 @@ msgstr ""
"\n"
"Íŕčńňčíŕ ëč čńęŕňĺ äŕ čçëĺçĺňĺ ńĺăŕ ?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5514,7 +5646,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5528,17 +5660,21 @@ msgstr ""
"ńĺ ęîíńóëňčđŕéňĺ ń Errata, íŕ ŕäđĺń : \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Číôîđěŕöč˙ çŕ íŕńňđîéâŕíĺ íŕ ńčńňĺěŕňŕ âč ěîćĺňĺ äŕ íŕěĺđčňĺ â\n"
"ńëĺäčíńňŕëŕöčîííŕňŕ ăëŕâŕ îň Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Ďîäăîňâč äčńęĺňŕ çŕ ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5552,15 +5688,15 @@ msgstr ""
"\n"
"Ěîćĺ áč čńęŕňĺ äŕ ďîâňîđčňĺ číńňŕëŕöč˙ňŕ.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Ŕâňîěŕňčçčđŕí"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ďîâňîđč"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Çŕďŕçč čçáîđ íŕ ďŕęĺňč"
@@ -5587,414 +5723,398 @@ msgstr ""
msgid "Choose a file"
msgstr "Čçáĺđĺňĺ ôŕéë"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Íŕďđĺäíč÷ŕâ"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Ěîë˙ čç÷ŕęŕéňĺ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Číôîđěŕöč˙"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Đŕçřčđč äúđâîňî"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Čç÷čńňč äúđâîňî"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó íîđěŕëíî č ńîđňčđŕíĺ ďî ăđóďč"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Ëîř čçáîđ, îďčňŕéňĺ îňíîâî\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Îďöčč: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Čńęŕňĺ ëč äŕ čçďîëçâŕňĺ aboot ?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "×ĺřęŕ (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Íĺěńęŕ"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Äâîđŕę"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Čńďŕíńęŕ"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Ôčíëŕíäńęŕ"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ôđĺíńęŕ"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Íîđâĺćęŕ"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Ďîëńęŕ"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Đóńęŕ"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Řâĺäńęŕ"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UĘ ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Ŕëáŕíńęŕ"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Ŕđěĺíńęŕ (ńňŕđŕ)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Ŕđěĺíńęŕ (ďčřĺůŕ ěŕřčíŕ)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Ŕđěĺíńęŕ (ôîíĺňč÷ĺí)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Ŕçĺđáŕéäćŕíńęŕ (ëŕňčíčöŕ)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Áĺëăčéńęŕ"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ŕđěĺíńęŕ (ôîíĺňč÷ĺí)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Áúëăŕđńęŕ"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Áđŕçčëńęŕ (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Áĺëŕđóńęŕ"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Řâĺéöŕđńęŕ (íĺěńęŕ íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Řâĺéöŕđńęŕ (ôđĺíńęč íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "×ĺřęŕ (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Íĺěńęŕ (áĺç íĺđŕáîňĺůč ęëŕâčřč)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Äŕňńęŕ"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Äâîđŕę (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Äâîđŕę (Íîđâĺćęŕ)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Äâîđŕę (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Ĺńňîíńęŕ"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Ăđóçčíńęŕ (\"Đóńęŕ\" íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Ăđóçčíńęŕ (\"Ëŕňčíńęŕ\" íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Ăđúöęŕ"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Óíăŕđńęŕ"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Őúđâŕňńęŕ"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Čçđŕĺëńęŕ"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Čçđŕĺëńęŕ (ôîíĺňč÷íŕ)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Čđŕíńęŕ"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Čńëŕíäńęŕ"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Čňŕëčŕíńęŕ"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "ßďîíńęŕ 106 ęëŕâčřŕ"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Ęîđĺéńęŕ ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Ëŕňčíîŕěĺđčęŕíńęŕ"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Ëčňâčéńęŕ AZERTY (ńňŕđŕ)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Ëčňâčéńęŕ AZERTY (íîâŕ)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëčňâčéńęŕ \"÷čńëîâŕ đĺäčöŕ\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëčňâčéńęŕ \"ôîíĺňč÷ĺí\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Ëŕňâčéńęŕ"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Ěŕęĺäîíńęŕ"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Őîëŕíäńęŕ"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Ďîëńęŕ (QWERTY íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Ďîëńęŕ (QWERTZ íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Ďîđňóăŕëńęŕ"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Ęŕíŕäńęŕ (Ęâĺáĺę)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Đóěúíńęŕ (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Đóěúíńęŕ (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Đóńęŕ (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Ńëîâĺíńęŕ"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Ńëîâŕřęŕ (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Ńëîâŕřęŕ (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Ńđúáńęŕ (ęčđčëčöŕ)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Ňŕáëčöŕ"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Ňŕéâŕíńęŕ ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Ňŕäćčęčńňŕíńęŕ ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Ňóđńęŕ (ňđŕäčöčîíĺí \"F\" ěîäĺë)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Ňóđńęŕ (ěîäĺđĺí \"Q\" ěîäĺë)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Óęđŕčíńęŕ"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US ęëŕâčŕňóđŕ (ěĺćäóíŕđîäíŕ)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Âčĺňíŕěńęŕ \"÷čńëîâŕ đĺäčöŕ\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Ţăîńëŕâńęŕ (ëŕňčíčöŕ)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -6007,7 +6127,31 @@ msgstr "\"Îěŕăüîńŕí ęđúă\" îň ěîíňčđŕíč˙: %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Ďúđâî ďđĺěŕőíč ëîăč÷íčňĺ ä˙ëîâî\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Ňĺëĺôîíĺí íîěĺđ"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëîâĺ"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6048,10 +6192,6 @@ msgstr "1 áóňîí"
msgid "Generic 2 Button Mouse"
msgstr "Îáčęíîâĺííŕ 2-áóňîííŕ ěčřęŕ"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Îáů"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Wheel"
@@ -6116,38 +6256,54 @@ msgstr "í˙ěŕ"
msgid "No mouse"
msgstr "Áĺç ěčřęŕ"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Çŕ äŕ ŕęňčâčđŕňĺ ěčřęŕňŕ ńč,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "ÁÓŇÍĹŇĹ ŇÎĎ×ĹŇÎ !"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Çŕâúđřč"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Ńëĺäâŕů ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Ďđĺäčřĺí"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Âńč÷ęî ďđŕâčëíî ëč ĺ ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Číôîđěŕöč˙"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Đŕçřčđč äúđâîňî"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Čç÷čńňč äúđâîňî"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó íîđěŕëíî č ńîđňčđŕíĺ ďî ăđóďč"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň"
@@ -6194,7 +6350,7 @@ msgstr ""
"Íĺ áĺřĺ íŕěĺđĺí ěđĺćîâ ŕäŕďňĺđ â ńčńňĺěŕňŕ âč.\n"
"Íĺ ěîćĺňĺ äŕ íŕńňđîčňĺ ňŕęúâ âčä âđúçęŕ."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Čçáĺđĺňĺ ěđĺćîâ číňĺđôĺéń"
@@ -6207,7 +6363,7 @@ msgstr "Ěîë˙, čçáĺđĺňĺ ęîé ěđĺćîâ ŕäŕďňĺđ äŕ čçďîëçâŕě çŕ âđúçęŕ ęúě Číňĺđíĺň"
msgid "no network card found"
msgstr "íĺ ĺ îňęđčňŕ ěđĺćîâŕ ęŕđňŕ"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Íŕńňîéęŕ íŕ ěđĺćŕňŕ"
@@ -6223,15 +6379,15 @@ msgstr ""
"Host čěĺňî ňđ˙áâŕ äŕ áóäĺ íŕďúëíî ęâŕëčôčöčđŕíî čěĺ,\n"
"ęŕňî ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Čěĺ íŕ őîńň:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Ěŕăüîńíčę çŕ íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
@@ -6286,7 +6442,7 @@ msgstr "Íŕńňđîéęŕ íŕ IDSN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Ďîńî÷ĺňĺ äîńňŕâ÷čęŕ ńč.\n"
" Ŕęî íĺ ĺ â ńďčńúęŕ, čçáĺđĺňĺ Unlisted"
@@ -6305,14 +6461,14 @@ msgstr "Ďđîňîęîë çŕ îńňŕíŕëč˙ ńâ˙ň"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Ďđîňîęîë çŕ îńňŕíŕëč˙ ńâ˙ň\n"
" áĺç D-Ęŕíŕë (íŕĺňŕ ëčíč˙)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Ęŕęúâ ďđîňîęîë ćĺëŕĺňĺ äŕ ďđîěĺíčňĺ ?"
#: ../../network/isdn.pm_.c:199
@@ -6336,7 +6492,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ŕęî čěŕňĺ ISA ęŕđňŕ, ńňîéíîńňčňĺ íŕ ńëĺäâŕůč˙ ĺęđŕí ňđ˙áâŕ äŕ ńŕ âĺđíč.\n"
@@ -6352,13 +6509,13 @@ msgid "Continue"
msgstr "Íŕňŕňúę"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Ęî˙ ĺ ISDN ęŕđňŕňŕ âč ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Îňęđčňŕ ĺ ISDN PCI ęŕđňŕ, íî ń íĺďîçíŕň ňčď. Ěîë˙ čçáĺđĺňĺ í˙ęî˙ PCI ęŕđňŕ "
"îň ńëĺäâŕůč˙ň ĺęđŕí."
@@ -6375,47 +6532,47 @@ msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
msgid "Dialup options"
msgstr "Îďöčč çŕ čçáčđŕíĺ ďî ňĺëĺôîí"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Čěĺ íŕ âđúçęŕňŕ"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Ňĺëĺôîíĺí íîěĺđ"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Áŕçčđŕíŕ íŕ ńęđčďň"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Áŕçčđŕíŕ íŕ ňĺđěčíŕë"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Čěĺ íŕ äîěĺéíŕ"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Ďúđâč DNS ńúđâúđ (ďî čçáîđ)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Âňîđč DNS ńúđâúđ (ďî čçáîđ)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6423,7 +6580,7 @@ msgstr ""
"\n"
"Ěîćĺňĺ äŕ ńĺ îňâúđćĺňĺ čëč äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6431,11 +6588,11 @@ msgstr ""
"\n"
"Ěîćĺňĺ äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Â ěîěĺíňŕ ńňĺ ńâúđçŕíč ęúě Číňĺđíĺň"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6443,33 +6600,33 @@ msgstr ""
"\n"
"Ěîćĺňĺ äŕ ńĺ ńâúđćĺňĺ ęúě Číňĺđíĺň čëč äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Â ěîěĺíňŕ íĺ ńňĺ ńâúđçŕíč ęúě Číňĺđíĺň"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Ńâúđćč"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Îňâúđćč"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Â ěîěĺíňŕ íŕńňđîéâŕě ěđĺćŕňŕ"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Číňĺđíĺň âđúçęŕ č íŕńňđîéęŕ"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ńĺăŕ ůĺ íŕńňđîčě %s âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6487,12 +6644,12 @@ msgstr ""
"\n"
"Íŕňčńíĺňĺ OK, çŕ äŕ ďđîäúëćčňĺ."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6503,9 +6660,9 @@ msgstr ""
"Öúęíĺňĺ Ok, çŕ äŕ çŕďŕçčňĺ íŕńňđîéęŕňŕ, čëč Îňě˙íŕ, çŕ äŕ ďđĺíŕńňîčňĺ "
"Číňĺđíĺň č ěđĺćîâŕňŕ ńč âđúçęŕ.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6515,66 +6672,72 @@ msgstr ""
"Âčĺ ńňĺ íŕ ďúň äŕ íŕńňđîčňĺ Číňĺđíĺň/ěđĺćîâŕňŕ ńč âđúçęŕ.\n"
"Ŕęî íĺ čńęŕňĺ äŕ čçďîëçâŕňĺ ŕâňîěŕňč÷íî çŕńč÷ŕíĺ, čçęëţ÷ĺňĺ ęóňčéęŕňŕ.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Čçáĺđĺňĺ ďđîôčë çŕ íŕńňđîéęŕ"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Đŕçřčđĺíč ôóíęčöčč"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Îňęđčâŕíĺ íŕ óńňđîéńňâŕ ..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Îáčęíîâĺíŕ ěîäĺěíŕ âđúçęŕ"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "çŕńĺ÷ĺí íŕ ďîđň %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN âđúçęŕ"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "çŕńĺ÷ĺíŕ %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL âđúçęŕ"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "çŕńĺ÷ĺí íŕ číňĺđôĺéń %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Ęŕáĺëíŕ âđúçęŕ"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "çŕńĺ÷ĺíŕ ĺ ęŕáĺëíŕ âđúçęŕ"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN âđúçęŕ"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet ęŕđňč çŕńĺ÷ĺíč"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Čçáĺđĺňĺ âđúçęŕňŕ, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6584,23 +6747,23 @@ msgstr ""
"Čçáĺđĺňĺ ňîçč, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Číňĺđíĺň âđúçęŕ"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Čńęŕňĺ ëč äŕ ńňŕđňčđŕňĺ âđúçęŕňŕ ńč ďđč çŕđĺćäŕíĺ ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Ěđĺćŕňŕ ňđ˙áâŕ äŕ áúäĺ đĺńňŕđňčđŕíŕ"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6611,7 +6774,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6621,7 +6784,7 @@ msgstr ""
"\n"
"Íŕńňđîéęčňĺ ůĺ áúäŕň ďđčëîćĺíč ęúě ńčńňĺěŕňŕ âč.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6629,16 +6792,16 @@ msgstr ""
"Ńëĺä ęŕňî ńňŕíĺ ňîâŕ, ďđĺďîđú÷âŕěĺ âč äŕ đĺńňŕđňčđŕňĺ X\n"
"ńđĺäŕňŕ ńč, çŕ äŕ čçáĺăíĺňĺ ďđîáëĺěč ńúń ńě˙íŕňŕ čěĺňî íŕ őîńňŕ."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6647,7 +6810,7 @@ msgstr ""
"Ďđîńňî ďđčĺěĺňĺ, çŕ äŕ îńňŕâčňĺ óńňđîéńňâîňî íŕńňđîĺíî.\n"
"Ďîďđŕâęŕňŕ íŕ ďîëĺňŕňŕ ďî-äîëó ůĺ ďđĺçŕďčřĺ ňŕçč íŕńňđîéęŕ."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6657,38 +6820,43 @@ msgstr ""
"Âń˙ęî óńňđîéńňâî ňđ˙áâŕ äŕ áúäĺ âúâĺäĺíî ęŕňî IP ŕäđĺń\n"
"ń ňî÷ęîâî-äĺńĺňč÷íî îçíŕ÷ĺíčĺ (íŕďđčěĺđ, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćîâîňî óńňđîéńňâî %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (äđŕéâĺđ %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP ŕäđĺń"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Ěđĺćîâŕ ěŕńęŕ"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Ŕâňîěŕňč÷ĺí IP ŕäđĺń"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Ďóńíŕň ďđč ńňŕđňčđŕíĺ"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ŕäđĺńúň ňđ˙áâŕ äŕ áúäĺ âúâ ôîđěŕň 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6700,64 +6868,64 @@ msgstr ""
"ęŕňî ``mybox.mylab.myco.com''.\n"
"Ěîćĺňĺ ńúůî äŕ âúâĺäĺňĺ IP ŕäđĺńŕ íŕ Âŕřč˙ gateway, ŕęî čěŕňĺ ňŕęúâ"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS ńúđâúđ"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway óńňđîéńňâî"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Íŕńňđîéęŕ íŕ proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Ďđîńëĺä˙âŕíĺ íŕ ID íŕ ěđĺćîâŕňŕ ęŕđňŕ (ďîëĺçíî ďđč ëŕďňîďč)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Čńęŕňĺ ëč ńĺăŕ äŕ îďčňŕňĺ âđúçęŕ ęúě Číňĺđíĺň ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Čçďđîáâŕíĺ íŕ âđúçęŕňŕ..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ńčńňĺěŕňŕ â ěîěĺíňŕ ĺ ńâúđçŕíŕ ęúě Číňĺđíĺň."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Çŕ âŕřŕ ńčăóđíîńň, ńĺăŕ ň˙ ůĺ áúäĺňĺ îňâúđçŕíŕ."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6765,111 +6933,116 @@ msgstr ""
"Ńčńňĺěŕňŕ íĺ čçăëĺćäŕ ńâúđçŕíŕ ęúě Číňĺđíĺň.\n"
"Îďčňŕéňĺ ńĺ äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Íŕńňđîéęŕ íŕ âđúçęŕňŕ"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Ěîë˙, ďîďúëíĺňĺ čëč ďđîâĺđĺňĺ ďîëĺňî ďî-äîëó"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ íŕ ęŕđňŕňŕ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Ďŕěĺň (DMA) íŕ ęŕđňŕňŕ"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO íŕ ęŕđňŕňŕ"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 íŕ ęŕđňŕňŕ"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 íŕ ęŕđňŕňŕ"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Ëč÷íč˙ âč ňĺëĺôîíĺí íîěĺđ"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Čěĺ íŕ äîńňŕâ÷čęŕ (íŕďđ. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Ňĺëĺôîíĺí íîěĺđ íŕ äîńňŕâ÷čęŕ"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "1-âč DNS íŕ äîńňŕâ÷čęŕ (ďî ćĺëŕíčĺ)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "2-đč DNS íŕ äîńňŕâ÷čęŕ (ďî ćĺëŕíčĺ)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Čçáĺđĺňĺ ńňđŕíŕňŕ ńč"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Đĺćčě íŕ íŕáčđŕíĺ"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Ńęîđîńň íŕ âđúçęŕňŕ"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout íŕ âđúçęŕňŕ (â ńĺę)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Čěĺ íŕ ŕęŕóíňŕ (ďîňĺáčňĺëńęî čěĺ)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Ďŕđîëŕ íŕ ŕęŕóíňŕ"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ěîíňčđŕíĺňî íĺ óńď˙: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Đŕçřčđĺíč ä˙ëîâĺ íĺ ńĺ ďîääúđćŕň íŕ ňŕçč ďëŕňôîđěŕ"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Čěŕňĺ ďđŕçíčíŕ â ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ, íî íĺ ěîăŕ äŕ ˙ čçďîëçâŕě.\n"
"Ĺäčíńňâĺíč˙ň íŕ÷čí ĺ äŕ ďđĺěĺńňčňĺ ăëŕâíčňĺ ńč ä˙ëîâĺ, çŕ äŕ čěŕňĺ ďđŕçíî "
"ě˙ńňî ńëĺä extended-ä˙ëîâĺňĺ"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Âúçńňŕíîâ˙âŕíĺňî îň ôŕéëŕ %s íĺ óńď˙: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Ëîř backup-ôŕéë"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Ăđĺřęŕ ďđč çŕďčń âúâ ôŕéëŕ %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6880,188 +7053,188 @@ msgstr ""
"Ňîâŕ çíŕ÷č, ÷ĺ ďčńŕíĺňî íŕ ęŕęâîňî č áčëî ďî äčńęŕ ůĺ ďđĺâđúůŕ\n"
"ďđîčçâîëíî â áîęëóę"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "íóćĺí"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "âŕćĺí"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "ěíîăî äîáúđ"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "äîáúđ"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ńňŕâŕ"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Îáůŕ Unix Ďđčíňĺđíŕ Ńčńňĺěŕ"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR Íîâî ďîęîëĺíčĺ"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Ëčíĺĺí Ďđčíňĺđĺí Äĺěîí"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Ďĺ÷ŕňŕé, Áĺç Îďŕřęŕ"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Ëîęŕëĺí ďđčíňĺđ"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Ďđčíňĺđ íŕ îňäŕëĺ÷ĺí CUPS ńúđâúđ"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Ďđčíňĺđ íŕ îňäŕëĺ÷ĺí LPD ńúđâúđ"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Ěđĺćîâ ďđčíňĺđ (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Ďđčíňĺđ íŕ SMB/Windows 95/98/NT ńúđâúđ"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Ďđčíňĺđ íŕ NetWare ńúđâúđ"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Âúâĺäĺňĺ URI íŕ ďĺ÷ŕňŕůî óńňđîéńňâî"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Ďđĺęŕđŕé đŕáîňŕňŕ ďđĺç ęîěŕíäŕ"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Íĺčçâĺńňĺí ěîäĺë"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Ëîęŕëĺí ďđčíňĺđ"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Ăđĺřęŕ ďđč çŕďčń âúâ ôŕéëŕ %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(íŕ %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(íŕ ňŕçč ěŕřčíŕ)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP íŕ CUPS ńúđâúđŕ"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Ďî ďîäđŕçáčđŕíĺ)"
@@ -7085,12 +7258,12 @@ msgstr ""
"ňóę; ňĺçč ďđčíňĺđč ůĺ áúäŕň çŕńĺ÷ĺíč ŕâňîěŕňč÷íî. Ěîë˙,\n"
"čçáĺđĺňĺ \"Ďđčíňĺđ íŕ îňäŕëĺ÷ĺí CUPS ńúđâúđ\" â ňîçč ńëó÷ŕé."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Îňäŕëĺ÷ĺí CUPS ńúđâúđ"
@@ -7140,7 +7313,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ŕäđĺńúň ňđ˙áâŕ äŕ áúäĺ âúâ ôîđěŕň 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Íîěĺđúň íŕ ďîđňŕ ňđ˙áâŕ äŕ ĺ ö˙ëî ÷čńëî !"
@@ -7148,7 +7321,7 @@ msgstr "Íîěĺđúň íŕ ďîđňŕ ňđ˙áâŕ äŕ ĺ ö˙ëî ÷čńëî !"
msgid "CUPS server IP"
msgstr "IP íŕ CUPS ńúđâúđŕ"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Ďîđň"
@@ -7156,21 +7329,13 @@ msgstr "Ďîđň"
msgid "Automatic CUPS configuration"
msgstr "Ŕâňîěŕňč÷íŕ íŕńňđîéęŕ íŕ CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Çŕńč÷ŕíĺ íŕ óńňđîéńňâŕ ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ňĺńňâŕíĺ ďîđňîâĺňĺ"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Äîáŕâč ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7183,14 +7348,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Ëîęŕëĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7208,12 +7373,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7227,11 +7392,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7241,35 +7406,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Ňĺńňâŕíĺ ďîđňîâĺňĺ"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "çŕńĺ÷ĺíŕ %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7277,43 +7446,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Âúâĺäĺňĺ URI íŕ ďĺ÷ŕňŕůî óńňđîéńňâî"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Ëîęŕëĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7321,7 +7490,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7329,72 +7498,82 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Âúâĺäĺňĺ URI íŕ ďĺ÷ŕňŕůî óńňđîéńňâî"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Íŕńňđîéęŕ íŕ öâĺňîâĺ"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "×ĺňĺíĺ íŕ áŕçŕňŕ äŕííč îň ďđčíňĺđč ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "×ĺňĺíĺ íŕ áŕçŕňŕ äŕííč îň ďđčíňĺđč ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Îďöčč íŕ îňäŕëĺ÷ĺí lpd-ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7404,27 +7583,27 @@ msgstr ""
"äŕ ďđĺäîńňŕâčňĺ čěĺíŕňŕ íŕ őîńňŕ íŕ ďđčíňĺđíč˙ ńúđâúđ č\n"
"čěĺňî íŕ ďđčíňĺđŕ íŕ ňîçč ńúđâúđ."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí őîńň"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ čěĺ íŕ őîńň !"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ !"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Íŕńňđîéęč íŕ SMB (Windows 9x/NT) ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7438,35 +7617,35 @@ msgstr ""
"ďđčíňĺđŕ, äî ęîéňî čńęŕňĺ äîńňúď č ďîäőîä˙ůî čěĺí, ďŕđîëŕ č číôîđěŕöč˙\n"
"çŕ đŕáîňíŕňŕ ăđóďŕ."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Őîńň íŕ SMB ńúđâúđ"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP íŕ SMB ńúđâúđ:"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Îáůî čěĺ"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Đŕáîňíŕ ăđóďŕ"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Ňđ˙áâŕ äŕ áúäŕň çŕäŕäĺíč č čěĺňî č IP ŕäđĺńŕ íŕ ńúđâúđŕ !"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ SAMBA share !"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7490,7 +7669,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7499,7 +7678,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7507,11 +7686,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Îďöčč çŕ NetWare ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7522,28 +7701,28 @@ msgstr ""
"Çŕ äŕ ďĺ÷ŕňčňĺ íŕ NetWare ďđčíňĺđ ,ňđ˙áâŕ äŕ çíŕĺňĺ čěĺî ěó č âúçěîćíî\n"
"ŕäđĺńŕ íŕ ńúđâúđŕ, ęŕęňî č čěĺňî íŕ îďŕřęŕňŕ,ďîňđĺáčňĺëńęîňî čěĺ,ďŕđîëŕ."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Ńúđâúđ íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Čěĺ íŕ ďĺ÷ŕňíŕňŕ îďŕřęŕňŕ"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ NCP ńúđâúđ !"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ NCP îďŕřęŕ !"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Îďöčč íŕ Socket ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7557,19 +7736,19 @@ msgstr ""
"íŕ äđóăč ńúđâúđč ěîćĺ äŕ âŕđčđŕ. Âčćňĺ đúęîâîńňâîňî íŕ\n"
"őŕđäóĺđŕ ńč."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Čěĺ íŕ őîńň íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Ëčďńâŕ čěĺ íŕ őîńň íŕ ďđčíňĺđa !"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7579,11 +7758,11 @@ msgstr ""
"čçďúëíč čëč CUPS čëč Foomatic ńďĺöčôčęŕöččňĺ. Îňáĺëĺćĺňĺ, ÷ĺ íĺ âńč÷ęč "
"ňčďîâĺ URI ńĺ ďîääđúđćŕň îň spooler-čňĺ."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Ňđ˙áâŕ äŕ áúäĺ âúâĺäĺí âŕëčäĺí URI !"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7593,28 +7772,24 @@ msgstr ""
"Ďîëĺňŕňŕ Îďčńŕíčĺ č Ěĺńňîďîëîćĺ íĺ ňđ˙áâŕ äŕ áúäŕň\n"
"ďîďúëâŕíč. Čěŕ ęîěĺíňŕđč çŕ ďîňđĺáčňĺëčňĺ."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Čěĺ íŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Îďčńŕíčĺ"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ěĺńňîďîëîćĺíčĺ"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Ďîäăîňâ˙íĺ íŕ áŕçŕňŕ äŕííč îň ďđčíňĺđč ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7629,26 +7804,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Âńč÷ęî ďđŕâčëíî ëč ĺ ?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Čçáîđ ěîäĺë íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Ęŕęúâ ěîäĺë ďđčíňĺđ čěŕňĺ ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7657,17 +7832,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Íŕńňđîéęč íŕ OKI Winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7677,11 +7852,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Íŕńňđîéęŕ íŕ Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
#, fuzzy
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
@@ -7694,7 +7869,7 @@ msgstr ""
"ďđčíňĺđíč ěŕřčíč. Ěîë˙, ńâúđćĺňĺ ďđčíňĺđŕ ńč íŕ ëîęŕëĺí ďîđň\n"
"čëč ăî íŕńňđîéňĺ íŕ ěŕřčíŕňŕ, ęúě ęî˙ňî ĺ ńâúđçŕí."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7707,7 +7882,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -7723,22 +7898,22 @@ msgstr ""
"Îňáĺëĺćĺňĺ, ÷ĺ ďđč ěíîăî âčńîęî ęŕ÷ĺńňî íŕ čçőîäŕ íŕ\n"
"ďđčíňĺđŕ, ňîé ěîćĺ çíŕ÷čňĺëíî äŕ ńĺ çŕáŕâč."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Íŕńňđîéęŕňŕ %s ňđ˙áâŕ äŕ ĺ ö˙ëî ÷čńëî !"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Íŕńňđîéęŕňŕ %s ňđ˙áâŕ äŕ ĺ ÷čńëî !"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Îďöč˙ňŕ %s ĺ čçâúí ăđŕíčöčňĺ !"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7747,11 +7922,11 @@ msgstr ""
"Čńęŕňĺ ëč äŕ íŕńňđîčňĺ ňîçč ďđčíňĺđ (\"%s\")\n"
"ęŕňî ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Ňĺńňîâč ńňđŕíčöč"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -7764,40 +7939,40 @@ msgstr ""
"âđĺěĺ äŕ ńĺ čçďĺ÷ŕňŕ č íŕ ëŕçĺđíč ďđčíňĺđč ń ěŕëęî ďŕěĺň ěîćĺ âúîáůĺ\n"
"äŕ íĺ čçëĺçĺ.  ďîâĺ÷ĺňî ńëó÷ŕč ĺ äîńňŕňú÷íŕ ńňŕíäŕđňíŕ ňĺńňîâŕ ńňđŕíčöŕ."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Áĺç ňĺńňîâč ńňđŕíčöč"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Ďĺ÷ŕň"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Ńňŕíäŕđňíŕ ňĺńňîâŕ ńňđŕíčöŕ"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Ŕëňĺđíŕňčâíŕ ňĺńňîâŕ ńňđŕíčöŕ (Ďčńěî)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Ŕëňĺđíŕňčâíŕ ňĺńňîâŕ ńňđŕíčöŕ (Ŕ4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Ňĺńňîâŕ ńňđŕíčöŕ ńúń ńíčěęŕ"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Îňďĺ÷ŕňâŕíĺ íŕ ňĺńňîâč ńňđŕíčöč"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Îňďĺ÷ŕňâŕíĺ íŕ ňĺńňîâ(ŕňŕ/čňĺ) ńňđŕíčö(ŕ/č) ..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7812,7 +7987,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7820,15 +7995,15 @@ msgstr ""
"Ňĺńňîâčňĺ ńňđŕíčöč ńŕ čçďđŕňĺíč ęúě ďđčíňĺđíŕ.\n"
"Ěîćĺ äŕ îňíĺěĺ ěŕëęî âđĺěĺ ďđĺäč ďđčíňĺđŕ äŕ çŕďî÷íĺ.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Ďđîđŕáîňč ëč ęŕęňî ňđ˙áâŕ ?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7841,7 +8016,7 @@ msgstr ""
"<file>\" čëč \"kprinter <file>\". Ăđŕôč÷íčňĺ číńňđóěĺíňč âč ďîçâîë˙âŕň äŕ "
"čçáčđŕňĺ ďđčíňĺđŕ č äŕ ďîďđŕâ˙ňĺ ëĺńíî íŕńňđîéęčňĺ íŕ îďöččňĺ.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -7851,8 +8026,8 @@ msgstr ""
"ďĺ÷ŕňíčňĺ äčŕëîçč â ěíîƒî ďđčëîćĺíč˙. Íî ň˘ę íĺ ďîńňŕâ˙éňĺ čěĺňî íŕ ôŕéëŕ, "
"çŕůîňî ňî ńĺ ďîäŕâŕ îň ďđčëîćĺíčĺňî.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7865,23 +8040,23 @@ msgstr ""
"çŕ îďđĺäĺëĺíŕ đŕáîňŕ íŕ ďđčíňĺđŕ. Ďđîńňî äîáŕâĺňĺ öĺëŕíčňĺ íŕńňđîéęč ęúě "
"ęîěŕíäíč˙ đĺä, íŕďđ. \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Çŕ äŕ âčäčňĺ ńďčńúę íŕ äîńňúďíčňĺ îďöčč çŕ ňĺęóůč˙ ďđčíňĺđ, čëč ďđî÷ĺňĺňĺ "
"ńďčńúęŕ ďîęŕçŕí ďî-äîëó čëč öúęíĺňĺ íŕ áóňîíŕ \"Ńďčńúę ń îďöčč çŕ ďĺ÷ŕň\".\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7890,8 +8065,8 @@ msgstr ""
"Çŕ äŕ čçďĺ÷ŕňŕňĺ ôŕéë îň ęîěŕíäíč˙ đĺä (ňĺđěčíŕëĺí ďđîçîđĺö) čçďîëçâŕéňĺ "
"ęîěŕíäŕňŕ \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -7901,7 +8076,7 @@ msgstr ""
"ďĺ÷ŕňíčňĺ äčŕëîçč â ěíîăî ďđčëîćĺíč˙. Íî ňóę íĺ ďîńňŕâ˙éňĺ čěĺňî íŕ ôŕéëŕ, "
"çŕůîňî ňî ńĺ ďîäŕâŕ îň ďđčëîćĺíčĺňî.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -7911,7 +8086,7 @@ msgstr ""
"\"Ńďčńúę ń îďöčč çŕ ďĺ÷ŕň\".\n"
"\n"
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7920,7 +8095,7 @@ msgstr ""
"Çŕ äŕ îňďĺ÷ŕňŕňĺ ôŕéë îň ęîěŕíäíč˙ đĺä (ňĺđěčíŕëĺí ďđîçîđĺö), čçďîëçâŕéňĺ "
"ęîěŕíäŕňŕ \"%s <file>\" čëč \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7930,7 +8105,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7943,29 +8118,40 @@ msgstr ""
"íŕńňđîéęč çŕ îďđĺäĺëĺíŕ đŕáîňŕ íŕ ďđčíňĺđŕ. Ďđîńňî äîáŕâĺňĺ čńęŕíčňĺ "
"íŕńňđîéęč ęúě ęîěŕíäíč˙ đĺä, íŕďđ. \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Çŕňâîđč"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Çŕňâîđč"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Ńďčńúę ń ďđčíňĺđíč îďöčč"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7973,36 +8159,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "×ĺňĺíĺ íŕ äŕííč îň ďđčíňĺđŕ ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Ďđĺíîń íŕ íŕńňđîéęŕ íŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8018,7 +8204,7 @@ msgstr ""
"ďđĺőâúđë˙ň.\n"
"Íĺ âńč÷ęč îďŕřęč ěîăŕň äŕ áúäŕň ďđĺőâúđëĺíč ďî ńëĺäíčňĺ ďđč÷číč:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -8027,7 +8213,7 @@ msgstr ""
"CUPS íĺ ďîääúđćŕ ďđčíňĺđč íŕ Novell ńúđâúđč čëč ďđčíňĺđč\n"
"čçďđŕůŕůč äŕííč âúâ ńâîáîäíî-čçăđŕäĺíŕ ęîěŕíäŕ.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -8036,11 +8222,11 @@ msgstr ""
"PDQ ďîääúđćŕ ńŕěî ëîęŕëíč ďđčíňĺđč, îňäŕëĺ÷ĺíč LPD ďđčíňĺđč\n"
"č Socket/TCP ďđčíňĺđč.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD č LPRng íĺ ďîääúđćŕ IPP ďđčíňĺđč.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -8049,7 +8235,7 @@ msgstr ""
"Ęŕňî äîďúëíĺíčĺ, îďŕřęčňĺ íĺ ńúçäŕäĺíč ń ňŕçč ďđîăđŕěŕ\n"
"čëč \"foomatic-configure\" íĺ ěîăŕň äŕ áúäŕň ďđĺőâúđë˙íč."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
#, fuzzy
msgid ""
"\n"
@@ -8061,7 +8247,7 @@ msgstr ""
"îň ďđîčçâîäčňĺëčňĺ čě čëč ń îđčăčíŕëíč CUPS äđŕéâĺđč íĺ\n"
"ěîăŕň äŕ áúäŕň ďđĺőâúđë˙íč."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8071,15 +8257,15 @@ msgstr ""
"Îňáĺëĺćĺňĺ ďđčíňĺđčňĺ, ęîčňî čńęŕňĺ äŕ ďđĺőâúđëčňĺ č öúęíĺňĺ\n"
"\"Ďđĺőâúđëč\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Íĺ ďđĺőâúđë˙é ďđčíňĺđč"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Ďđĺőâúđëč"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8090,11 +8276,11 @@ msgstr ""
"Öúęíĺňĺ \"Ďđĺőâúđëč\", çŕ äŕ ăî ďđĺçŕďčřĺňĺ.\n"
"Ěîćĺňĺ ńúůî ňŕęŕ äŕ íŕďčřĺňĺ íîâî čěĺ čëč äŕ ďđîďóńíňĺ ďđčíňĺđŕ."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Čěĺňî íŕ ďđčíňĺđŕ ňđ˙áâŕ äŕ ńúäúđćŕ ńŕěî áóęâč, ÷čńëŕ č ďîä÷ĺđňŕâęŕ"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8103,16 +8289,16 @@ msgstr ""
"Ďđčíňĺđúň \"%s\" âĺ÷ĺ ńúůĺńňâóâŕ,\n"
"íŕčńňčíŕ ëč čńęŕňĺ äŕ ďđĺçŕďčřĺňĺ íŕńňđîéęŕňŕ ?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Íîâî čěĺ íŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Ďđĺőâúđë˙íĺ íŕ %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8122,29 +8308,29 @@ msgstr ""
"Čńęŕňĺ ëč äŕ ăî îńňŕâčňĺ ďî ďîäđŕçáčđŕíĺ â íîâŕňŕ\n"
"ďđčíňĺđíŕ ńčńňĺěŕ %s ?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Îďđĺńí˙âŕíĺ íŕ äŕííčňĺ îň ďđčíňĺđŕ ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Íŕńňđîéęŕ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Ńňŕđňčđŕíĺ ěđĺćŕňŕ ...."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Â ěîěĺíňŕ íŕńňđîéâŕě ěđĺćŕňŕ"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Ôóíęöčîíŕëíîńňňŕ íŕ ěđĺćŕňŕ íĺ ĺ íŕńňđîĺíŕ"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8152,11 +8338,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Ďđîäúëćč áĺç íŕńňîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8166,7 +8352,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -8178,24 +8364,24 @@ msgstr ""
"ńč. Ňîăŕâŕ îďčňŕéňĺ äŕ íŕńňđîčňĺ îňäŕëĺ÷ĺíč˙ ďđčíňĺđ\n"
"îňíîâî."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Đĺńňŕđňčđŕíĺ íŕ ďđčíňĺđíŕňŕ ńčńňĺěŕ"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "âčńîęî"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "ďŕđŕíîč÷íî"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Číńňŕëčđŕíĺ íŕ ďđčíňĺđíŕňŕ ńčńňĺěŕ â %s íčâî íŕ ńčăóđíîńň"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8210,11 +8396,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Ńňŕđňčđŕíĺ íŕ ďđčíňĺđíŕňŕ ńčńňĺěŕ ďđč ńňŕđňčđŕíĺ"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8228,66 +8414,66 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Ďđîâĺđęŕ íŕ číńňŕëčđŕíč˙ ńîôňóĺđ..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Čçňđčâŕíĺ íŕ LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Čçňđčâŕíĺ íŕ LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Čçáĺđĺňĺ ďđčíňĺđĺí spooler"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Ęî˙ ďđčíňĺđíŕ ńčńňĺěŕ (spooler) čçęŕňĺ äŕ čçďîëçâŕňĺ ?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Íŕńňđîéęŕ íŕ ďđčíňĺđŕ \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Îďöčč íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Ďîäăîňâ˙íĺ íŕ PinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Íŕńňđîéęŕ íŕ ďđčíňĺđŕ \"%s\" ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ ďĺ÷ŕňŕ ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Ďĺ÷ŕňíŕ ńčńňĺěŕ: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8300,7 +8486,7 @@ msgstr ""
"čëč çŕ äŕ ďîëó÷čňĺ číôîđěŕöč˙ çŕ íĺăî, čëč\n"
"âúđőó \"Äîáŕâč Ďđčíňĺđ\", çŕ äŕ äîáŕâčňĺ íîâ ďđčíňĺđ."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8312,29 +8498,33 @@ msgstr ""
"čëč çŕ äŕ ďîëó÷čňĺ číôîđěŕöč˙ çŕ íĺăî, čëč\n"
"âúđőó \"Äîáŕâč Ďđčíňĺđ\", çŕ äŕ äîáŕâčňĺ íîâ ďđčíňĺđ."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Íŕńňîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Íîđěŕëĺí đĺćčě"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Čçőîä"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ äđóă ďđčíňĺđ ?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Ďîďđŕâč íŕńňđîéęčňĺ íŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8343,103 +8533,103 @@ msgstr ""
"Ďđčíňĺđ %s: %s %s\n"
"Ęŕęâî čńęŕňĺ äŕ ďîďđŕâčňĺ ďî ňîçč ďđčíňĺđ ?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Äŕâŕé !"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Ňčď íŕ âđúçęŕňŕ ęúě ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Čěĺ íŕ ďđčíňĺđŕ, îďčńŕíčĺ, ěĺńňîďîëîćĺíčĺ"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Ďđîčçâîäčňĺë íŕ ďđčíňĺđŕ, ěîäĺë, äđŕéâĺđ"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Ďđîčçâîäčňĺë íŕ ďđčíňĺđŕ, ěîäĺë"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Îďđĺäĺëč ňîçč ďđčíňĺđ çŕ ďîëçâŕíĺ ďî ďîäđŕçáčđŕíĺ"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Îňďĺ÷ŕňâŕíĺ íŕ ňĺńňîâč ńňđŕíčöč"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ äđóă ďđčíňĺđ ?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Ďđĺěŕőâŕíĺ íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Čçňđčâŕíĺ íŕ ńňŕđ ďđčíňĺđ \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Ďđčíňĺđúň \"%s\" âĺ÷ĺ ĺ îďđĺäĺëĺí çŕ ďîëçâŕíĺ ďî ďîäđŕçáčđŕíĺ."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Íŕčńňčíŕ ëč čńęŕňĺ äŕ ďđĺěŕőíĺňĺ ďđčíňĺđŕ \"%s\" ?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Čçňđčâŕíĺ íŕ ďđčíňĺđŕ \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8524,24 +8714,61 @@ msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň. Îďčňŕéňĺ ďŕę !"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Íĺ ěîăŕ äŕ ďđčáŕâ˙ ä˙ë ęúě _ôîđěŕňčđŕí_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ôŕéëúň %s íĺ ěîćĺ äŕ áúäĺ çŕďčńŕí"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid ďđîďŕäíŕ"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ďđîďŕäíŕ (ěîćĺ áč raidtools ëčďńâŕň ?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Í˙ěŕ äîńňŕňú÷íî ä˙ëîâĺ çŕ RAID íčâî %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ňîâŕ íčâî ńĺ čçďîëçâŕ ń âíčěŕíčĺ. Ňîâŕ ęŕđŕ ńčńňĺěŕňŕ âč ďî-ëĺńíŕ çŕ\n"
+"óďîňđĺáŕ, íî ĺ ďî-÷óâńňâčňĺëíî: íĺ ňđ˙áâŕ äŕ áúäĺ čçďîëçâŕíŕ íŕ ěŕřčíč\n"
+"ńâúđçŕíč ń äđóăč čëč ďî Číňĺđíĺň. Í˙ěŕ äîńňúď ń ďŕđîëč."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Ń ňîâŕ íčâî íŕ ńčăóđíîńň, ďîëçâŕíĺňî íŕ ńčńňĺěŕňŕ ęŕňî ńúđâúđ ńňŕâŕ "
+"âúçěîćíî.\n"
+"Ńčăóđíîńňňŕ ńĺăŕ ĺ äîńňŕňú÷íî ăîë˙ěŕ äŕ ńĺ čçďîëçâŕ ńčńňĺěŕňŕ ęŕňî\n"
+"ńúđâúđ ďđčĺěŕů âđúçęč îň ěíîăî ęëčĺíňč. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Îďöčč"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Ďóńíč ALSA (Advanced Linux Sound Architecture) çâóęîâŕňŕ ńčńňĺěŕ"
@@ -8597,7 +8824,7 @@ msgstr ""
"HardDrake ďđŕâč ďđîáč íŕ őŕđäóĺđŕ, č ĺâĺíňóŕëíî íŕńňđîéâŕ\n"
"íîâ/ďđîěĺíĺí őŕđäóĺđ."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8675,7 +8902,7 @@ msgstr ""
"Linux Virtual Server ńĺ čçďîëçâŕ çŕ čçăđŕćäŕíĺ íŕ âčńîęîďđîčçâîäčňĺëĺí\n"
"č äîáđĺ äîńňúďĺí ńúđâúđ."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8752,7 +8979,7 @@ msgstr ""
"NFS č NIS. portmap ńúđâúđŕ ňđ˙áâŕ äŕ ĺ ďóńíŕň íŕ ěŕřčíč, ęîčňî đŕáîň˙ň ęŕňî\n"
"ńúđâúđ çŕ ďđîňîęîëč, ęîčňî ńĺ íóćäŕ˙ň äŕ čçďîëçâŕň RPC ěĺőŕíčçúě."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8848,7 +9075,7 @@ msgstr "Číňĺđíĺň"
msgid "File sharing"
msgstr "Ďîäĺë˙íĺ íŕ ôŕéëîâĺ"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Ńčńňĺěŕ"
@@ -8967,6 +9194,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Ęîíňđîëĺí öĺíňúđ"
@@ -9070,6 +9298,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Ěîë˙ čçëĺçňĺ îň ńĺńč˙ňŕ č čçďîëçâŕéňĺ Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Ěîë˙ âëĺçňĺ îňíîâî â %s, çŕ äŕ ŕęňčâčđŕňĺ ďđîěĺíčňĺ"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9078,6 +9315,161 @@ msgstr ""
"Íĺ ěîăŕ äŕ đŕç÷ĺňŕ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ, ďđĺęŕëĺíî ĺ ďîâđĺäĺíŕ :(\n"
"Ůĺ ńĺ îďčňŕě äŕ ďđîäúëćŕ äŕ đŕç÷čńňâŕě ëîřčňĺ ä˙ëîâĺ"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Ďđĺíîń íŕ íŕńňđîéęŕ íŕ ďđčíňĺđ"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Ńúđâúđ Áŕçč-äŕííč"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Ńúđâúđ Áŕçč-äŕííč"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS ńúđâúđ"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS ńúđâúđ"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Äîáŕâč ďîňđĺáčňĺë"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP ęëčĺíň"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Ďîěîů"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Íĺ ńâúđçŕí"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Čçňđčé"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Čçáĺđĺňĺ ôŕéë"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Äîáŕâč ďîňđĺáčňĺë"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP ęëčĺíň"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Íŕńňđîéęŕ ..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ďđĺíŕńňđîéęŕ"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Ńëîćĺňĺ ńňŕđňčđŕůŕňŕ äčńęĺňŕ â óńňđîéńňâî %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Í˙ěŕ ôëîďč óńňđîéńňâî"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Ăđĺřęŕ !"
@@ -9118,6 +9510,11 @@ msgstr ""
"Ěîë˙, čçáĺđĺňĺ çŕ âń˙ęŕ ńňúďęŕ, äŕëč ůĺ ńĺ ďđĺčăđŕĺ ęŕňî ďđč číńňŕëŕöč˙ňŕ, "
"čëč ůĺ áúäĺ đú÷íŕ"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Ďîäăîňâ˙ě äčńęĺňŕ ń ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9126,12 +9523,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Ďîçäđŕâëĺíč˙ !"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9139,36 +9536,29 @@ msgstr ""
"Äčńęĺňŕňŕ ĺ óńďĺříî ńúçäŕäĺíŕ.\n"
"Ńĺăŕ ěîćĺňĺ äŕ ďđĺčăđŕĺňĺ číńňŕëŕöč˙ňŕ."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Číńňŕëčđŕé"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Äîáŕâ˙íĺ íŕ ďîňđĺáčňĺë"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Äŕ ďđĺěŕőíŕ ëč loopback ôŕéëŕ ?"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9176,15 +9566,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9192,710 +9574,773 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Ăđĺřęŕ ďđč ÷ĺňĺíĺňî íŕ ôŕéëŕ %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Čçáîđ íŕ ďŕęĺňč"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Čçňđčâŕíĺ íŕ îďŕřęŕňŕ"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Ďđĺěŕőíč Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "îůĺ âĺäíúć ďŕđîëŕ"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN âđúçęŕ"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě ďđčíňĺđŕ"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Ěđĺćîâ číňĺđôĺéń"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Âčä"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Čńęŕňĺ ëč îďňčěčçŕöč˙ íŕ äčńęîâĺňĺ ?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Čńęŕňĺ ëč îďňčěčçŕöč˙ íŕ äčńęîâĺňĺ ?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Ĺäčí ěîěĺíň"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Îďöčč íŕ ěîäóëŕ:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Ôŕéëîâč ńčńňĺěč"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Óńňđîéńňâî íŕ ěčřęŕňŕ: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îďöčč"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN âđúçęŕ"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě ďđčíňĺđŕ"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Âúçńňŕíîâč îň äčńęĺňŕ"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Äđóăŕ"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Ęëčĺíňńęŕ"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Ďîěîů"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Ďđĺäčřĺí"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Ńúńňî˙íčĺ"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Ňĺęńň"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Ďŕęĺňč çŕ číńňŕëčđŕíĺ"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň číńňŕëčđŕíč"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Çŕďŕçč âúâ ôŕéë"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Ôŕéëîâč ńčńňĺěč"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9927,7 +10372,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9936,7 +10381,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9977,7 +10422,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10005,12 +10450,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -10027,7 +10477,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10067,7 +10517,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10078,7 +10528,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10091,7 +10541,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10135,105 +10585,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Číńňŕëŕöč˙ňŕ íŕ %s ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Ęîíçîëíč číńňđóěĺíňč"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Ęîíňđîëĺí öĺíňúđ"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "çŕäúëćčňĺëĺí"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ěčřęŕ"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Îáůî čěĺ"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Ďđčíňĺđ"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Ěŕăüîńíčę çŕ íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Čäĺíňčôčęŕöč˙"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Čçáîđ íŕ ďŕęĺňč"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Ěîë˙ čç÷ŕęŕéňĺ"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Čçőîä îň číńňŕëŕöčîííŕňŕ ďđîăđŕěŕ"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "ďîđň"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ äđóăč ĺçčöč, ęîčňî ůĺ áúäŕň íŕëčöĺ ńëĺäčíńňŕëŕöč˙ňŕ"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ (%d ŕäŕďňĺđŕ)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Ďđîôčë: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Čçňđîé ďđîôčë ..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Ďđîôčë çŕ čçňđčâŕíĺ:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Íîâ ďđîôčë ..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Čěĺ íŕ ńúçäŕâŕíč˙ ďđîôčë (íîâč˙ň ďđîôčë ńĺ ńúçäŕâŕ ęŕňî ęîďčĺ íŕ ňĺęóůč˙):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Čěĺ íŕ őîńň:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Číňĺđíĺň äîńňúď"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Ňčď: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Číňĺđôĺéń:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Ńúńňî˙íčĺ:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň äîńňúďŕ ..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Íŕńňđîéęŕ íŕ LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Äđŕéâĺđ"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Číňĺđôĺéń"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Ďđîňîęîë"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Ńúńňî˙íčĺ"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ ..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Öúęíĺňĺ ňóę, çŕ äŕ ńňŕđňčđŕňĺ ěŕăüîńíčęŕ ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Ěŕăüîńíčę..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Ďđčëîćč"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Ěîë˙, ďî÷ŕęŕéňĺ ... Ďđčëŕăŕíĺ íŕ íŕńňđîéęčňĺ"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Ńâúđçŕí"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Íĺ ńâúđçŕí"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Ńâúđçâŕíĺ ..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Îňâúđçâŕíĺ ..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Í˙ěŕňĺ íŕńňđîĺí číňĺđôĺéń.\n"
+"Íŕńňđîéňĺ ăč ďđĺäč ňîâŕ, ęŕňî öúęíĺňĺ íŕ 'Íŕńňđîéęŕ'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Ŕäŕďňĺđ %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Ńňŕđňčđŕů ďđîňîęîë"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Ďóńíŕň ďđč ńňŕđňčđŕíĺ"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP ęëčĺíň"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "ŕęňčâčđŕé ńĺăŕ"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "äĺŕęňčâčđŕé ńĺăŕ"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Í˙ěŕňĺ Internet âđúçęŕ.\n"
+"Ńúçäŕéňĺ ňŕęŕâŕ, ęŕňî öúęíĺňĺ íŕ 'Íŕńňđîé'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Ňčď íŕ âđúçęŕňŕ: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Ďŕđŕěĺňđč"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet ęŕđňŕ"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP ęëčĺíň"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "čçďîëçâŕíĺ: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Čěĺ íŕ ěîäóë"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Ăîëĺěčíŕ"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "ńúäŕâŕíĺ íŕ ńňŕđňčđŕůŕ äčńęĺňŕ"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "ďî ďîäđŕáčđŕíĺ"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Ăđĺřęŕ DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "âĺđńč˙ íŕ ˙äđîňî"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Îńíîâíî"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Äîďúëíčňĺëíč"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd äîďúëíčňĺëíč ŕđăóěĺíňč"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Äîáŕâč ěîäóëŕ"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "ďđčíóäčňĺëíî"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ŕęî ĺ íóćíî"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "áĺç scsi ěîäóëč"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "áĺç raid ěîäóëč"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Ďđĺěŕőíč ěîäóëŕ"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Đĺçóëňŕň"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Ńúçäŕé äčńęúň"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Ďđîâĺđĺňĺ čěŕňĺ ëč äčńęĺňŕ â óńňđîéńňâîňî %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Í˙ěŕ äčńęĺňŕ â óńňîéńňâîňî %s.\n"
+"Ěîë˙ ďîńňŕâĺňĺ äčńęĺňŕ."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Íĺ ěîćĺ äŕ ńĺ đŕáîňč ń: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Íĺěîćĺ äŕ ńĺ çŕňâîđč ďđŕâčëíî mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s íĺ ĺ íŕěĺđĺíî"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Ăîňîâî"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Ôîđěŕňčđŕé äčńęĺňŕňŕ"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ďîäăîňâ˙ě číńňŕëŕöč˙ňŕ"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "ńňŕđňčđŕé ăî"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "îăđŕíč÷č"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10242,123 +11118,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëîâĺ"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Äĺčíńňŕëčđŕě ďŕęĺňŕ"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Čçáĺđĺňĺ ä˙ëîâĺňĺ, ęîčňî čńęŕňĺ äŕ ôîđěŕňčđŕňĺ"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Îôčń"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Îňęŕç"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Ďđčíňĺđ"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Čçáĺđĺňĺ ôŕéë"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Ďđĺěŕőâŕíĺ íŕ ďđčíňĺđŕ"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Ńňŕđňîâî ńúîáůĺíčĺ"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Í˙ěŕňĺ ěđĺćîâ ŕäŕďňĺđ!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Číńňŕëčđŕé"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Í˙ěŕňĺ ěđĺćîâ ŕäŕďňĺđ!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Čçőîä îň číńňŕëŕöčîííŕňŕ ďđîăđŕěŕ"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Ńďîäĺë˙íĺ íŕ âđúçęŕňŕ ń Číňĺđíĺň"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Ńďîäĺë˙íĺňî íŕ âđúçęŕňŕ ęúě Číňĺđíĺň ĺ âĺ÷ĺ ŕęňčâčđŕíî"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10370,31 +11245,31 @@ msgstr ""
"\n"
"Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ ?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "čçęëţ÷č"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "îńňŕâč"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ďđĺíŕńňđîéęŕ"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Čçęëţ÷âŕíĺ íŕ ńúđâúđč ..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ â ěîěĺíňŕ ĺ čçęëţ÷ĺíî."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ ĺ čçęëţ÷ĺíî."
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10406,19 +11281,19 @@ msgstr ""
"\n"
"Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ ?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "âęëţ÷č"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Âęëţ÷âŕíĺ íŕ ńúđâúđč ..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň â ěîěĺíňŕ ĺ âęëţ÷ĺíî."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10434,21 +11309,21 @@ msgstr ""
"Îňáĺëĺćĺňĺ: ňđ˙áâŕ âč îňäĺëĺí çŕ ňîâŕ ěđĺćîâ ŕäŕďňĺđ, çŕ äŕ óńňŕíîâčňĺ "
"âúňđĺříŕňŕ ńč ěđĺćŕ (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Číňĺđôĺéń %s (čçďîëçâŕů ěîäóë %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Číňĺđôĺéń %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Í˙ěŕňĺ ěđĺćîâ ŕäŕďňĺđ!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10456,11 +11331,11 @@ msgstr ""
"Â ńčńňĺěŕňŕ íĺ ĺ îňęđčň ethernet ěđĺćîâ ŕäŕďňĺđ. Ěîë˙, ńňŕđňčđŕéňĺ "
"číńňđóěĺíňŕ çŕ íŕńňđîéęŕ íŕ őŕđäóĺđ."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Ěđĺćîâ číňĺđôĺéń"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10475,19 +11350,19 @@ msgstr ""
"\n"
"Ńě˙ňŕě äŕ óńňŕíîâ˙ ëîęŕëíŕňŕ âč ěđĺćŕ íŕ ňîçč ŕäŕďňĺđ."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Ěîë˙ čçáĺđĺňĺ ęîé ěđĺćîâ ŕäŕďňĺđ äŕ áúäĺ âęëţ÷ĺí ęúě ëîęŕëíŕňŕ âč ěđĺćŕ."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Ôóíęöčîíŕëíîńňňŕ íŕ ěđĺćŕňŕ íĺ ĺ íŕńňđîĺíŕ"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10497,17 +11372,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Ŕâňîěŕňč÷íŕ íŕńňđîéęŕ íŕ CUPS"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Ďîďđŕâč íŕńňđîéęčňĺ íŕ ďđčíňĺđ"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10518,7 +11393,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10530,33 +11405,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP íŕ CUPS ńúđâúđŕ"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Âúçěîćĺí ęîíôčęň ń ŕäđĺńčňĺ â LAN ń íŕńňđîéęŕňŕ íŕ %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Îňęđčňŕ ĺ íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ !"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10564,21 +11439,21 @@ msgstr ""
"Âíčěŕíčĺ ! Îňęđčňŕ ĺ íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ. Ěîćĺ äŕ ńĺ íŕëîćč í˙ęŕęâŕ "
"đú÷íŕ ďîďđŕâęŕ ńëĺä číńňŕëŕöč˙ňŕ."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Íŕńňđîéęŕ ..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Íŕńňđîéâŕůč ńęđčďňîâĺ, číńňŕëčđŕíĺ íŕ ńîôňóĺđ, ńňŕđňčđŕíĺ íŕ ńúđâúđč..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Ďđîáëĺěč ń číńňŕëčđŕíĺňî íŕ ďŕęĺňŕ %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10588,23 +11463,23 @@ msgstr ""
"Ńĺăŕ ěîćĺňĺ äŕ ńďîäĺëčňĺ Číňĺđíĺň âđúçęŕňŕ ńč ń äđóăč ęîěďţňđč â ëîęŕëíŕňŕ "
"âč ěđĺćŕ čçďîëçâŕéęč ŕâňîěŕňč÷íŕ ěđĺćîâŕ íŕńňđîéęŕ (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Óńňŕíîâęŕňŕ âĺ÷ĺ ĺ íŕďđŕâĺíŕ, íî â ěîěĺíňŕ ĺ čçęëţ÷ĺíŕ."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Óńňŕíîâęŕňŕ âĺ÷ĺ ĺ íŕďđŕâĺíŕ č â ěîěĺíňŕ ĺ âęëţ÷ĺíŕ."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Í˙ěŕ íŕńňđîéâŕíî ńďîäĺë˙íĺ íŕ Číňĺđíĺň âđúçęŕňŕ."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Íŕńňđîéęŕ íŕ ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10619,211 +11494,6 @@ msgstr ""
"\n"
"Öúęíĺňĺ ``Íŕńňđîé'', ŕęî čńęŕňĺ äŕ ńňŕđňčđŕíĺ óńňŕíîâ˙âŕůč˙ ěŕăüîńíčę."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ (%d ŕäŕďňĺđŕ)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Ďđîôčë: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Čçňđîé ďđîôčë ..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Ďđîôčë çŕ čçňđčâŕíĺ:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Íîâ ďđîôčë ..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Čěĺ íŕ ńúçäŕâŕíč˙ ďđîôčë (íîâč˙ň ďđîôčë ńĺ ńúçäŕâŕ ęŕňî ęîďčĺ íŕ ňĺęóůč˙):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Čěĺ íŕ őîńň:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Číňĺđíĺň äîńňúď"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Ňčď: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Číňĺđôĺéń:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Ńúńňî˙íčĺ:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň äîńňúďŕ ..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Íŕńňđîéęŕ íŕ LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Äđŕéâĺđ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Číňĺđôĺéń"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Ďđîňîęîë"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Ńúńňî˙íčĺ"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Öúęíĺňĺ ňóę, çŕ äŕ ńňŕđňčđŕňĺ ěŕăüîńíčęŕ ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Ěŕăüîńíčę..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Ďđčëîćč"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Ěîë˙, ďî÷ŕęŕéňĺ ... Ďđčëŕăŕíĺ íŕ íŕńňđîéęčňĺ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Ńâúđçŕí"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Íĺ ńâúđçŕí"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Ńâúđçâŕíĺ ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Îňâúđçâŕíĺ ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Í˙ěŕňĺ íŕńňđîĺí číňĺđôĺéń.\n"
-"Íŕńňđîéňĺ ăč ďđĺäč ňîâŕ, ęŕňî öúęíĺňĺ íŕ 'Íŕńňđîéęŕ'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Ŕäŕďňĺđ %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Ńňŕđňčđŕů ďđîňîęîë"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Ďóńíŕň ďđč ńňŕđňčđŕíĺ"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP ęëčĺíň"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "ŕęňčâčđŕé ńĺăŕ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "äĺŕęňčâčđŕé ńĺăŕ"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Í˙ěŕňĺ Internet âđúçęŕ.\n"
-"Ńúçäŕéňĺ ňŕęŕâŕ, ęŕňî öúęíĺňĺ íŕ 'Íŕńňđîé'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Ňčď íŕ âđúçęŕňŕ: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Ďŕđŕěĺňđč"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet ęŕđňŕ"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP ęëčĺíň"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Ęîíňđîëĺí öĺíňúđ"
@@ -10832,94 +11502,130 @@ msgstr "Ęîíňđîëĺí öĺíňúđ"
msgid "Choose the tool you want to use"
msgstr "Čçáĺđĺňĺ číńňđóěĺíňŕ, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Ęŕíŕäńęŕ (Ęâĺáĺę)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Ĺâđîďŕ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ôđŕíöč˙"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Čńëŕíäńęŕ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Ĺâđîďŕ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "ńĺđčéíŕ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ ďŕęĺňčňĺ:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10965,7 +11671,7 @@ msgstr "Íĺ ěîăŕ äŕ ďóńíŕ îáíîâ˙âŕíĺňî !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "ëîăäđĺéę"
@@ -10979,7 +11685,7 @@ msgstr "/Ôŕéë/_Íîâ"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<ęîíňđîë>N"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10987,7 +11693,7 @@ msgstr "/Ôŕéë/_Îňâîđč"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<ęîíňđîë>O"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10995,11 +11701,11 @@ msgstr "/Ôŕéë/_Çŕďčń"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<ęîíňđîë>S"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Ôŕéë/Çŕďčřč _Ęŕňî"
+msgstr "/Ôŕéë/Çŕďčń _ęŕňî"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11013,13 +11719,9 @@ msgstr "/_Îďöčč"
msgid "/Options/Test"
msgstr "/Îďöčč/Ňĺńň"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ďîěîů"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Ďîěîů/_Çŕ..."
+msgstr "/Ďîěîů/_Îňíîńíî..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11080,7 +11782,7 @@ msgstr "Ęŕëĺíäŕđ"
msgid "Content of the file"
msgstr "Ńúäúđćŕíčĺ íŕ ôŕéëŕ"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -11089,12 +11791,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "ěîë˙ čç÷ŕęŕéňĺ, ďđŕâ˙ đŕçáîđ íŕ ôŕéë: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Íŕńňđîéęŕ íŕ LILO/Grub"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -11106,69 +11808,98 @@ msgstr ""
"Ňóę ůĺ ěîćĺňĺ äŕ óńňŕíîâčňĺ âŕřčňĺ HTTP č FTP proxy\n"
"ńúń čëč áĺç ďîňđĺáčňĺëńęî čěĺ č ďŕđîëŕ\n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache č Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Čěĺ íŕ äîěĺéíŕ"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Čçëĺç"
+msgid "Ftp Server"
+msgstr "NIS ńúđâúđ"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix ďîůĺíńęč ńúđâúđ, Inn íîâčíŕđńęč ńúđâúđ"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS ńúđâúđ"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS ńúđâúđ"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Óńëóăč"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Ńúđâúđ íŕ ďđčíňĺđŕ"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "číňĺđĺńĺí"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Ôîđěŕňčđŕíĺ"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Íŕńňđîéęŕ íŕ öâĺňîâĺ"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Çŕďŕçč ęŕňî..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "íĺ ĺ íŕěĺđĺí serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Äŕ ńčěóëčđŕě ëč ňđĺňč áóňîí ?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "×ĺňĺíĺ íŕ äŕííč îň ďđčíňĺđŕ ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Çŕńč÷ŕíĺ íŕ óńňđîéńňâŕ ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11212,6 +11943,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ"
@@ -11615,10 +12358,6 @@ msgid "Multimedia - Sound"
msgstr "Ěóňčěĺäč˙ - Çâóę"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Číńňđóěĺíňč"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Äîęóěĺíňŕöč˙"
@@ -11723,10 +12462,6 @@ msgstr ""
"tin..) č çŕ îáčęŕë˙íĺ čç Ěđĺćŕňŕ"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Ŕđőčâčđŕřč, ĺěóëŕöč˙, íŕáëţäĺíčĺ"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Ëč÷íč ôčíŕíńč"
@@ -11773,2126 +12508,218 @@ msgstr "Ěóëňčěĺäč˙ - îďč÷ŕíĺ íŕ CD"
msgid "Scientific Workstation"
msgstr "Íŕó÷íŕ đŕáîňíŕ ńňŕíöč˙"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Îňęŕç"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "Íĺ ěîăŕ äŕ îńúůĺńňâ˙ äîńňúď äî ěîäóëčňĺ íŕ ˙äđîňî ńúîňâĺňńâŕůč íŕ ˙äđîňî "
-#~ "âč (ôŕéëúň %s ëčďńâŕ)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Íčęŕęúâ"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "Čçáĺđĺňĺ ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck čçëĺçĺ ń čçőîäĺí ęîä %d čëč ńčăíŕë %d"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Ďđčëŕăŕíĺ/Ďđĺďđî÷čň íŕ ďđčíňĺđčňĺ"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Čäĺíňčôčęŕöč˙ íŕ ăđŕôč÷íŕňŕ ęŕđňŕ: %s\n"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ńĺăŕ ěîćĺňĺ äŕ ďîäŕäĺňĺ îďöččňĺ ěó ęúě ěîäóëŕ %s."
+#~ msgid "Choose options for server"
+#~ msgstr "Čçáĺđĺňĺ îďöčč çŕ ńúđâúđŕ"
-#~ msgid "mount failed"
-#~ msgstr "ěîíňčđŕíĺňî íĺ óńď˙"
+#~ msgid "Monitor not configured"
+#~ msgstr "Ěîíčňîđúň íĺ ĺ íŕńňđîĺí"
-#~ msgid "Low"
-#~ msgstr "Ńëŕáî"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ăđŕôč÷íŕňŕ ęŕđňŕ âńĺ îůĺ íĺ ĺ íŕńňđîĺíŕ"
-#~ msgid "Medium"
-#~ msgstr "Ńđĺäĺíî"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Îůĺ íĺ ĺ čçáđŕíŕ đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Í˙ęîč ďîäîáđĺíč˙ çŕ ňîâŕ íčâî íŕ ńčăóđíîńň. Ăëŕâíîňî ĺ, ÷ĺ čěŕ ďîâĺ÷ĺ\n"
-#~ "ďđĺäóďđĺćäĺíč˙ č ďđîâĺđęč çŕ ńčăóđíîńň."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Ěóëňčěĺäč˙"
-
-#~ msgid "Boot mode"
-#~ msgstr "Đĺćčě íŕ ńňŕđňčđŕíĺ"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ĺęńďĺđňíŕ"
-
-#, fuzzy
-#~ msgid ""
-#~ "To know about the options available for the current printer read either "
-#~ "the list shown below or click on the \"Print option list\" button. %s\n"
#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Çŕ äŕ âčäčňĺ ńďčńúę íŕ äîńňúďíčňĺ îďöčč çŕ ňĺęóůč˙ ďđčíňĺđ, čëč ďđî÷ĺňĺňĺ "
-#~ "ńďčńúęŕ ďîęŕçŕí ďî-äîëó čëč öúęíĺňĺ íŕ áóňîíŕ \"Ńďčńúę ń îďöčč çŕ ďĺ÷ŕň"
-#~ "\".\n"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux đŕáîňč ń âđĺěĺ ďî GMT (Âđĺěĺ ďî Ăđčíóč÷)\n"
-#~ "č ăî ďđĺâĺćäŕ â ëîęŕëíî âđĺěĺ â çŕâčńčěîńň îň çîíŕňŕ, ęî˙ňî ńňĺ čçáđŕëč."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Îňâúđćč ńĺ îň Číňĺđíĺň"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Íŕńňđîéęŕ íŕ ěđĺćîâŕňŕ âđúçęŕ (LAN čëč Číňĺđíĺň)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Íŕ ęîé äčńę čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ ?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Číôîđěŕöč˙"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome đŕáîňíŕ ńňŕíöč˙"
-
-#~ msgid "authentification"
-#~ msgstr "óäîńňîâĺđ˙âŕíĺ"
-
-#~ msgid "user"
-#~ msgstr "ďîňđĺáčňĺë"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache ĺ World Wide Web (WWW) ńúđâúđ. Ňîé ńëóćč äŕ îáđŕáîňâŕ íŕ HTML "
-#~ "ôŕéëîâĺ\n"
-#~ "č CGI."
-
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) ĺ Domain Name Server (DNS), ęîéňî ńĺ čçďîëçâŕ äŕ ďđĺâúđíĺ\n"
-#~ "čěĺňî íŕ őîńňŕ äî IP ŕäđĺń."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
+#~ "îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Ňúđńĺíĺ íŕ äîńňúďíč NFS ńďîäĺëĺíč đĺńóđńč"
+#~ msgid "An error occurred:"
+#~ msgstr "Ďî˙âč ńĺ ăđĺřęŕ:"
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Ňúđńĺíĺ çŕ äîńňúďíč NFS đĺńóđńč íŕ ńúđâúđ %s"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Čçőîä äî %d ńĺęóíäč"
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Ńęŕíčđŕíĺ íŕ äîńňúďíčňĺ SAMBA ďîäĺëĺíč đĺńóđńč"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Âĺđíč ëč ńŕ íŕńňđîéęčňĺ ?"
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Ńęŕíčđŕíĺ íŕ äîńňúďíčňĺ SAMBA ďîäĺëĺíč đĺńóđńč íŕ ńúđâúđ %s"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ďî˙âč ńĺ ăđĺřęŕ, îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Čçőîä"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 ńúđâúđ: %s"
-#~ msgid "Removable media"
-#~ msgstr "Ńěĺí˙ĺě íîńčňĺë"
+#~ msgid "Show all"
+#~ msgstr "Ďîęŕćč âńč÷ęč"
-#~ msgid "Active"
-#~ msgstr "Ŕęňčâčđŕé"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Ďîäăîňîâęŕ çŕ íŕńňđîéâŕíĺ íŕ X-Window"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Íĺ"
+#~ msgid "What do you want to do?"
+#~ msgstr "Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ?"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Ďđčíňĺđ îň ěîäĺëŕ \"%s\", ĺ íŕěĺđĺí íŕ "
+#~ msgid "Change Monitor"
+#~ msgstr "Ďđîěĺíĺňĺ ěîíčňîđŕ"
-#~ msgid "Local Printer Device"
-#~ msgstr "Ëîęŕëíî ďĺ÷ŕňŕůî óńňđîéńňâî"
+#~ msgid "Change Graphics card"
+#~ msgstr "Ďđîěĺíĺňĺ ăđŕôč÷íŕňŕ ęŕđňŕ"
-#~ msgid "Printer Device"
-#~ msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî"
+#~ msgid "Change Server options"
+#~ msgstr "Ďđîěĺíĺňĺ îďöččňĺ íŕ ńúđâúđŕ"
-#~ msgid "Device/file name missing!"
-#~ msgstr "Ëčďńâŕ čěĺ íŕ óńňđîéńňâî/ôŕéë !"
+#~ msgid "Change Resolution"
+#~ msgstr "Ďđîěĺíĺňĺ đŕçäĺëčňĺëíŕňŕ ńďîńîáíîńň"
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Ďđčíňĺđ(č) íŕ îňäŕëĺ÷ĺí(č) CUPS ńúđâúđ(č)"
+#~ msgid "Show information"
+#~ msgstr "Ďîęŕćč číôîđěŕöč˙ňŕ"
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Ďđčíňĺđ(č) íŕ îňäŕëĺ÷ĺí(č) ńúđâúđ(č)"
+#~ msgid "Test again"
+#~ msgstr "Ňĺńňâŕé îňíîâî"
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
+#~ msgid "Setting security level"
+#~ msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Ńčńňĺěŕ"
+#~ msgid "Graphics card"
+#~ msgstr "Ăđŕôč÷íŕ ęŕđňŕ"
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Äđóăŕ"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Âčä: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Ëîř backup-ôŕéë"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Íŕńňđîéęŕ íŕ Ő"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî"
+#~ msgid "Select a graphics card"
+#~ msgstr "Čçáĺđĺňĺ ăđŕôč÷íŕ ęŕđňŕ"
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Îňě˙íŕ"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ok"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Çŕňâîđč"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Ńňŕđňčđŕíĺ íŕ âđúçęŕňŕ ...."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Çŕňâŕđ˙íĺ íŕ âđúçęŕňŕ âč ..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "Âđúçęŕňŕ íĺ ĺ çŕňâîđĺíŕ.\n"
-#~ "Îďčňŕéňĺ ńĺ äŕ ăî íŕďđŕâčňĺ đú÷íî, ęŕňî ńňŕđňčđŕňĺ\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "ęŕňî root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ńčńňĺěŕňŕ â ěîěĺíňŕ íĺ ĺ ńâúđçŕíŕ."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Čçáĺđĺňĺ ăîëĺěčíŕňŕ, ęî˙ňî čńęŕňĺ äŕ číńňŕëčđŕňĺ"
-
-#~ msgid "Total size: "
-#~ msgstr "Îáůŕ ăîëĺěčíŕ: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Ěîë˙, čç÷ŕęŕéňĺ, "
-
-#~ msgid "Total time "
-#~ msgstr "Îáůŕ ďđîäúëćčňĺëíîńň "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Äŕ čçďîëçâŕě ëč ńĺăŕříŕňŕ íŕńňđîéęŕ íŕ X11 ?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "Ęúäĺ ĺ ńâúđçŕí âŕřč˙ ďđčíňĺđ \n"
-#~ "(çŕáĺëĺćęŕ: /dev/lp0 ĺ ĺęâčâŕëĺíňíî íŕ LPT1) ?\n"
+#~ "Âíčěŕíčĺ: ňĺńňâŕíĺňî íŕ ňŕçč ăđŕôč÷íŕ ęŕđňŕ ěîćĺ äŕ \"çŕěđŕçč\" ęîěďţňúđŕ "
+#~ "âč"
-#~ msgid "%s"
-#~ msgstr "%s"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 íŕ 60 Hz"
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "Âíčěŕíčĺ, ěđĺćîâč˙ň ŕäŕďňĺđ âĺ÷ĺ ĺ íŕńňđîĺí. Ůĺ ăî ďđĺíŕńňđî˙."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 íŕ 56 Hz"
-#~ msgid "New"
-#~ msgstr "Íîâ"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-ńúâěĺńňčě, 1024x768 íŕ 87 Hz interlaced (í˙ěŕ 800x600)"
-#~ msgid "Remote"
-#~ msgstr "Îňäŕëĺ÷ĺí"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 íŕ 87 Hz interlaced, 800x600 íŕ 56 Hz"
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ "Ěîë˙, öúęíĺňĺ íŕ áóňîíŕ ďî-ăîđĺ\n"
-#~ "\n"
-#~ "Čëč čçďîëçâŕéňĺ \"Íîâ\""
-
-#~ msgid "Use \"New\""
-#~ msgstr "Čçďîëçâŕéňĺ \"Íîâ\""
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 íŕ 60 Hz, 640x480 íŕ 72 Hz"
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "Ŕęî ńďčńúęúň ďî-ăîđĺ íĺ ńúäúđćŕ čńęŕíč˙ ĺëĺěĺíň, âúâĺäĺňĺ ăî ňóę:"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 íŕ 60 Hz, 800x600 íŕ 72 Hz"
-#~ msgid "Shared resource"
-#~ msgstr "Ďîäĺëĺíč đĺńóđńč"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Âčńîęî÷ĺńňîňĺí SVGA, 1024x768 íŕ 70 Hz"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "..... (%s), áúäĺňĺ ďî-ňî÷ĺí\n"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 60 Hz"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 74 Hz"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ %s, âúâĺäĺňĺ 'none' çŕ íčęîé)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 76 Hz"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "íĺ ěîăŕ äŕ îňâîđ˙ /etc/sysconfig/autologin çŕ ÷ĺňĺíĺ: %s"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 70 Hz"
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Čńęŕňĺ ëč äŕ đĺńňŕđňčđŕě ěđĺćŕňŕ ?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Ńúăëŕńíč ëč ńňĺ ?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr ""
-#~ "Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî %s. Ńúăëŕńíč ëč ńňĺ ?"
-
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Îńâĺí ŕęî íĺ ńňĺ ńčăóđíč â îáđŕňíîňî, îáčęíîâĺíč˙ čçáîđ ĺ \"/dev/hda\"\n"
-#~ "(ďúđâč âîäĺůî IDE äčńę) čëč \"/dev/sda\" (ďúđâč SCSI äčńę)."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 76 Hz"
#~ msgid ""
-#~ "The following printers are configured.\n"
-#~ "You can add some more or modify the existing ones."
-#~ msgstr ""
-#~ "Ńëĺäíčňĺ ďđčíňĺđč ńŕ íŕńňđîĺíč.\n"
-#~ "Ěîćĺňĺ äîáŕâčňĺ îůĺ čëč äŕ ďđîěĺíčňĺ ńúůĺńňâóâŕůčňĺ."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Îáůŕňŕ ăîëĺěčíŕ íŕ ăđóďčňĺ, ęîčňî ńňĺ ěŕđęčđŕëč, ĺ îęîëî %d MB.\n"
#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
+#~ "Ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ ďî-ěŕëęî îň ňŕçč ăîëĺěčíŕ,\n"
+#~ "čçáĺđĺňĺ ďđîöĺíň ďŕęĺňč, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
#~ "\n"
-#~ "Ŕęî ďđîäúëćčňĺ, ůĺ ńďđŕ %s ńđĺäŕňŕ âč"
+#~ "Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
+#~ "ďđč 100%% ůĺ číńňŕëčđŕň âńč÷ęč ěŕđęčđŕíč ďŕęĺňč."
#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
+#~ "Čěŕňĺ ě˙ńňî íŕ äčńęŕ ńč ńŕěî çŕ %d%% îň ňĺçč ďŕęĺňč.\n"
#~ "\n"
-#~ "Âíčěŕíčĺ:\n"
-#~ "Ďđčëŕăŕéęč íŕ ďđîěĺíčĺ ďî âđĺěĺ íŕ đŕáîňŕ ěîćĺ äŕ ńúńčďĺ X ńđĺäŕňŕ âč."
-
-#~ msgid "%s is already in use"
-#~ msgstr "Ĺňčęĺňúň %s ńĺ čçďîëçâŕ âĺ÷ĺ"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(ěîćĺ äŕ ďđč÷číč çŕăóáŕ íŕ äŕííč)"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr "Ňđ˙áâŕ äŕ âúâĺäĺňĺ ęîěŕíäĺí đĺä !"
+#~ "Ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ ďî-ěŕëęî îň ňîâŕ,\n"
+#~ "čçáĺđĺňĺ ďđîöĺíň îň ďŕęĺňčňĺ, ęîčňî číńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
+#~ "Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
+#~ "ďđč %d%% ůĺ číńňŕëčđŕň âńč÷ęč čçáđŕíč ďŕęĺňč."
-#~ msgid "ADSL configuration"
-#~ msgstr "Íŕńňđîéęŕ íŕ ADSL"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Ůĺ čěŕňĺ âúçěîćíîńňňŕ äŕ čçáĺđĺňĺ ďî-ňî÷íî ďđč ńëĺäâŕůč˙ ĺňŕď."
-#~ msgid "Adapter"
-#~ msgstr "Ŕäŕďňĺđ"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Ďđîöĺíň ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-#~ msgid "Add location of packages"
-#~ msgstr "Äîáŕâč ě˙ńňî íŕ ďŕęĺňčňĺ"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Ńëĺä ôîđěŕňčđŕíĺ íŕ âńč÷ęč ä˙ëîâĺ,"
+#~ msgid "hide expert mode"
+#~ msgstr "áĺç đŕçřčđĺíč ôóíęčöčč"
-#~ msgid "Alcatel modem"
-#~ msgstr "Ěîäĺě Alcatel"
+#~ msgid "show expert mode"
+#~ msgstr "ńúń đŕçřčđĺíč ôóíęčöčč"
#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "Ńčăóđíč ëč ńňĺ, ÷ĺ ńňĺ ĺęńďĺđň ?\n"
-#~ "Ňóę ůĺ âč áúäŕň ďîçâîëĺíč ěîůíč, íî îďŕńíč íĺůŕ.\n"
-#~ "Ŕęî Âč áúäĺ çŕäŕäĺí âúďđîń: ``Use shadow file for passwords?'',\n"
-#~ "ůĺ ěîćĺňĺ ëč äŕ ăî đŕáĺđĺňĺ č îňăîâîđčňĺ?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Ŕâňîěŕňč÷íî číńňŕëčđŕíĺ îň ôëîďč"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Ŕâňîěŕňč÷íč çŕâčńčěîńňč"
-
-#~ msgid "Available packages"
-#~ msgstr "Íŕëč÷íč ďŕęĺňč"
+#~ "Ŕęî '%s' ĺ ďđĺíîńčěŕ ďĺđčôĺđč˙,\n"
+#~ " ďđîâĺđĺňĺ äŕëč íîńčňĺë˙ ĺ ďîńňŕâĺí"
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
#~ msgstr ""
-#~ "Âíčěŕíčĺ, ŕęî ĺ âęëţ÷ĺí numlock ěîćĺ äŕ äîâĺäĺ äî čçâĺćäŕíĺňî íŕ\n"
-#~ "÷čńëŕ âěĺńňî áóęâč (íŕďđčěĺđ: íŕňčńęŕéęč 'p' äŕâŕ '6')"
+#~ "ÂÍČĚŔÍČĹ! Ňŕęŕ ůĺ ôîđěŕňčđŕňĺ '%s'.\n"
+#~ "Âńč÷ęč äŕííč â íîńčňĺë˙ '%s' ůĺ áúäŕň čçňđčňč.\n"
+#~ "Ŕęî čńęŕňĺ äŕ ďđîäúëćčňĺ, íŕňčńíĺňĺ ÎĘ. "
-#~ msgid "Boot style configuration"
-#~ msgstr "Íŕńňđîéęŕ íŕ íŕ÷číŕ íŕ ńňŕđňčđŕíĺ"
+#~ msgid "unknown"
+#~ msgstr "íĺďîçíŕňî"
-#~ msgid "CUPS starting"
-#~ msgstr "Ńňŕđňčđŕíĺ íŕ CUPS"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Íĺ ěîćĺ äŕ čçďîëçâŕňĺ supermount ďđč âčńîęî íčâî íŕ ńčăóđíîńň"
+#~ msgid "Select a module or write his name:"
+#~ msgstr "Čçáĺđĺňĺ ěîäóë čëč íŕďčřĺňĺ čěĺňî ěó:"
#~ msgid "Category"
#~ msgstr "Ęŕňĺăîđč˙"
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "×ŕň (IRC čëč ěîěĺíňíč ńúîáůĺíč˙) ďđîăđŕěč ęŕňî xchat, licq, gaim č "
-#~ "číńňđóěĺíňč çŕ ňđŕíńôĺđ íŕ ôŕéëîâĺ"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Ďđîâĺđ˙âŕě çŕâčńčěîńňčňĺ"
-
-#~ msgid "Choice"
-#~ msgstr "Čçáîđ"
-
-#~ msgid "Choose"
-#~ msgstr "Čçáĺđč"
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Čçáĺđĺňĺ ĺçčęúň íŕ ęëŕâčŕňóđŕňŕ âč îň ńďčńúęŕ ďî-äîëó"
-
-#~ msgid "Collapse all"
-#~ msgstr "Čç÷čńňč âńč÷ęî"
-
-#~ msgid "Color depth options"
-#~ msgstr "Îďöčč çŕ äúëáî÷číŕ íŕ öâĺňŕ"
-
-#~ msgid "Command line"
-#~ msgstr "Ęîěŕíäĺí đĺä"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Číńňđóěĺíňč çŕ ęîěóíčęŕöč˙"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Ńúäúđćŕíčĺňî íŕ íŕńňđîéâŕůč˙ ôŕéë íĺ ěîćĺ äŕ áúäĺ đŕçáđŕíî."
-
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Íŕńňđîéęŕ íŕ Lilo/Grub"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Íŕńňđîéęŕ íŕ LILO/GRUB"
-
-#~ msgid "Configure local network"
-#~ msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕňŕ ěđĺćŕ"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕňŕ / Íŕńňđîéęŕ íŕ ëîęŕëíŕňŕ ěđĺćŕ"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Íŕńňđîéęŕ íŕ ÷ŕńîâŕ çîíŕ"
-
-#~ msgid "Configure..."
-#~ msgstr "Íŕńňđîé ..."
-
-#~ msgid "Confirm Password"
-#~ msgstr "Ďîňâúđćäĺíčĺ íŕ ďŕđîëŕňŕ"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Ńâúđçâŕíĺ ęúě Číňĺđíĺň "
-
-#~ msgid "Connection Time: "
-#~ msgstr "Âđĺěĺ íŕ âđúçęŕňŕ: "
-
-#~ msgid "Connection complete."
-#~ msgstr "Ńâđúçâŕíĺňî čçâúđřĺíî."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Ńâúđçâŕíĺňî íĺ óńď˙.\n"
-#~ "Ďđîâĺđĺňĺ íŕńňđîéęŕňŕ â Mandrake Control Center."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Timeout íŕ âđúçęŕňŕ (â ńĺę) [ áĺňŕ, íĺ ĺ âęŕđŕíî ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Íĺ ěîćŕő äŕ îďđĺäĺë˙ \"%s\" çŕ ďîëçâŕíĺ ďî ďîäđŕçáčđŕíĺ !"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Ńúçäŕâŕíĺ íŕ boot-äčńęĺňŕ"
-
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ "Ńúçäŕâŕíĺňî íŕ boot äčńęĺňŕ ĺ ńčëíî ďđĺďîđú÷čňĺëíî. Ŕęî íĺ\n"
-#~ "ěîćĺňĺ äŕ ńňŕđňčđŕňĺ ęîěďţňúđŕ ńč, ňîâŕ ĺ ĺäčíńňâĺíč˙ íŕ÷čí äŕ\n"
-#~ "ńďŕńčňĺ ńčńňĺěŕňŕ áĺç ďđĺčíńňŕëŕöč˙."
-
-#~ msgid "Customized"
-#~ msgstr "Ńďĺöčŕëčçčđŕíŕ"
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "×ĺřęŕ (Ďđîăđŕěčńňč)"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Ńúđâúđ, DNS/DHCP "
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (čëč ADSL) âđúçęŕ"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Ęëčĺíňč č ńúđâúđ íŕ áŕçč äŕííč (MySQL č PostgreSQL)"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Runlevel ďî ďîäđŕçáčđŕíĺ"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Đŕçđŕáîňęŕ íŕ C/C++"
-
-#~ msgid "Development, Database"
-#~ msgstr "Đŕçđŕáîňęŕ, Áŕçč-äŕííč"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Đŕçđŕáîňęŕ, Číňĺăđčđŕíŕ ńđĺäŕ"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Đŕçđŕáîňęŕ, Ńňŕíäŕđňíč číńňđóěĺíňč"
-
-#~ msgid "Directory"
-#~ msgstr "Äčđĺęňîđč˙"
-
-#~ msgid "Disable"
-#~ msgstr "Čçęëţ÷č"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Čçęëţ÷âŕíĺ íŕ Číňĺđíĺň âđúçęŕ"
-
-#~ msgid "Disable network"
-#~ msgstr "Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Îňâúđçâŕíĺ îň Číňĺđíĺň "
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Îňâúđçâŕíĺňî îň Číňĺđíĺň čçâúđřĺíî."
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Îňâúđçâŕíĺňî îň Číňĺđíĺň íĺ óńď˙."
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Čńęŕňĺ ëč äŕ ńúçäŕě ŕâňîěŕňč÷íî číńňŕëčđŕůŕ äčńęĺňŕ çŕ Linux đĺďëčęŕöč˙?"
-
-#~ msgid "ECI modem"
-#~ msgstr "Ěîäĺě ECI"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Čçęŕđâŕíĺ ńňđŕíčöŕňŕ ńëĺä ďĺ÷ŕň ?"
-
-#~ msgid "Enable"
-#~ msgstr "Âęëţ÷č"
-
-#~ msgid "Enable network"
-#~ msgstr "Âęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Çŕäĺéńňâŕíĺ Num Lock-ŕ ďđč çŕđĺćäŕíĺ"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Âń˙ęŕ îďŕřęŕ çŕ ďĺ÷ŕň (ęúäĺňî ńĺ íŕńî÷âŕň đŕáîňčňĺ çŕ ďĺ÷ŕň) ńĺ íóćäŕĺ\n"
-#~ "îň čěĺ (îáčęíîâĺíî lp) č spool-äčđĺęňîđč˙ ńâúđçâŕíŕ ń íĺ˙. Ęîĺ\n"
-#~ "čěĺ íŕ äčđĺęňîđč˙ äŕ áúäĺ čçďîëçâŕíî çŕ ňŕçč îďŕřęŕ č ęŕę ńĺ ńâúđçŕí "
-#~ "ďđčíňĺđŕ ?"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Âńĺęč ďđčíňĺđ ńĺ íóćäŕĺ îň čěĺ (íŕďđčěĺđ, \"lp\").\n"
-#~ "Äđóăč ďŕđŕěĺňđč ęŕňî îďčńŕíčĺ íŕ ďđčíňĺđŕ čëč ěĺńňîďîëîćĺíčĺňî ěó ěîăŕň "
-#~ "äŕ\n"
-#~ "áúäŕň îďđĺäĺëĺíč. Ęŕęâî čěĺ äŕ áúäĺ čçďîëçâŕíî çŕ ňîçč ďđčíňĺđ č\n"
-#~ "ęŕę ĺ ńâúđçŕí ňîé ?"
-
-#~ msgid "Expand all"
-#~ msgstr "Đŕçřčđč âńč÷ęî"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Äîďúëíčňĺëíč GhostScript îďöčč"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Äîďúëíčňĺëíč îďöčč çŕ ňĺęńň"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Ńúđâúđ, Ôŕéëîâ/Ďđčíňĺđĺí/Samba"
-
-#~ msgid "Find Package"
-#~ msgstr "Íŕěĺđč ďŕęĺň"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Íŕěĺđč ďŕęĺň ńúäúđćŕů ôŕéë"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Íŕěčđŕíĺ íŕ ëčńňŕňŕ"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Íŕěčđŕíĺňî íŕ ëčńňŕ îňíĺěŕ ěŕëęî âđĺěĺ"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Ďúđâč DNS ńúđâúđ"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Ďîďđŕâęŕ íŕ stair-stepping ňĺęńň ?"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Çŕ FTP č HTTP, ůĺ ňđ˙áâŕ äŕ äŕäĺňĺ ě˙ńňî çŕ hdlist\n"
-#~ "Ňî ňđ˙áâŕ äŕ ďđčëč÷ŕ íŕ URL-ňî îňăîđĺ"
-
-#~ msgid "Format all"
-#~ msgstr "Ôîđěŕňčđŕé âńč÷ęî"
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux ěîćĺ äŕ ďîääúđćŕ í˙ęîëęî ňčďŕ ďđčíňĺđč. Âńĺęč îň ňĺçč ňčďîâĺ\n"
-#~ "čçčńęâŕ đŕçëč÷íŕ óńňŕíîâęŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî ďđčíňĺđúň ĺ ôčçč÷ĺńęč ńâúđçŕí ęúě ęîěďţňúđŕ âč, čçáĺđĺňĺ \"Ëîęŕëĺí\n"
-#~ "ďđčíňĺđ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ îňäŕëĺ÷ĺíŕ Unix ěŕřčíŕ, "
-#~ "čçáĺđĺňĺ\n"
-#~ "\"Îňäŕëĺ÷ĺí ďđčíňĺđ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ îňäŕëĺ÷ĺíŕ Microsoft Windows "
-#~ "ěŕřčíŕ\n"
-#~ "(čëč íŕ Unix ěŕřčíŕ čçďîëçâŕůŕ SMB ďđîňîęîë), čçáĺđĺňĺ \"SMB/Windows "
-#~ "95/98/NT\"."
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Äŕéňĺ čěĺ (íŕďđ.: `extra', `commercial')"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ďđĺěŕőâŕíĺ íŕ çŕďčńŕ %s"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Îáđŕáîňęŕ íŕ ăđŕôčęŕ"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Ęŕę čńęŕňĺ äŕ ńĺ ńâúđćĺňĺ ęúě Číňĺđíĺň ?"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Íŕěĺđĺő ISDN ęŕđňŕ:\n"
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Ŕęî íĺůî íĺ ĺ íŕđĺä ń íŕńňđîéęŕňŕ íŕ X, čçďîëçâŕéňĺ ňĺçč îďöčč çŕ\n"
-#~ "ďđŕâčëíŕ íŕńňđîéęŕ íŕ X Window ńčńňĺěŕňŕ."
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Ŕęî íĺ ńňĺ ńčăóđíč äŕëč číôîđěŕöč˙ňŕ ďî-ăîđĺ ĺ â˙đíŕ\n"
-#~ "čëč ŕęî íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, â˙đíŕ číôîđěŕöč˙\n"
-#~ "ěîćĺ äŕ áúäĺ âçĺňŕ îň Číňĺđíĺň äîńňŕâ÷čęŕ âč. Ŕęî íĺ âúâĺäĺňĺ číôîđěŕöč˙ "
-#~ "çŕ\n"
-#~ "DNS (name server), ň˙ ůĺ áúäĺ âçĺňŕ îň Číňĺđíĺň äîńňŕâ÷čęŕ âč ďî âđĺěĺ "
-#~ "íŕ\n"
-#~ "ńâúđçâŕíĺ."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Ŕęî čěŕňĺ âńč÷ęč CD-ňŕ îň ńďčńúęŕ ďî-ăîđĺ, íŕňčńíĺňĺ Ok. Ŕęî í˙ěŕňĺ\n"
-#~ "íčňî ĺäíî îň ňĺçč CD-ňŕ, íŕňčńíĺňĺ Îňě˙íŕ. Ŕęî âč ëčďńâŕň í˙ęîč CD-ňŕ, "
-#~ "čçęëţ÷ĺňĺ ăč,\n"
-#~ "č íŕňčńíĺňĺ Ok."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Ŕęî ďđĺäďî÷čňŕňĺ äŕ čçďîëçâŕňĺ ăđŕôč÷íî âëčçŕíĺ, čçáĺđĺňĺ \"Äŕ\". Â\n"
-#~ "ďđîňčâĺí ńëó÷ŕé, čçáĺđĺňĺ \"Íĺ\"."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Ŕęî ůĺ čçďîëçâŕňĺ proxy ńúđâúđč, ěîë˙, íŕńňđîéňĺ ăč ńĺăŕ. Ŕęî íĺçíŕĺňĺ,\n"
-#~ "ďîďčňŕéňĺ ěđĺćîâč˙ ŕäěčíčńňđŕňîđ čëč Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Ŕęî čńęŕňĺ äđóăč ĺçčöč (îńâĺí ňîçč, ęîéňî čçáđŕőňĺ ďđĺäč\n"
-#~ "íŕ÷ŕëîňî íŕ číńňŕëŕöč˙ňŕ), ęîčňî äŕ áúäŕň äîńňúďíč ńëĺä číńňŕëŕöč˙ňŕ, "
-#~ "ěîë˙, čçáĺđĺňĺ\n"
-#~ "ăč îň ńďčńúęŕ ďî-ăîđĺ. Ŕęî čńęŕňĺ äŕ ăč čçáĺđĺňĺ âńč÷ęč, ďđîńňî čçáĺđĺňĺ "
-#~ "\"Âńč÷ęč\"."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Ŕęî čńęŕňĺ äŕ ěîćĺňĺ äŕ ďĺ÷ŕňŕňĺ, ěîë˙, čçáĺđĺňĺ ńčńňĺěŕ çŕ ďĺ÷ŕň "
-#~ "čçěĺćäó\n"
-#~ "CUPS č LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS ĺ íîâŕ, ěîůíŕ č ăúâęŕâŕ ńčńňĺěŕ çŕ ďĺ÷ŕň çŕ Unix ńčńňĺěč (CUPS\n"
-#~ "ďđîčçëčçŕ îň \"Îáůŕ Unix Ďŕ÷ŕňíŕ Ńčńňĺěŕ\"). Ňîâŕ ĺ ńčńňĺěŕňŕ çŕ ďĺ÷ŕň ďî "
-#~ "ďîäđŕçáčđŕíĺ â\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR ĺ ńňŕđŕňŕ ńčńňĺěŕ çŕ ďĺ÷ŕň, čçďîëçâŕíŕ ďđĺäčříčňĺ Mandrake Linux "
-#~ "äčńňđčáóöčč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî í˙ěŕňĺ ďđčíňĺđ, öúęíĺňĺ \"Íčęŕęúâ\"."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Ŕęî čńęŕňĺ äŕ ńâúđćčňĺ ęîěďţňúđŕ ńč ęúě Číňĺđíĺň čëč ęúě\n"
-#~ "ëîęŕëíŕ ěđĺćŕ, ěîë˙, čçáĺđĺňĺ ďîäőîä˙ůŕňŕ îďöč˙. Ěîë˙, âęëţ÷ĺňĺ "
-#~ "óńňđîéńňâîňî\n"
-#~ "ďđĺäč äŕ čçáĺđĺňĺ ďîäőîä˙ůŕňŕ îďöč˙, çŕ äŕ ďîçâîëčňĺ íŕ DrakX äŕ ăî "
-#~ "çŕńĺ÷ĺ ŕâňîěŕňč÷íî.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî í˙ěŕňĺ íčęŕęâŕ âđúçęŕ ęúě Číňĺđíĺň čëč ęúě ëîęŕëíŕ ěđĺćŕ, čçáĺđĺňĺ\n"
-#~ "\"Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čńęŕňĺ äŕ íŕńňđîčňĺ ěđĺćŕňŕ ďî-ęúńíî, ńëĺä číńňŕëŕöč˙ňŕ, čëč ńňĺ "
-#~ "ďđčęëţ÷čëč ń íŕńňđîéęŕňŕ íŕ ěđĺćŕňŕ, čçáĺđĺňĺ \"Ăîňîâî\"."
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Ŕęî ADSL ěîäĺěúň âč ĺ Alcatel, čçáĺđĺňĺ Alcatel. Číŕ÷ĺ, čçáĺđĺňĺ ECI."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Ŕęî ěîäĺěúň âč ĺ âúířĺí, ěîćĺ, âęëţ÷ĺňĺ ăî ńĺăŕ, çŕ äŕ ďîçâîëčňĺ íŕ DrakX "
-#~ "äŕ ăî çŕńĺ÷ĺ ŕâňîěŕňč÷íî."
-
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
-#~ msgstr ""
-#~ "Ŕęî ěđĺćŕňŕ âč čçďîëçâŕ LDAP (čëč NIS) ďîđîňęîë çŕ ŕóňîđčçŕöč˙, čçáĺđĺňĺ\n"
-#~ "\"LDAP\" (čëč \"NIS\") çŕ ŕóňîđčçŕöč˙. Ŕęî íĺ çíŕĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ "
-#~ "ńč\n"
-#~ "ŕäěčíčńňđŕňîđ.\n"
-#~ "\n"
-#~ "Ŕęî ęîěďţňúđúň âč íĺ ĺ ńâúđçŕí ęúě ŕäěčíčńňđčđŕíŕ ěđĺćŕ, ěîćĺ áč ůĺ "
-#~ "čńęŕňĺ\n"
-#~ "äŕ čçáĺđĺňĺ \"Ëîęŕëíč ôŕéëîâĺ\" çŕ ŕóňîđčçŕöč˙."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Ŕęî ěđĺćŕňŕ âč čçďîëçâŕ NIS, čçáĺđĺňĺ \"Čçďîëçâŕé NIS\". Ŕęî íĺ çíŕĺňĺ,\n"
-#~ "ďîďčňŕéňĺ ěđĺćîâč˙ ŕäěčíčńňđŕňîđ."
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "Â ęî˙ ńňđŕíŕ ńĺ íŕěčđŕňĺ ?"
-
-#~ msgid "Installed packages"
-#~ msgstr "Číńňŕëčđŕíč ďŕęĺňč"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Číňĺđíĺň Číńňđóěĺíňč"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Číňĺđíĺň/Ěđĺćîâ äîńňúď"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Ăëŕâíčňĺ îďöčč íŕ LILO č GRUB ńŕ:\n"
-#~ " - Boot óńňđîéńňâî: Îďđĺäĺë˙ čěĺňî íŕ óńňđîéńňâîňî (ň.ĺ. ä˙ë îň őŕđä\n"
-#~ "äčńęŕ), ęîéňî ńúäúđćŕ boot ńĺęňîđŕ. Čçáĺđĺňĺ \"/dev/hda\", îńâĺí ŕęî íĺ\n"
-#~ "ńňĺ ńčăóđíč â äđóăî.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Čç÷ŕęâŕíĺ ďđĺäč ńňŕđňčđŕíĺ íŕ ďîäđŕçáčđŕůč˙ ńĺ îáđŕç: Îďđĺäĺë˙ "
-#~ "äĺńĺňčňĺ\n"
-#~ "îň ńĺęóíäŕňŕ, ęîčňî çŕđĺćäŕůŕ ďđîăđŕěŕ äŕ čç÷ŕęŕ ďđĺäč ďóńęŕíĺňî íŕ "
-#~ "ďúđâč˙\n"
-#~ "îáđŕç. Ďîëĺçíî ĺ çŕ ńčńňĺěč, ęîčňî ńňŕđňčđŕň îň äčńęŕ âĺäíŕăŕ ńëĺä "
-#~ "âęëţ÷âŕíĺ\n"
-#~ "íŕ ęëŕâčŕňóđŕňŕ. Çŕđĺćäŕůŕňŕ ďđîăđŕěŕ íĺ ÷ŕęŕ, ŕęî \"delay\" ĺ\n"
-#~ "ďđîďóńíŕň čëč ĺ íóëŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Âčäĺî đĺćčě: Ňîâŕ îďđĺäĺë˙ ňĺęńňîâč˙ VGA đĺćčě, ęîéňî äŕ áúäĺ čçáđŕí\n"
-#~ "ďđč íŕ÷ŕëíî çŕđĺćäŕíĺ. Âúçěîćíč ńŕ ńëĺäíčňĺ ńňîéíîńňč:\n"
-#~ " * normal: čçáčđŕ îáčęíîâĺí 80x25 ňĺęńňîâ đĺćčě.\n"
-#~ "\n"
-#~ " * <number>: čçďîëçâŕ ńúîňâĺňíč˙ ňĺęńňîâ đĺćčě.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ďî÷čńňâŕíĺ íŕ \"/tmp\" ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ čçňđčâŕň "
-#~ "âńč÷ęč\n"
-#~ "ôŕéëîâĺ č äčđĺęňîđčč ńúőđŕí˙âŕíč â \"/tmp\", ęîăŕňî çŕđĺćäŕňĺ ńčńňĺěŕňŕ "
-#~ "ńč,\n"
-#~ "čçáĺđĺňĺ ňŕçč îďöč˙.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ňî÷íî RAM, ŕęî ĺ íóćíî: çŕ ńúćŕëĺíčĺ, í˙ěŕ ńňŕíäŕđňĺí ěĺňîä, äŕ ńĺ\n"
-#~ "ďîďčňŕ BIOS çŕ îáĺěŕ íŕ RAM â ęîěďţňúđŕ. Ęŕňî ďîńëĺäńňâčĺ, GNU/Linux "
-#~ "ěîćĺ\n"
-#~ "äŕ íĺ óńďĺĺ äŕ çŕńĺ÷ĺ ďđŕâčëíî îáĺěŕ íŕ RAM. Ŕęî ĺ ňŕęúâ ńëó÷ŕ˙, ňóę\n"
-#~ "ěîćĺňĺ äŕ çŕäŕäĺňĺ ňî÷íč˙ îáĺě íŕ RAM. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ îň 2 čëč 4 MB\n"
-#~ "ěĺćäó çŕńĺ÷ĺíŕňŕ č ďđčńúńňâŕůŕňŕ RAM ĺ íîđěŕëíŕ."
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "Ëîęŕëíŕňŕ ěđĺćŕ âĺ÷ĺ ĺ íŕńňđîĺíŕ.\n"
-#~ "Čńęŕňĺ ëč äŕ:"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Äîďúëíčňĺëíč"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Äîďúëíčňĺëíč âúďđîńč"
-
-#~ msgid "Modify printer"
-#~ msgstr "Ďîďđŕâč ďđčíňĺđ"
-
-#~ msgid "Name of queue"
-#~ msgstr "Čěĺ íŕ îďŕřęŕ"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Čěĺ íŕ ńúçäŕâŕíč˙ ďđîôčë:"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Íŕáëţäŕâŕíĺ íŕ ěđĺćŕňŕ"
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Ěđĺćîâ ďđčíňĺđ 1 (eth0):"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Í˙ěŕ CDROM (í˙ěŕ íčůî â /mnt/cdrom)"
-
-#~ msgid "No match"
-#~ msgstr "Í˙ěŕ ńúâďŕäĺíč˙"
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Íĺ áĺřĺ îňęđčň ěîäĺě. Ěîë˙, ďîńî÷ĺňĺ ńĺđčéíč˙ ďîđň, ęúě ęîéňî ĺ ńâúđçŕí.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çŕ číôîđěŕöč˙, ďúđâč˙ň ńĺđčĺí ďîđň (íŕđč÷ŕí \"COM1\" ďîä Microsoft\n"
-#~ "Windows) ńĺ íŕđč÷ŕ \"ttyS0\" ďîä Linux."
-
-#~ msgid "No more match"
-#~ msgstr "Í˙ěŕ ďîâĺ÷ĺ ńúâďŕäĺíč˙"
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ńĺăŕ ĺ âđĺěĺ äŕ íŕńňđîčňĺ X Window System, ęî˙ňî ĺ ˙äđîňî íŕ \n"
-#~ "GNU/Linux GUI (Ăđŕôč÷ĺí Ďîđĺáčňĺëńęč Číňĺđôĺéń). Çŕ ňŕçč öĺë ňđ˙áâŕ äŕ\n"
-#~ "íŕńňđîčňĺ âčäĺîęŕđňŕňŕ č ěîíčňîđŕ ńč. Ďî-ăîë˙ěŕňŕ ÷ŕńň îň ńňúďęčňĺ ńŕ\n"
-#~ "ŕâňîěŕňčçčđŕíč, ňŕęŕ ÷ĺ đŕáîňŕňŕ âč ěîćĺ áč ůĺ ńĺ ńúńňîč ńŕěî îň "
-#~ "ďđîâĺđęŕ\n"
-#~ "ęŕęâî ĺ íŕďđŕâĺíî č ďđčĺěŕíĺňî íŕ íŕńňđîéęčňĺ :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęîăŕňî íŕńňđîéęŕňŕ çŕâúđřč, X ůĺ áúäĺ ńňŕđňčđŕí (îńâĺí ŕęî íĺ óęŕćĺňĺ íŕ\n"
-#~ "DrakX äŕ íĺ ăî ďđŕâč), çŕ äŕ ďđîâĺđčňĺ äŕëč íŕńňđîéęčňĺ âč óńňđîéâŕň. "
-#~ "Ŕęî\n"
-#~ "íĺ âč óńňđîéâŕň, ěîćĺňĺ äŕ ńĺ âđúůŕňĺ č äŕ ăč ďđîěĺí˙ňĺ, ęîëęîňî ďúňč âč\n"
-#~ "ĺ íĺîáőîäčěî."
-
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ "Ńĺăŕ, ńëĺä ęŕňî Číňĺđíĺň âđúçęŕňŕ âč ĺ íŕńňđîĺíŕ,\n"
-#~ "ęîěďţňúđúň âč ěîćĺ äŕ áúäĺ íŕńňđîĺí íŕ ńďîäĺë˙ Číňĺđíĺň âđúçęŕňŕ ńč.\n"
-#~ "Îňáĺëĺćĺňĺ: çŕ ňîâŕ âč ňđ˙áâŕ óńňŕíîâĺí îňäĺëĺí ěđĺćîâ ŕäŕďňĺđ, çŕ äŕ "
-#~ "óńňŕíîâčňĺ âúňđĺříŕňŕ ńč ěđĺćŕ (LAN).\n"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Áđîé ńňđŕíčöč çŕ čçőîäíč ńňđŕíčöč"
-
-#~ msgid "Opening your connection..."
-#~ msgstr "Îňâŕđ˙íĺ íŕ âđúçęŕňŕ âč ..."
-
-#~ msgid "Other countries"
-#~ msgstr "Äđóăč ńňđŕíč"
-
-#~ msgid "Package"
-#~ msgstr "Ďŕęĺňŕ"
-
-#~ msgid "Paper Size"
-#~ msgstr "Đŕçěĺđ íŕ őŕđňč˙ňŕ"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Čçáĺđĺňĺ ďđĺäďî÷čňŕí ĺçčę çŕ číńňŕëŕöč˙ č ńčńňĺěíî čçďîëçâŕíĺ."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Ěîë˙, čçáĺđĺňĺ ďîäőîä˙ůč çŕ ďđčíňĺđŕ âč íŕńňîéęč.\n"
-#~ "Ěîë˙, ďîăëĺäíĺňĺ äîęóěĺíňŕöč˙ňŕ, ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ ňóę.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ůĺ ěîćĺňĺ äŕ čçďđîáâŕňĺ íŕńňđîéęŕňŕ â ńëĺäâŕůŕňŕ ńňúďęŕ č äŕ ˙ ńěĺíčňĺ, "
-#~ "ŕęî íĺ đŕáîňč ęŕęňî ňđ˙áâŕ."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Ěîë˙, čçďđŕňĺňĺ ńëĺäíŕňŕ číôîđěŕöč˙"
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Ěîë˙, âęëţ÷ĺňĺ ěîäĺěŕ ńč č čçáĺđĺňĺ ďîäőîä˙ůč˙."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Ěîë˙, âęëţ÷ĺňĺ ďđčíňĺđŕ ńč ďđĺäč äŕ ďđîäúëćčňĺ, çŕ äŕ ďîçâîëčňĺ íŕ DrakX "
-#~ "äŕ\n"
-#~ "ăî çŕńĺ÷ĺ.\n"
-#~ "\n"
-#~ "Ňđ˙áâŕ äŕ âúâĺäĺňĺ í˙ęŕęâŕ číôîđěŕöč˙ ňóę.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Čěĺ íŕ ďđčíňĺđ: ďî ďîäđŕçáčđŕíĺ, ďĺ÷ŕňíč˙ spooler čçďîëçâŕ \"lp\" "
-#~ "ęŕňî čěĺ íŕ ďđčíňĺđ. Ňŕęŕ ÷ĺ ňđ˙áâŕ äŕ čěŕňĺ\n"
-#~ "ďđčíňĺđ íŕđĺ÷ĺí \"lp\".\n"
-#~ " Ŕęî čěŕňĺ ńŕěî ĺäčí ďđčíňĺđ, ěîćĺňĺ äŕ čçďîëçâŕňĺ í˙ęîëęî čěĺíŕ çŕ "
-#~ "íĺăî. Ňđ˙áâŕ ńŕěî äŕ ăč îňäĺëčňĺ ń pipe\n"
-#~ " ńčěâîëŕ (\"|\"). Ňŕęŕ ÷ĺ, ŕęî ďđĺäďî÷čňŕňĺ ďî-ńěčńëĺíî čěĺ, ěîćĺňĺ "
-#~ "äŕ ăî ńëîćčňĺ ďúđâî, íŕďđ. \"My printer|lp\".\n"
-#~ " Ďđčíňĺđúň ńúäúđćŕů \"lp\" â čěĺňî(ŕňŕ) ńč ůĺ ńĺ ďîëçâŕ ďî "
-#~ "ďîäđŕçáčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Îďčńŕíčĺ: Ňîâŕ ĺ íĺçŕäúëćčňĺëíî, íî ěîćĺ äŕ ĺ ďîëĺçíî, ŕęî čěŕ "
-#~ "í˙ęîëęî ďđčíňĺđŕ ńâúđçŕíč ęúě ęîěďţňúđŕ âč čëč ŕęî\n"
-#~ " đŕçđĺřŕâŕňĺ äîńňúď äî íĺăî íŕ äđóăč ęîěďţňđč.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ěĺńňîďîëîćĺíčĺ: ŕęî čńęŕňĺ äŕ äŕäĺňĺ číôîđěŕöč˙ çŕ ěĺńňîďîëîćĺíčĺňî\n"
-#~ " íŕ ďđčíňĺđŕ ńč, íŕďđŕâĺňĺ ăî ňóę (ěîćĺňĺ äŕ íŕďčřĺňĺ ęŕęâîňî ńč "
-#~ "čńęŕňĺ,\n"
-#~ " íŕďđčěĺđ \"2-đč ĺňŕć\").\n"
-
-#~ msgid "Press next to continue."
-#~ msgstr "Íŕňčńíĺňĺ Ńëĺäâŕů, çŕ äŕ ďđîäúëćčňĺ."
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Ďĺ÷ŕňŕé ňĺęńňŕ ęŕňî PostScript ?"
-
-#~ msgid "Profile "
-#~ msgstr "Ďđîôčë "
-
-#~ msgid "Provider dns 1"
-#~ msgstr "1-âč DNS íŕ äîńňŕâ÷čęŕ"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "2-đč DNS íŕ äîńňŕâ÷čęŕ"
+#~ msgid "preload module"
+#~ msgstr "ďîäăîňîâęŕ íŕ ěîäóëŕ"
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, áčáëčîňĺęč, číńňđóěĺíňč"
+#~ msgid "click on a category"
+#~ msgstr "ęëčęíĺňĺ âúđőó ęŕňĺăîđč˙"
-#~ msgid "Receiving Speed:"
-#~ msgstr "Ńęîđîńň íŕ ďđčĺěŕíĺ: "
+#~ msgid "Remove"
+#~ msgstr "Ďđĺěŕőíč"
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Ďđĺíŕńňđîé čçďîëçâŕéęč ěŕăüîńíčę ..."
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "Číńňđóěĺíň çŕ ńúäŕâŕíĺ íŕ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Reload"
-#~ msgstr "Ďđĺçŕđĺćäŕíĺ"
-
-#~ msgid "Remote queue"
-#~ msgstr "Îňäŕëĺ÷ĺíî čěĺ íŕ îďŕřęŕ"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Ëčďńâŕ čěĺ íŕ îďŕřęŕňŕ !"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Îáúđíč đĺäŕ íŕ ńňđŕíčöčňĺ"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Äĺńĺí/Ë˙â úăúë â ňî÷ęč (1/72 íŕ čí÷)"
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO ĺ bootloader çŕ SPARC: ňoé ěîćĺ äŕ ńňŕđňčđŕ\n"
-#~ "GNU/Linux čëč ęî˙ äŕ ĺ äđóăŕ îďĺđŕöčîííŕ ńčńňĺěŕ, ńúůĺńňâóâŕůŕ íŕ "
-#~ "ęîěďţňúđŕ âč.\n"
-#~ "Îáčęíîâĺííî, ňĺçč äđóăč îďĺđŕöčîííč ńčńňĺěŕ ńĺ çŕńč÷ŕň č číńňŕëčđŕň\n"
-#~ "ďđŕâčëíî. Ŕęî ňîâŕ íĺ ńňŕâŕ ďđč âŕń, ěîćĺňĺ äŕ äîáŕâ˙ňĺ çŕďčńč íŕ đúęŕ â\n"
-#~ "ňîçč ĺęđŕí. Ăëĺäŕéňĺ äŕ čçáĺđĺňĺ âĺđíč ďŕđŕěĺňđč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ěîćĺ äŕ íĺ čńęŕňĺ äŕ äŕâŕňĺ äîńňúď äî ňĺçč îďĺđŕöčîííč ńčńňĺěč íŕ íčęîé,\n"
-#~ "â ęîéňî ńëó÷ŕé ěîćĺňĺ äŕ čçňđčĺňĺ ńúîňâĺňíčňĺ çŕďčńč. Íî â ňŕęúâ ńëó÷ŕé,\n"
-#~ "ůĺ ńĺ íóćäŕĺňĺ îň boot-äčńęĺňŕ, çŕ äŕ ăč ńňŕđňčđŕňĺ !"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Ăëŕâíčňĺ îďöčč íŕ SILO ńŕ:\n"
-#~ " - bootloader číńňŕëŕöč˙: ďîęŕçâŕ, ęúäĺňî čńęŕňĺ äŕ ďîńňŕâčňĺ "
-#~ "číôîđěŕöč˙ňŕ\n"
-#~ "íĺîáőîäčěŕ çŕ ńňŕđňčđŕíĺňî íŕ GNU/Linux. Îńâĺí ŕęî íĺ çíŕĺňĺ ňî÷íî ęŕęâî\n"
-#~ "ďđŕâčňĺ, čçáĺđĺňĺ \"Ďúđâč ńĺęňîđ íŕ óńňđîéńňâîňî (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Čç÷ŕęâŕíĺ ďđĺäč ńňŕđňčđŕíĺ íŕ ďîäđŕçáčđŕůč˙ ńĺ îáđŕç: Îďđĺäĺë˙ "
-#~ "äĺńĺňčňĺ\n"
-#~ "îň ńĺęóíäŕňŕ, ęîčňî çŕđĺćäŕůŕ ďđîăđŕěŕ äŕ čç÷ŕęŕ ďđĺäč ďóńęŕíĺňî íŕ "
-#~ "ďúđâč˙\n"
-#~ "îáđŕç. Ďîëĺçíî ĺ çŕ ńčńňĺěč, ęîčňî ńňŕđňčđŕň îň äčńęŕ âĺäíŕăŕ ńëĺä ęŕňî\n"
-#~ "ńĺ âęëţ÷č ęëŕâčŕňóđŕňŕ. Çŕđĺćäŕůŕňŕ ďđîăđŕěŕ íĺ ÷ŕęŕ, ŕęî \"delay\" ĺ\n"
-#~ "ďđîďóńíŕň čëč ĺ íóëŕ."
-
-#~ msgid "Sciences"
-#~ msgstr "Íŕóęč"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Íŕó÷íč ďđčëîćĺíč˙"
-
-#~ msgid "Search"
-#~ msgstr "Ňúđńč"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Âňîđč DNS ńúđâúđ"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě îňäŕëĺ÷ĺíč˙ ďđčíňĺđ"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Čçáĺđĺňĺ đŕçěĺđŕ, ęîéňî čńęŕňĺ äŕ číńňŕëčđŕě"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Čçáĺđĺňĺ:\n"
-#~ "\n"
-#~ " - Ńďĺöčŕëčçčđŕíŕ: Ŕęî ńňĺ äîńňŕňú÷íî çŕďîçíŕň ń GNU/Linux, ůĺ ěîćĺňĺ äŕ "
-#~ "čçáĺđĺňĺ\n"
-#~ " ăëŕâíîňî ďđĺäíŕçíŕ÷ĺíčĺ íŕ ěŕřčíŕňŕ ńč. Âčćňĺ ďî-äîëó çŕ "
-#~ "ďîäđîáíîńňč.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ĺęńďĺđňíŕ: Ňîâŕ ďđĺäďîëŕăŕ, ÷ĺ ńňĺ íŕ \"ňč\" ń GNU/Linux č čńęŕňĺ äŕ\n"
-#~ " íŕďđŕâčňĺ âčńîęî ńďĺöčŕëčçčđŕíŕ číńňŕëŕöč˙. Ęŕęňî č â "
-#~ "\"Ńďĺöčŕëčçčđŕíč˙\"\n"
-#~ " číńňŕëŕöčîíĺí ęëŕń, ůĺ ěîćĺňĺ äŕ čçáĺđĺňĺ óďîňđĺáŕňŕ íŕ ńčńňĺěŕňŕ "
-#~ "ńč.\n"
-#~ " Íî ěîë˙, ěîë˙, ÍĹ ČÇÁČĐŔÉŇĹ ŇÎÂŔ, ÎŃÂĹÍ ŔĘÎ ÍĹ ÇÍŔĹŇĹ ĘŔĘÂÎ ĎĐŔÂČŇĹ!"
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "Čçáĺđĺňĺ ăîëĺěčíŕ %d%s"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Ńęîđîńň íŕ čçďđŕůŕíĺ: "
-
-#~ msgid "Show only leaves"
-#~ msgstr "Ďîęŕćč ńŕěî ëčńňŕňŕ"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Ńëîâŕřęŕ (Ďđîăđŕěčńňč)"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Ńúćĺë˙âŕě, íŕńňđîéęŕňŕ íŕ ďîůŕňŕ îůĺ íĺ ĺ âúâĺäĺíŕ. Áúäĺňĺ ňúđďĺëčâč."
-
-#~ msgid "Sort by"
-#~ msgstr "Ńîđňčđŕé ďî"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spool-äčđĺęňîđč˙"
-
-#~ msgid "Spooler: "
-#~ msgstr "Spooler: "
-
-#~ msgid "Statistics"
-#~ msgstr "Ńňŕňčńňčęč"
-
-#~ msgid "Test the mouse here."
-#~ msgstr "Čçďđîáâŕéňĺ ěčřęŕňŕ ńč ňóę."
-
-#~ msgid ""
-#~ "The Mandrake Linux spreads among several CDROMs. It may be that drakX "
-#~ "has\n"
-#~ "selected packages on another CDROM than the installation CDROM, and when "
-#~ "it\n"
-#~ "needs that you put another one into the drive, it will eject the current "
-#~ "CDROM\n"
-#~ "and ask you for another one."
-#~ msgstr ""
-#~ "Mandrake Linux ĺ đŕçďîëîćĺí íŕ í˙ęîëęî CDROM-ŕ. Ěîćĺ äŕ ńĺ îęŕćĺ, ÷ĺ "
-#~ "DrakX\n"
-#~ "ĺ čçáđŕë ďŕęĺňč íŕ CDROM, đŕçëč÷ĺí îň číńňŕëŕöčîííč˙ CDROM, č, ęîăŕňî ěó\n"
-#~ "ďîňđ˙áâŕ äŕ ăî ńëîćčňĺ â óńňđîéńňâîňî, ňîé ůĺ čçęŕđŕ ňĺęóůč˙ CDROM č ůĺ "
-#~ "âč\n"
-#~ "ďîčńęŕ äđóă."
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň äĺčíńňŕëčđŕíč"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Ňîçč ńňŕđňîâ ńęđčďň ńĺ îďčňâŕ äŕ çŕđĺäč ěîäóëč usb ěčřęŕňŕ âč."
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Çŕ ďî-ńčăóđíŕ ńčńňĺěŕ, ňđ˙áâŕ äŕ čçáĺđĺňĺ \"Čçďîëçâŕé shadow ôŕéë\"\n"
-#~ "č \"Čçďîëçâŕé MD5 ďŕđîëč\"."
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó Číńňŕëčđŕí č Íŕëč÷ĺí"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Ăîđĺí/Äîëĺí úăúë â ňî÷ęč (1/72 íŕ čí÷)"
-
-#~ msgid "Tree"
-#~ msgstr "Äúđâî"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Äŕ ńĺ îďčňŕě ëč äŕ îňęđč˙ ěîäĺě ?"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL íŕ äčđĺęňîđč˙ňŕ ńúäúđćŕůŕ RPM"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Îďöčč çŕ Uniprint äđŕéâĺđ"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Íĺđŕçďîçíŕň íŕńňđîéâŕů ôŕéë"
-
-#~ msgid "Update location"
-#~ msgstr "Îáíîâč ě˙ńňîňî"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Îáíîâ˙âŕíĺ íŕ RPM áŕçŕňŕ"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Čçďîëçâŕé MD5 ďŕđîëč"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Čçďîëçâŕé diskdrake"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Čçďîëçâŕé shadow ôŕéë"
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Äîáđĺ äîřëč â Ěŕăüîńíčęŕ çŕ ěđĺćîâŕ íŕńňđîéęŕ.\n"
-#~ "Ęîč ęîěďîíĺíňč čńęŕňĺ äŕ íŕńňđîčňĺ ?\n"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Ęŕęâî ňúđń˙ň?"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Çŕ ęŕęâî ńĺ óďîňđĺá˙âŕ ńčńňĺěŕňŕ âč ?"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Ęŕęâŕ ďđîăđŕěŕ çŕ íŕ÷ŕëíî çŕđĺćäŕíĺ čńęŕňĺ äŕ čçďîëçâŕňĺ?"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Ęîé ôŕéë ňúđńčňĺ?"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Ęîé ďŕęĺň ňúđń˙ň"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Ęúě ęîé ńĺđčĺí ďîđň ĺ ńâúđçŕíŕ ěčřęŕňŕ âč ?"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Ń îňäŕëĺ÷ĺí CUPS ńúđâúđ, íĺ âč ńĺ íŕëŕăŕ äŕ íŕńňđîéâŕňĺ ęŕęúâňî\n"
-#~ "č äŕ áčëî ďđčíňĺđ ňóę; ďđčíňĺđčňĺ ńŕěč ůĺ áúäŕň çŕńĺ÷ĺíč,\n"
-#~ "îńâĺí ŕęî í˙ěŕňĺ ńúđâúđ íŕ äđóăŕ ěđĺćŕ; â ďîńëĺäíč˙ ńëó÷ŕé,\n"
-#~ "ůĺ ňđ˙áâŕ äŕ ďđĺäîńňŕâčňĺ IP ŕäđĺń č ĺâĺíňóŕëíî ďîđň íŕ\n"
-#~ "CUPS ńúđâúđŕ."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Çŕďčřč /etc/fstab"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Äŕ, îňďĺ÷ŕňŕé ASCII ňĺńňîâŕ ńňđŕíčöŕ"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Äŕ, îňďĺ÷ŕňŕé PostScript ňĺńňîâŕ ńňđŕíčöŕ"
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Ěîćĺňĺ äŕ čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň íŕ ńčńňĺěŕňŕ ńč. Ěîë˙, îáúđíĺňĺ ńĺ "
-#~ "ęúě đúęîâîäńňâîňî çŕ\n"
-#~ "číôîđěŕöč˙. Íŕęđŕňęî, ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ, îńňŕâĺňĺ ňîâŕ ďî "
-#~ "ďîäđŕçáčđŕíĺ.\n"
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Ěîćĺňĺ äŕ íŕńňđîčňĺ ëîęŕëĺí ďđčíňĺđ (ńâúđçŕí ęúě ěŕřčíŕňŕ âč) čëč "
-#~ "îňäŕëĺ÷ĺí\n"
-#~ "ďđčíňĺđ (äîńňúďĺí ÷đĺç Unix, Netware čëč Microsoft Windows ěđĺćŕ)."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Ěîćĺňĺ äŕ číńňŕëčđŕňĺ ęđčďňîăđŕôńęč ďŕęĺňč, ŕęî Číňĺđíĺň âđúçęŕňŕ âč ĺ\n"
-#~ "íŕňđîĺíŕ ęŕęňî ňđ˙áâŕ. Ďúđâî čçáĺđĺňĺ îăëĺäŕëĺí ńŕéň, îň ęúäĺňî čçęŕňĺ äŕ "
-#~ "čçňĺăë˙ňĺ\n"
-#~ "ďŕęĺňč, ńëĺä ňîâŕ ěŕđęčđŕéňĺ ďŕęĺňčňĺ çŕ číńňŕëčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Îňáĺëĺćĺňĺ, ÷ĺ ňđ˙áâŕ äŕ čçáĺđĺňĺ îăëĺäŕëĺí ńŕéň č ęđčďňîăđŕôńęč ďŕęĺňč,\n"
-#~ "ńúîáđŕçíî âŕřĺňî çŕęîíîäŕňĺëńňâî."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ ďîîňäĺëíî âńč÷ęč ďŕęĺňč, ęîčňî\n"
-#~ "čńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ěîćĺňĺ äŕ đŕçřčđčňĺ čëč ńâčĺňĺ äúđâîňî, ęŕňî öúęíĺňĺ íŕ îďöččňĺ â ëĺâč˙ "
-#~ "úăúë\n"
-#~ "íŕ ďđîçîđĺöŕ ń ďŕęĺňčňĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî ďđĺäďî÷čňŕňĺ äŕ âčäčňĺ ďŕęĺňčňĺ ďîäđĺäĺíč â ŕçáó÷ĺí đĺä, öúęíĺňĺ íŕ\n"
-#~ "čęîíŕňŕ \"Ďđĺâęëţ÷âŕíĺ ěĺćäó íĺńîđňčđŕíč č ńîđňčđŕíč ďî ăđóďč\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî íĺ čńęŕňĺ äŕ áúäĺňĺ ďđĺäóďđĺćäŕâŕíč çŕ çŕâčńčěîńňč, öúęíĺňĺ "
-#~ "\"Ŕâňîěŕňč÷íč çŕâčńčěîńňč\".\n"
-#~ "Ŕęî íŕďđŕâčňĺ ňîâŕ, îňáĺëĺćĺňĺ ÷ĺ čçęëţ÷âŕíĺňî íŕ ĺäčí ďŕęĺň ěîćĺ "
-#~ "ňčőîěúëęîě\n"
-#~ "äŕ čçęëţ÷č í˙ęîč äđóăč ďŕęĺňč, ęîčňî çŕâčń˙ň îň íĺăî."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ root ďŕđîëŕňŕ íŕ Mandrake Linux ńčńňĺěŕňŕ.\n"
-#~ "Ďŕđîëŕňŕ ňđ˙áâŕ äŕ áúäĺ âúâĺäĺäŕ äâŕ ďúňč çŕ ďđîâĺđęŕ, ÷ĺ ďŕđîëčňĺ ńŕ "
-#~ "čäĺíňč÷íč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root ĺ ńčńňĺěíč˙ň ŕäěčíčńňđŕňîđ čëč ĺäčíńňâĺíč˙ ďîňđĺáčňĺë, íŕ ęîéňî ĺ "
-#~ "ďîçâîëĺíî\n"
-#~ "äŕ ďîďđŕâ˙ íŕńňđîéâŕůčňĺ ôŕéëîâĺ. Çŕňîâŕ čçáĺđĺňĺ ďŕđîëŕňŕ âíčěŕňĺëíî.\n"
-#~ "Íĺďîçâîëĺíŕ óďîňđĺáŕ íŕ root ŕęŕóíňŕ ěîćĺ äŕ áúäĺ čçęëęţ÷čňĺëíî îďŕńíî çŕ "
-#~ "öĺëîńňňŕ\n"
-#~ "íŕ ńčńňĺěŕňŕ, äŕííčňĺ č č äđóăčňĺ ńčńňĺěč ńâúđçŕíč ęúě íĺ˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďŕđîëŕňŕ ňđ˙áâŕ äŕ ĺ ńěĺńčöŕ îň ŕçáó÷íč ńčěâîëč č äŕ ĺ äúëăŕ íŕé-ěŕëęî 8\n"
-#~ "ńčěâîëŕ. Íčęîăŕ íĺ ňđ˙áâŕ äŕ ńč ˙ çŕďčńâŕňĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Íĺ ďđŕâĺňĺ ďŕđîëŕňŕ ďđĺęŕëĺíî äúëăŕ čëč ńëîćíŕ, âúďđĺęč ňîâŕ: ňđ˙áâŕ äŕ "
-#~ "ěîćĺňĺ\n"
-#~ "äŕ ˙ çŕďîěíčňĺ áĺç ěíîăî óńčëč˙."
-
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ í˙ęîč äîďúëíčňĺëíč îďöčč çŕ ńčńňĺěŕňŕ ńč.\n"
-#~ "\n"
-#~ "* Čçďîëçâŕíĺ îďňčěčçŕöčč çŕ ňâúđäč˙ äčńę: ňŕçč îďöč˙ ěîćĺ äŕ ďîäîáđč "
-#~ "đŕáîňŕňŕ íŕ ňâúđäč˙ âč äčńęŕ, íî ĺ ńŕěî çŕ íŕďđĺäíŕëč\n"
-#~ " ďîňĺđĺáčňĺëč: í˙ęîč íĺäîä˙ëŕíč ÷čďńĺňč ěîăŕň äŕ ńúńčď˙ň äŕííčňĺ âč, "
-#~ "ňŕęŕ ÷ĺ âíčěŕâŕéňĺ. Îňáĺëĺćĺňĺ, ÷ĺ ˙äđîňî čěŕ\n"
-#~ " âăđŕäĺí ÷ĺđĺí ńďčńúę îň óńňđîéńňâŕ č ÷čďńĺňč, íî, ŕęî čńęŕňĺ äŕ "
-#~ "čçáĺăíĺňĺ ëîřč čçíĺíŕäč, îńňŕâĺňĺ ňŕçč îďöč˙ čçęëţ÷ĺíŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň: ěîćĺňĺ äŕ čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň çŕ "
-#~ "ńčńňĺěŕňŕ\n"
-#~ " ńč. Ěîë˙, îáúđíĺňĺ ńĺ ęúě đúęîâîäńňâîňî çŕ ďúëíŕ číôîđěŕöč˙. Ďđîńňî, "
-#~ "ŕęî\n"
-#~ " íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ, îńňŕâĺňĺ ňîâŕ ďî ďîäđŕçáčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ňî÷íî RAM, ŕęî ĺ íóćíî: çŕ ńúćŕëĺíčĺ, í˙ěŕ ńňŕíäŕđňĺí ěĺňîä, äŕ ńĺ "
-#~ "ďîďčňŕ BIOS çŕ îáĺěŕ íŕ RAM â ęîěďţňúđŕ. Ęŕňî\n"
-#~ " ďîńëĺäńňâčĺ, GNU/Linux ěîćĺ äŕ íĺ óńďĺĺ äŕ çŕńĺ÷ĺ ďđŕâčëíî îáĺěŕ íŕ "
-#~ "RAM. Ŕęî ĺ ňŕęúâ ńëó÷ŕ˙, ňóę ěîćĺňĺ äŕ\n"
-#~ " çŕäŕäĺňĺ ňî÷íč˙ îáĺě íŕ RAM. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ îň 2 čëč 4 MB ěĺćäó "
-#~ "çŕńĺ÷ĺíŕňŕ č ďđčńúńňâŕůŕňŕ RAM ĺ íîđěŕëíŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ŕâňîěŕňč÷íî ěîíňčđŕíĺ íŕ ďđĺíîńčěč óńňđîéńňâŕ: ŕęî ďđĺäďî÷čňŕňĺ äŕ íĺ "
-#~ "ěîíňčđŕňĺ đú÷íî ďđĺíîńčěč óńňđîéńňâŕ (CD-ROM,\n"
-#~ " ôëîďč, Zip č ň.í.) ďčřĺéęč \"mount\" č \"umount\", čçáĺđĺňĺ ňŕçč "
-#~ "îďöč˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ďî÷čńňâŕíĺ íŕ \"/tmp\" ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ čçňđčâŕň âńč÷ęč "
-#~ "ôŕéëîâĺ č äčđĺęňîđčč ńúőđŕí˙âŕíč â \"/tmp\",\n"
-#~ " ęîăŕňî çŕđĺćäŕňĺ ńčńňĺěŕňŕ ńč, čçáĺđĺňĺ ňŕçč îďöč˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Âęëţ÷âŕíĺ íŕ NumLock ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ âęëţ÷âŕ NumLock "
-#~ "ďđč ńňŕđňčđŕíĺ, čçáĺđĺňĺ ňŕçč îďöč˙. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ\n"
-#~ " íĺ ňđ˙áâŕ äŕ âęëţ÷âŕňĺ ňŕçč îďöč˙ ďđč ëŕďňîďč č ÷ĺ ěîćĺ č äŕ íĺ đŕáîňč "
-#~ "ďîä X)."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Ńĺăŕ ěîćĺňĺ äŕ ďîńî÷čňĺ âđĺěĺâŕňŕ çîíŕ ńďđ˙ěî ěĺńňîćčâĺĺíĺňî ńč."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ čçďđîáâŕňĺ ěčřęŕňŕ ńč. Čçďîëçâŕéňĺ áóňîíŕ č ňîď÷ĺňî, çŕ "
-#~ "äŕ\n"
-#~ "ďđîâĺđčňĺ äŕëč íŕńňđîéęčňĺ ńŕ íŕđĺä. Ŕęî íĺ, ěîćĺňĺ äŕ öúęíĺňĺ \"Îňě˙íŕ"
-#~ "\",\n"
-#~ "çŕ äŕ čçáĺđĺňĺ äđóă äđŕéâĺđ."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ čçďđîáâŕňĺ ěčřęŕňŕ ńč. Čçďîëçâŕéňĺ áóňîíčňĺ č ęîëĺëöĺňî, "
-#~ "çŕ\n"
-#~ "äŕ ďđîâĺđčäŕ äŕëč íŕńňđîéęčňĺ ńŕ íŕđĺä. Ŕęî íĺ ńŕ, öúęíĺňĺ íŕ \"Îňęŕç\", "
-#~ "çŕ\n"
-#~ "äŕ čçáĺđĺňĺ äđóă äđŕéâĺđ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî číńňŕëčđŕňĺ íŕ Apple ěŕřčíŕ ń ĺäíîáóňîííŕ ěčřęŕ, ůĺ čěŕňĺ âúçěîćíîńň "
-#~ "äŕ\n"
-#~ "îďđĺäĺëčňĺ ęëŕâčřč îň ęëŕâčŕňóđŕňŕ, äŕ ńčěóëčđŕň 2-đč č 3-ňč áóňîí íŕ\n"
-#~ "ěčřęŕňŕ. Ňîâŕ ůĺ âč äŕäĺ äîńňúď äî ďúëíŕňŕ ôóíęöčîíŕëíîńň íŕ ěčřęŕňŕ â "
-#~ "Linux\n"
-#~ "ęîíçîëŕňŕ, č â X Windows GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čěŕňĺ ADB ěčřęŕ, ěîë˙, čçáĺđĺňĺ USB, ňúé ęŕňî Linux ˙äđîňî ůĺ ńĺ "
-#~ "ďîăđčćč\n"
-#~ "äŕ čçďîëçâŕ ěčřęŕňŕ ęŕęňî ňđ˙áâŕ."
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Ěîćĺňĺ äŕ îďđĺäĺëčňĺ íŕďđŕâî URI çŕ äîńňúď äî ďđčíňĺđŕ ń CUPS."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ íŕńňđîčňĺ ěđĺćîâîňî ńč óńňđîéńňâî.\n"
-#~ "\n"
-#~ " * IP ŕäđĺń: ŕęî íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, "
-#~ "ďîďčňŕéňĺ ěđĺćîâčĺ ńč ŕäěčíčńňđŕňîđ.\n"
-#~ " Íĺ ňđ˙áâŕ äŕ âúâĺćäŕňĺ IP ŕäđĺń, ŕęî čçáĺđĺňĺ îďöč˙ňŕ \"Ŕâňîěŕňč÷íî IP"
-#~ "\", ďî-äîëó.\n"
-#~ "\n"
-#~ " * Ěđĺćîâŕ ěŕńęŕ: \"255.255.255.0\" îáčęíîâĺííî ĺ äîáúđ čçáîđ. Ŕęî íĺ "
-#~ "çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč "
-#~ "ŕäěčíčńňđŕňîđ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ŕâňîěŕňč÷íî IP: Ŕęî ěđĺćŕňŕ âč čçďîëçâŕ BOOTP čëč DHCP ďđîňîęîë, "
-#~ "čçáĺđĺňĺ ňŕçč îďöč˙. Ŕęî ĺ čçáĺđŕíŕ, íĺ ńĺ íóćäŕĺňĺ\n"
-#~ " îň ńňîéíîńň çŕ \"IP ŕäđĺń\". Ŕęî íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî "
-#~ "ňđ˙áâŕ äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč ŕäěčíčńňđŕňîđ."
-
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ ńúçäŕäĺňĺ ĺäčí čëč ďîâĺ÷ĺ \"îáčęíîâĺíč\" ďîňđĺáčňĺëńęč\n"
-#~ "ŕęŕóíňč, ęŕňî ďđîňčâîďîëîćíîńň íŕ \"ďđčâčëĺăčđîâŕíč˙\" ďîňđĺáčňĺëńęč\n"
-#~ "ŕęŕóíň \"root\". Ěîćĺňĺ äŕ ńúçäŕäĺňĺ ďî ĺäčí čëč ďîâĺ÷ĺ çŕ âńĺęč, ęîéňî\n"
-#~ "áčőňĺ čńęŕëč äŕ ďîëçâŕ ęîěďţňúđŕ âč. Îňáĺëĺćĺňĺ ÷ĺ âńĺęč ŕęŕóíň ůĺ čěŕ\n"
-#~ "ńâîčňĺ ďđĺäďî÷čňŕíč˙ (ăđŕôč÷íŕ ńđĺäŕ, ďđîăđŕěíč íŕńňđîéęč č ň.í.)\n"
-#~ "č äŕ íŕńňđîč ńâî˙ňŕ \"Home\" äčđĺęňîđč˙, ęúäĺňî äŕ çŕďčńâŕ ňĺçč\n"
-#~ "ńâîč ďđĺäďî÷čňŕíč˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďúđâî ńúçäŕéňĺ ŕęŕóíň çŕ ńĺáĺ ńč. Äŕćĺ č äŕ ńňĺ ĺäčíńňâĺíč˙ň ďîňđĺáčňĺë,\n"
-#~ "čçďîëçâŕíĺňî íŕ ŕäěčíčńňđŕňîđńęč˙ ŕęŕóíň çŕ âńĺęčäíĺâíŕ óďîňđĺáŕ ĺ "
-#~ "îďŕńíî.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çŕňîâŕ âëčçŕéňĺ ń ďîňđĺáčňĺëńęč˙ ńč ŕęŕóíň â ńčńňĺěŕňŕ č, ńŕěî ŕęî âč ńĺ\n"
-#~ "íŕëîćč, čçďîëçâŕéňĺ ŕäěčíčńňđŕňîđńęč˙ ŕęŕóíň."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ dialup îďöččňĺ. Ŕęî íĺ çíŕĺňĺ\n"
-#~ "čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, ďîäőîä˙ůŕ číôîđěŕöč˙ ěîćĺ äŕ áúäĺ "
-#~ "âçĺňŕ\n"
-#~ "îň Číňĺđíĺň äîńňŕâ÷čęŕ âč. Ŕęî íĺ âúâĺäĺňĺ číôîđěŕöč˙ çŕ DNS (name "
-#~ "server)\n"
-#~ "ňóę, ňŕçč číôîđěŕöč˙ ůĺ áúäĺ âçĺňŕ Číňĺđíĺň äîńňŕâ÷čęŕ âč ďî âđĺěĺ íŕ\n"
-#~ "ńâúđçâŕíĺ."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ îďöččňĺ çŕ íŕáčđŕíĺ. Ŕęî íĺ ńňĺ ńčăóđíč,\n"
-#~ "ďđŕâčëíŕ číôîđěŕöč˙ ěîćĺňĺ äŕ ďîëó÷čňĺ îň Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ čěĺňî íŕ őîńňŕ ńč. Ŕęî íĺ çíŕĺňĺ\n"
-#~ "čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč ŕäěčíčńňđŕňîđ."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ čěĺňî íŕ őîńňŕ ńč, ŕęî ňđ˙áâŕ. Ŕęî\n"
-#~ "íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, îńňŕâĺňĺ ăî ďđŕçíî."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ čěĺňî íŕ őîńňŕ ńč, ŕęî âč ňđ˙áâŕ. Ŕęî íĺ\n"
-#~ "çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî ňđ˙áâŕ äŕ âúâĺäĺňĺ, ń ďđŕâčëíŕ "
-#~ "číôîđěŕöč˙\n"
-#~ "ěîćĺňĺ äŕ ńĺ ńäîáčĺňĺ îň Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ ńŕ ěŕđęčđŕňĺ ăđóďŕ ďŕęĺňč, ęî˙ňî čńęŕňĺ äŕ\n"
-#~ "číńňŕëčđŕňĺ čëč îáíîâčňĺ.\n"
-#~ "\n"
-#~ "DrakX ůĺ ďđîâĺđč äŕëč čěŕňĺ äîńňŕňú÷íî ě˙ńňî çŕ číńňŕëčđŕíĺňî čě. Ŕęî "
-#~ "í˙ěŕňĺ,\n"
-#~ "ňîé ůĺ âč ďđĺäóďđĺäč çŕ ňîâŕ. Ŕęî čńęŕňĺ äŕ ďđîäúëćčňĺ âúďđĺęč ňîâŕ, ůĺ "
-#~ "ďđîäúëćč\n"
-#~ "číńňŕëŕöč˙ňŕ íŕ âńč÷ęč ěŕđęčđŕíč ăđóďč, íî ůĺ ďđîďóńíĺ ďî-ěŕëîâŕćíčňĺ "
-#~ "ďŕęĺňč.\n"
-#~ "Â äúíîňî íŕ ńďčńúęŕ ěîćĺňĺ äŕ ěŕđęčđŕňĺ îďöč˙ňŕ \"Číäčâčäóŕëĺí čçáîđ íŕ "
-#~ "ďŕęĺňč\";\n"
-#~ "â ňîçč ńëó÷ŕé, ůĺ ňđ˙áâŕ äŕ îáőîäčňĺ ďîâĺ÷ĺ îň 1000 ďŕęĺňŕ ..."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ńĺăŕ ňđ˙áâŕ äŕ îďđĺäĺëčňĺ ďđĺäíŕçíŕ÷ĺíčĺňî íŕ ěŕřčíŕňŕ ńč. Âúçěîćíîńňčňĺ "
-#~ "ńŕ:\n"
-#~ "\n"
-#~ "\t* Đŕáîňíŕ ńňŕíöč˙: ňîâŕ ĺ čäĺŕëíč˙ čçáîđ, ŕęî âúçíŕěĺđ˙âŕňĺ äŕ "
-#~ "čçďîëçâŕňĺ ěŕřčíŕňŕ ńč ăëŕâíî çŕ ĺćĺäíĺâíŕ óďîňđĺáŕ â\n"
-#~ "\t îôčńŕ čëč ó äîěŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Đŕçđŕáîňęŕ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč ăëŕâíî çŕ "
-#~ "đŕçđŕáîňęŕ íŕ ńîôóĺđ, ňîâŕ ĺ äîáúđ čçáîđ.\n"
-#~ "\t Ňîăŕâŕ ůĺ čěŕňĺ číńňŕëčđŕí ďúëĺí íŕáîđ îň ńîôňóĺđ, çŕ äŕ ęîěďčëčđŕňĺ, "
-#~ "îňęđčâŕňĺ áúăîâĺ č ôîđěŕňčđŕňĺ čçőîäĺí ęîä,\n"
-#~ "\t čëč äŕ ńúçäŕâŕňĺ ńîôóĺđíč ďŕęĺňč.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Ńúđâúđ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ňŕçč ěŕřčíŕ çŕ ńúđâúđ, ňîâŕ ĺ "
-#~ "äîáđč˙ň čçáîđ. Âęëţ÷âŕ ôŕéëîâ ńúđâúđ\n"
-#~ "\t (NFS čëč SMB), ńúđâúđ çŕ ďĺ÷ŕň (Unix-ńęč čëč Microsoft Windows-ńęč), "
-#~ "ńúđâúđ çŕ ŕóňîđčçŕöč˙ (NIS), ńúđâúđ çŕ\n"
-#~ "\t áŕçč-äŕííč č ň.í.. Ęŕňî ňŕęúâ, íĺ î÷ŕęâŕéňĺ číńňŕëčđŕíč ęŕęâčňî č äŕ "
-#~ "ĺ řŕđčíčč (KDE, GNOME, č ň.í.)."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ńĺăŕ ňđ˙áâŕ äŕ îďđĺäĺëčňĺ ďđĺäíŕçíŕ÷ĺíčĺňî íŕ ěŕřčíŕňŕ ńč. Âúçěîćíîńňčňĺ "
-#~ "ńŕ:\n"
-#~ "\n"
-#~ "* Đŕáîňíŕ ńňŕíöč˙: ňîâŕ ĺ čäĺŕëíč˙ čçáîđ, ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ "
-#~ "ěŕřčíŕňŕ ńč ăëŕâíî çŕ ĺćĺäíĺâíŕ óďîňđĺáŕ â\n"
-#~ " îôčńŕ čëč ó äîěŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Đŕçđŕáîňęŕ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč ăëŕâíî çŕ "
-#~ "đŕçđŕáîňęŕ íŕ ńîôóĺđ, ňîâŕ ĺ äîáúđ čçáîđ.\n"
-#~ " Ňîăŕâŕ ůĺ čěŕňĺ číńňŕëčđŕí ďúëĺí íŕáîđ îň ńîôňóĺđ, çŕ äŕ ęîěďčëčđŕňĺ, "
-#~ "îňęđčâŕňĺ áúăîâĺ č ôîđěŕňčđŕňĺ čçőîäĺí ęîä,\n"
-#~ " čëč äŕ ńúçäŕâŕňĺ ńîôóĺđíč ďŕęĺňč.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ńúđâúđ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ňŕçč ěŕřčíŕ çŕ ńúđâúđ, ňîâŕ ĺ "
-#~ "äîáđč˙ň čçáîđ. Âęëţ÷âŕ ôŕéëîâ ńúđâúđ\n"
-#~ " (NFS čëč SMB), ńúđâúđ çŕ ďĺ÷ŕň (Unix-ńęč čëč Microsoft Windows-ńęč), "
-#~ "ńúđâúđ çŕ ŕóňîđčçŕöč˙ (NIS), ńúđâúđ çŕ\n"
-#~ " áŕçč-äŕííč č ň.í.. Ęŕňî ňŕęúâ, íĺ î÷ŕęâŕéňĺ číńňŕëčđŕíč ęŕęâčňî č äŕ ĺ "
-#~ "řŕđčíčč (KDE, GNOME, č ň.í.)."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ ďđčíňĺđ îň ńďčńúęŕ ďî-ăîđĺ."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Ňđ˙áâŕ äŕ ďđčĺěĺňĺ óńëîâč˙ňŕ íŕ ëčöĺíçŕ ďî-ăîđĺ, çŕ äŕ ďđîäúëćč "
-#~ "číńňŕëŕöč˙ňŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Öúęíĺňĺ \"Ďđčĺěč\", ŕęî ńňĺ ńúăëŕńíč ń óńëîâč˙ňŕ ěó.\n"
-#~ "\n"
-#~ "\n"
-#~ "Öúęíĺňĺ \"Îňęŕćč\", ŕęî íĺ ńňĺ ńúăëŕńíč ń óńëîâč˙ňŕ ěó. Číńňŕëŕöč˙ňŕ ůĺ "
-#~ "ďđčęëţ÷č áĺç ďđîě˙íŕ íŕ íŕńňî˙ůŕňŕ\n"
-#~ "íŕńňđîéęŕ."
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Ňđ˙áâŕ äŕ âúâĺäĺňĺ í˙ęŕęâŕ číôîđěŕöč˙ ňóę.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Čěĺ íŕ ďđčíňĺđ: ďî ďîäđŕçáčđŕíĺ, ďĺ÷ŕňíč˙ spooler čçďîëçâŕ \"lp\" "
-#~ "ęŕňî čěĺ íŕ ďđčíňĺđ. Ňŕęŕ ÷ĺ ňđ˙áâŕ äŕ čěŕňĺ\n"
-#~ "ďđčíňĺđ íŕđĺ÷ĺí \"lp\".\n"
-#~ " Ŕęî čěŕňĺ ńŕěî ĺäčí ďđčíňĺđ, ěîćĺňĺ äŕ čçďîëçâŕňĺ í˙ęîëęî čěĺíŕ çŕ "
-#~ "íĺăî. Ďđîńňî ňđ˙áâŕ äŕ ăč îňäĺëčňĺ ń pipe\n"
-#~ " ńčěâîëŕ (\"|\"). Ňŕęŕ ÷ĺ, ŕęî ďđĺäďî÷čňŕňĺ ďî-ńěčńëĺíî čěĺ, ěîćĺňĺ "
-#~ "äŕ ăî ńëîćčňĺ ďúđâî, íŕďđ. \"My printer|lp\".\n"
-#~ " Ďđčíňĺđúň ńúäúđćŕů \"lp\" â čěĺňî(ŕňŕ) ńč, ůĺ ńĺ ďîëçâŕ ďî "
-#~ "ďîäđŕçáčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spool äčđĺęňîđč˙: ňîâŕ ĺ äčđĺęňîđč˙ňŕ, ęúäĺňî ńĺ ńúőđŕí˙âŕň đŕáîňčňĺ "
-#~ "çŕ ďĺ÷ŕň. Îńňŕâĺňĺ ńňîéíîńňňŕ\n"
-#~ " ďî ďîäđŕçáčđŕíĺ, îńâĺí ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçďîëçâŕňĺ\n"
-#~ "\n"
-#~ "\n"
-#~ " * Âđúçęŕ ęúě ďđčíňĺđ: Ŕęî ďđčíňĺđúň âč ĺ ôčçč÷ĺńęč ńâúđçŕí ęúě "
-#~ "ęîěďţňúđŕ âč, čçáĺđĺňĺ \"Ëîęŕëĺí ďđčíňĺđ\".\n"
-#~ " Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ îňäŕëĺ÷ĺíŕ Unix ěŕřčíŕ, "
-#~ "čçáĺđĺňĺ \"Îňäŕëĺ÷ĺí LPD ďđčíňĺđ\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ îňäŕëĺ÷ĺíŕ Microsoft "
-#~ "Windows ěŕřčíŕ (čëč íŕ Unix ěŕřčíŕ ďîëçâŕůŕ SMB\n"
-#~ " ďđîňîęîë), čçáĺđĺňĺ \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ NetWare ěđĺćŕ, čçáĺđĺňĺ "
-#~ "\"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Ďđčíňĺđúň âč áĺřĺ çŕńĺ÷ĺí. Ěîë˙, âúâĺäĺňĺ čěĺňî íŕ óńňđîéńňâîňî, íŕ "
-#~ "ęîĺňî\n"
-#~ "ĺ ńâúđçŕí.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çŕ číôîđěŕöč˙, ďîâĺ÷ĺňî ďđčíňĺđč ńŕ ńâúđçŕíč íŕ ďúđâč˙ ďŕđŕëĺëĺí ďîđň. "
-#~ "Ňîçč\n"
-#~ "ńĺ íŕđč÷ŕ \"/dev/lp0\" ďîä GNU/Linux č \"LPT1\" ďîä Microsoft Windows."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Ńčńňĺěŕňŕ âč ůĺ ńĺ đĺńňŕđňčđŕ.\n"
-#~ "\n"
-#~ "Ńëĺä ęŕňî đĺńňŕđňčđŕ, âŕřŕňŕ íîâŕ Mandrake Linux ńčńňĺěŕ ůĺ ńĺ çŕđĺäč\n"
-#~ "ŕâňîěŕňč÷íî. Ŕęî čńęŕňĺ äŕ ďóńíĺňĺ äđóăŕ ńúůĺńňâóâŕůŕ îďĺđŕöčîííŕ "
-#~ "ńčńňĺěŕ,\n"
-#~ "ďđî÷ĺňĺňĺ äîďúëíčňĺëíčňĺ číńňđóęöčč."
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "âńč÷ęč äŕííč âúđőó ň˙ő ůĺ áúäŕň çŕăóáĺíč"
-
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "âíčěŕíčĺ: Â ŇÎÂŔ ÍČÂÎ ÍŔ ŃČĂÓĐÍÎŃŇ, ROOT ÂËČÇŔÍĹŇÎ ÍŔ ĘÎÍÇÎËŔŇŔ ÍĹ Ĺ "
-#~ "ĎÎÇÂÎËĹÍÎ !\n"
-#~ "Ŕęî čńęŕňĺ äŕ ńňĺ root, ňđ˙áâŕ äŕ âëĺçĺňĺ ęŕňî ďîňđĺáčňĺë č ňîăŕâŕ äŕ "
-#~ "čçďîëçâŕňĺ \"su\".\n"
-#~ "Ęŕňî ö˙ëî, íĺ î÷ŕęâŕéňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč çŕ íĺůî äđóăî, îńâĺí çŕ "
-#~ "ńúđâúđ.Á˙őňĺ ďđĺäóďđĺäĺí."
-
-#~ msgid "cannot fork: "
-#~ msgstr "íĺ ěîăŕ äŕ ńĺ îňäĺë˙: "
-
-#~ msgid "default"
-#~ msgstr "ďî ďîäđŕçáčđŕíĺ"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "íĺ čçďîëçâŕé PPPOE"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "Őîđčçîíňŕëíŕ äîáđĺ-čçăëĺćäŕůŕ aurora"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (âŕćĺí)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (äîáúđ)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (ěíîăî äîáúđ)"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "not connected"
-#~ msgstr "íĺ ńâúđçŕí"
-
-#~ msgid "received: "
-#~ msgstr "ďîëó÷ĺíč: "
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake ĺ â đĺćčě íŕ ``ěŕëęî ďŕěĺň''.\n"
-#~ "Ůĺ ďóńíŕ îňíîâî rpmdrake, çŕ äŕ đŕçđĺřŕ ňúđńĺíĺňî íŕ ôŕéëîâĺ"
+#~ msgid "Show expert mode"
+#~ msgstr "Ńúń đŕçřčđĺíč ôóíęöčč"
-#~ msgid "sent: "
-#~ msgstr "čçďđŕňĺíč: "
+#~ msgid "modules"
+#~ msgstr "ěîäóëč"
-#~ msgid "using module"
-#~ msgstr "čçďîëçâŕíĺ íŕ ěîäóë"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "Ńúńňŕâčňĺë íŕ ńňŕđňčđŕůŕ äčńęĺňŕ. Âńĺ îůĺ â đŕçđŕáîňęŕ.\n"
-#~ msgid "vertical traditional aurora"
-#~ msgstr "Îáčęíîâĺíŕ âĺđňčęŕëíŕ aurora"
+#~ msgid "experts only"
+#~ msgstr "çŕ ĺęńďĺđňč"
-#~ msgid "yellow pages"
-#~ msgstr "ćúëňč ńňđŕíčöč"
+#~ msgid "/File/_Preferences"
+#~ msgstr "/Ôŕéë/_Ďđĺäďî÷čňŕíč˙"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index f210d9039..235ad3a0b 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 8.2\n"
-"POT-Creation-Date: 2002-06-13 15:54+0200\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2002-01-28 22:41GMT\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -14,96 +14,117 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ko"
-#: ../../Xconfigurator.pm_.c:244
-msgid "Use Xinerama extension"
-msgstr "Implijit Xinemara"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ko"
-#: ../../Xconfigurator.pm_.c:247
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mo"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mo"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mo"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mo"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mo"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mo"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mo pe vuioc'h"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Dibabit ur servijer X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "servijer X"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "o lenn ar c'hefluniadur"
-#: ../../Xconfigurator.pm_.c:251
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:262
-msgid "Graphics card"
-msgstr "Kartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Diuzit ment memor ho kartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:263
-msgid "Select a graphics card"
-msgstr "Diuzit ur gartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Staliadur XFree86"
-#: ../../Xconfigurator.pm_.c:287
-msgid "Choose a X server"
-msgstr "Dibabit ur servijer X"
+#: ../../Xconfig/card.pm_.c:343
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pe seurt enmont a vennit ouzhpennaĂą"
-#: ../../Xconfigurator.pm_.c:287
-msgid "X server"
-msgstr "servijer X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:294
-msgid "Choose a X driver"
-msgstr "Dibabit ur sturier X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Implijit Xinemara"
-#: ../../Xconfigurator.pm_.c:294
-msgid "X driver"
-msgstr "Sturier X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:361 ../../Xconfigurator.pm_.c:367
-#: ../../Xconfigurator.pm_.c:417 ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:364
-#, fuzzy
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pe seurt enmont a vennit ouzhpennaĂą"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s gant 3D"
-#: ../../Xconfigurator.pm_.c:375
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:377 ../../Xconfigurator.pm_.c:410
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfigurator.pm_.c:379 ../../Xconfigurator.pm_.c:412
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gant 3D"
-
-#: ../../Xconfigurator.pm_.c:387 ../../Xconfigurator.pm_.c:401
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:389 ../../Xconfigurator.pm_.c:403
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:398
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -111,31 +132,52 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:418
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:422
-msgid "XFree configuration"
-msgstr "Staliadur XFree86"
-
-#: ../../Xconfigurator.pm_.c:497
-msgid "Select the memory size of your graphics card"
-msgstr "Diuzit ment memor ho kartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:551
-msgid "Choose options for server"
-msgstr "Dibabit dibarzhoĂš ar servijer"
+#: ../../Xconfig/main.pm_.c:60
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr "Derc'hel ar c'hefluniadur IP o ren"
-#: ../../Xconfigurator.pm_.c:575
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Dibabit ur skramm"
-#: ../../Xconfigurator.pm_.c:575
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Skramm"
-#: ../../Xconfigurator.pm_.c:578
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "PersonelaĂą"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Rummel"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Dizober"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -158,230 +200,158 @@ msgstr ""
"a zo en tu-hont da varregezh ho skramm : gallout a rafe gwastaù ho skramm\n"
" M'hoc'h eus douetaĂąs, dibabit ur c'hefluniadur fur."
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Feur freskaat a-led"
-#: ../../Xconfigurator.pm_.c:586
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Feur freskaat a-serzh"
-#: ../../Xconfigurator.pm_.c:623
-msgid "Monitor not configured"
-msgstr "Skramm ket kefluniet"
-
-#: ../../Xconfigurator.pm_.c:626
-msgid "Graphics card not configured yet"
-msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-
-#: ../../Xconfigurator.pm_.c:629
-msgid "Resolutions not chosen yet"
-msgstr "SpisterioĂš ket dibabet c'hoazh"
-
-#: ../../Xconfigurator.pm_.c:647
-msgid "Do you want to test the configuration?"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../Xconfigurator.pm_.c:651
-#, fuzzy
-msgid "Warning: testing this graphics card may freeze your computer"
-msgstr "Da ziwall : arvarus eo amprouiù ar gartenn c'hrafek-maù"
-
-#: ../../Xconfigurator.pm_.c:654
-msgid "Test of the configuration"
-msgstr "AmprouiĂą ar c'hefluniadur"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 liv (8 bit)"
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"klaskit kemmaĂą arventennoĂš 'zo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil liv (15 bit)"
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid "An error occurred:"
-msgstr "C'hoarvezet eo ur fazi :"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil liv (16 bit)"
-#: ../../Xconfigurator.pm_.c:734
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Kuitaat e %d eilenn"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milion a livioĂš (24 bit)"
-#: ../../Xconfigurator.pm_.c:745
-msgid "Is this the correct setting?"
-msgstr "Ha reizh eo ar c'hefluniadur ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliard a livioĂš (32 bit)"
-#: ../../Xconfigurator.pm_.c:754
-msgid "An error occurred, try to change some parameters"
-msgstr "C'hoarvezet eo ur fazi, klaskit kemmaĂą arventennoĂš 'zo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "SpisterioĂš"
-#: ../../Xconfigurator.pm_.c:825
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Spister"
-#: ../../Xconfigurator.pm_.c:877
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Dibabit ar spister ha donder al livioĂš"
-#: ../../Xconfigurator.pm_.c:879
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
msgid "Graphics card: %s"
msgstr "Kartenn c'hrafek : %s"
-#: ../../Xconfigurator.pm_.c:880
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servijer XFree86 : %s"
-
-#: ../../Xconfigurator.pm_.c:894 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Dilec'hiaĂą"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "NullaĂą"
-#: ../../Xconfigurator.pm_.c:894 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:701
-#: ../../my_gtk.pm_.c:1034 ../../my_gtk.pm_.c:1056
-#: ../../standalone/drakbackup_.c:2288 ../../standalone/drakbackup_.c:2359
-#: ../../standalone/drakbackup_.c:2375
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Mat eo"
-#: ../../Xconfigurator.pm_.c:896 ../../network/netconnect.pm_.c:173
-#: ../../printerdrake.pm_.c:2473 ../../standalone/drakfloppy_.c:146
-#: ../../standalone/draknet_.c:275 ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mod mailh"
-
-#: ../../Xconfigurator.pm_.c:897
-msgid "Show all"
-msgstr "Diskouez pep tra"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../Xconfigurator.pm_.c:942
-msgid "Resolutions"
-msgstr "SpisterioĂš"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "AmprouiĂą ar c'hefluniadur"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Reizhadur ar stokellaoueg : %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Seurt logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Trobarzhell al logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "KempredA-led ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "FreskA-serzh ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1518
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Graphics card: %s\n"
msgstr "Kartenn c'hrafek : %s\n"
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Graphics card identification: %s\n"
-msgstr "Anavezoud kartenn c'hrafek : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memor c'hrafek : %s ko\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Donder liv: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Spister: %s\n"
-#: ../../Xconfigurator.pm_.c:1525
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servijer XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1526
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Sturier XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1544
-msgid "Preparing X-Window configuration"
-msgstr "O prientiĂą kefluniadur X-Window"
-
-#: ../../Xconfigurator.pm_.c:1564
-msgid "What do you want to do?"
-msgstr "Petra a vennit ober ? "
-
-#: ../../Xconfigurator.pm_.c:1569
-msgid "Change Monitor"
-msgstr "KemmaĂą ar skramm"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Graphics card"
-msgstr "KemmaĂą ar gartenn c'hrafek"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Change Server options"
-msgstr "KemmaĂą dibarzhoĂš ar servijer"
-
-#: ../../Xconfigurator.pm_.c:1574
-msgid "Change Resolution"
-msgstr "KemmaĂą ar spister"
-
-#: ../../Xconfigurator.pm_.c:1575
-msgid "Show information"
-msgstr "Diskouez titouroĂš"
-
-#: ../../Xconfigurator.pm_.c:1576
-msgid "Test again"
-msgstr "AmprouiĂą adarre"
-
-#: ../../Xconfigurator.pm_.c:1577 ../../printerdrake.pm_.c:2476
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Kuitaat"
-
-#: ../../Xconfigurator.pm_.c:1585
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr "Derc'hel ar c'hefluniadur IP o ren"
-
-#: ../../Xconfigurator.pm_.c:1606
+#: ../../Xconfig/various.pm_.c:51
msgid "Graphical interface at startup"
msgstr "X pa loc'her"
-#: ../../Xconfigurator.pm_.c:1607
+#: ../../Xconfig/various.pm_.c:52
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -390,277 +360,165 @@ msgstr ""
"KefluniaĂą ho urzhiataer evit laĂąsaĂą X ent emgefreek pa loc'ho a c'hellaĂą.\n"
"Mennout a rit laĂąsaĂą X pa adloc'hit ?"
-#: ../../Xconfigurator.pm_.c:1613
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Adereit ouzh %s evit bevaat ar c'hemmoĂš mar plij"
-
-#: ../../Xconfigurator.pm_.c:1628
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 liv (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil liv (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil liv (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milion a livioĂš (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliard a livioĂš (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mo pe vuioc'h"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA standard, 640x480 da 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Gour-VGA, 800x600 da 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Gour-VGA, 1024x768 da 87 Hz pebeilet, 800x600 da 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Gour-VGA astennet, 800x600 da 60 Hz, 640x480 da 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "G-VGA nann-pebeilet, 1024x768 da 60 Hz, 800x600 da 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Rann gentaĂą ar parzhadur loc'haĂą"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Rann gentaĂą ar bladenn (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Staliadur SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliaĂą ar c'harger loc'haĂą ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Staliadur LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO gant meuziad skrid"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO gant meuziad c'hrafek"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Loc'haĂą abaoe DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "DibarzhoĂš pennaĂą ar c'harger loc'haĂą"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "C'harger loc'haĂą da implijout"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Staliadur c'harger loc'haĂą"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Trobarzhell loc'haĂą"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne da ket en-dro gant BIOSoĂš kozh)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Fetis"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "fetis"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mod video"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'haĂą ar skeudenn dre ziouer"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1087 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:710 ../../printerdrake.pm_.c:808
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Tremenger"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Strishaat dibarzhoĂš al linenn urzhiaĂą"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "strishaat"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "SkaraĂą /tmp bep ma loc'her"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Aotren lies trolinenn"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Roit ment ar memor vev e Mo"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Didalvout eo ``Strishaat dibarzhoĂš al linenn urzhiaĂą'' hep tremenger"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1143
-#: ../../install_steps_interactive.pm_.c:1082
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1082
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "An tremegerioĂš ne glot ket"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "RK dre ziouer"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -669,7 +527,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -677,75 +535,75 @@ msgstr ""
"Setu da heul an enmontoĂš liesseurt.\n"
"Gallout a rit ouzhpennaĂą lod pe gemmaĂą a re a zo."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:741
-#: ../../standalone/drakbackup_.c:850 ../../standalone/drakfont_.c:790
-#: ../../standalone/drakfont_.c:827
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "OuzhpennaĂą"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Graet"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "KemmaĂą"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennaĂą"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:884
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "ReizhiadoĂš (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "ReizhiadoĂš (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "ReizhiadoĂš (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Skeudenn"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Gwrizienn"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "OuzhpennaĂą"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lenn-skrivaĂą "
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taolenn"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Arvarus"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Skridennad"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Dre ziouer"
@@ -778,53 +636,75 @@ msgstr "Ret eo deoc'h kaout ur parzhadur disloaĂą"
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Kavet etrefas %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ket"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Gwelet titouroĂš periantel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "O staliaĂą ur sturier evit kartenn %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mollad %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"BremaĂą e c'hellit pourvezaĂą e zibarzhoĂš d'ar mollad %s.\n"
+"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboĂš.\n"
+"Da skouer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "DibarzhoÚ ar mollad :"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pe sturier %s a zlefen amprouiĂą ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -843,37 +723,15 @@ msgstr ""
"urzhiataer,\n"
"hogen ne raio reuz ebet."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "EmbrouiĂą"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spisait dibarzhoĂš"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"BremaĂą e c'hellit pourvezaĂą e zibarzhoĂš d'ar mollad %s.\n"
-"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboĂš.\n"
-"Da skouer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "DibarzhoÚ ar mollad :"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -882,51 +740,56 @@ msgstr ""
"KargaĂą ar mollad %s a zo sac'het.\n"
"Mennout a rit klask adarre gant arventennoĂš all ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Re eeun eo an tremeger"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"An anv arveriad a zle bezaĂą ennaĂą lizherennoĂš munut, sifroĂš, `-' ha `_' "
"hepken"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "En implij eo an anv arveriad-se endeo"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "OuzhpennaĂą un arveriad"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -935,32 +798,32 @@ msgstr ""
"Skrivit un arveriad\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aotren an arveriad"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Anv gwirion"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:709
-#: ../../printerdrake.pm_.c:807
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Anv arveriad"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Arlun"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -969,61 +832,57 @@ msgstr ""
"KefluniaĂą ho urzhiataer evit laĂąsaĂą X ent emgefreek pa loc'ho a c'hellaĂą.\n"
"Mennout a rit laĂąsaĂą X pa adloc'hit ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Dibabit ar arveriad dre ziouer"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Dibabit ar benveg a vennit staliaĂą"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../any.pm_.c:851
+#: ../../any.pm_.c:848
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 "Gallout a rit dibab yezhoĂš all hag a vo hegerz goude staliaĂą"
-#: ../../any.pm_.c:865 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "An holl"
-#: ../../any.pm_.c:957
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "AotreiĂą an holl dud"
-#: ../../any.pm_.c:957
-msgid "Custom"
-msgstr "PersonelaĂą"
-
-#: ../../any.pm_.c:957
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "N'ev ket lodaĂą"
-#: ../../any.pm_.c:967 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bremanaet e tle bezaĂą ar pabak-maĂą\n"
"Ha sur oc'h e mennit e ziuzaĂą ?"
-#: ../../any.pm_.c:970
+#: ../../any.pm_.c:986
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:978 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:984
+#: ../../any.pm_.c:1000
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 "
@@ -1032,63 +891,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:998 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:564
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:702 ../../my_gtk.pm_.c:705 ../../my_gtk.pm_.c:1034
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1588
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2279 ../../standalone/drakbackup_.c:2300
-#: ../../standalone/drakbackup_.c:2321 ../../standalone/drakbackup_.c:2339
-#: ../../standalone/drakbackup_.c:2387 ../../standalone/drakbackup_.c:2407
-#: ../../standalone/drakbackup_.c:2426 ../../standalone/drakfloppy_.c:235
-#: ../../standalone/drakfloppy_.c:384 ../../standalone/drakfont_.c:768
-#: ../../standalone/drakgw_.c:598 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:527
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "NullaĂą"
-
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1016
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:1037
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bezit deuet mat, preizherien !"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Paour"
-#: ../../any.pm_.c:1039 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Skouer"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Uhel"
-#: ../../any.pm_.c:1041
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Uhel"
-#: ../../any.pm_.c:1042
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Ankeniet"
-#: ../../any.pm_.c:1045
+#: ../../any.pm_.c:1074
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"
@@ -1098,7 +936,7 @@ msgstr ""
"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziĂą dre dremenger."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1106,7 +944,7 @@ msgstr ""
"Gweredekaet eo bremaĂą an tremenger, hogen dierbedet eo c'hoazh an implij en "
"ur rouedad"
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1117,13 +955,13 @@ msgstr ""
"evit kevreaĂą evel arval ouzh ar Genrouedad. BremaĂą ez eus gwiriadennoĂš "
"surentez."
-#: ../../any.pm_.c:1050
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1051
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1131,7 +969,7 @@ msgid ""
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Gant al live surentez-maĂą e teu posupl implijout ar reizhiad-maĂą evel ur "
"servijer.\n"
@@ -1139,7 +977,7 @@ msgstr ""
"servijer\n"
"o tigemer kevreadennoĂš a-berzh arvaloĂš niverus."
-#: ../../any.pm_.c:1054
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1148,25 +986,21 @@ msgstr ""
"Kemer a reomp arc'hweloĂš al live 4, hogen bremaĂą eo peurserret ar reizhiad.\n"
"Arc'hweloĂš surentez a zo en o muiaĂą"
-#: ../../any.pm_.c:1059
-msgid "Please choose the desired security level."
-msgstr "Dibabit al live surentez"
-
-#: ../../any.pm_.c:1062
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Live surentez"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Implijit libsafe gant ar servijer"
-#: ../../any.pm_.c:1065
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1067
-msgid "Security user (login or email)"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
msgstr ""
# NOTE: this message will be displayed at boot time; that is
@@ -1175,7 +1009,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:354
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1200,52 +1034,52 @@ 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:910
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Degemer mat e GRUB an dibaber reizhiad oberia¤ !"
#. -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:913
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Implijit ar stokelloĂš %c ha %c evit diuz pe enmont zo war wel"
#. -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:916
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stokit enkas evit loc'ha¤ ar RK diuzet, 'e' evit aoza¤ an"
#. -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:919
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "urzhiado— kent loc'ha¤, pe 'c' evit ul linenn-urzhia¤."
#. -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:922
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "An enmont war wel a vo loc'het ent emgefreek e %d eilenn."
-#: ../../bootloader.pm_.c:926
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr ""
#. -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:1026
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Gorretaol"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1028
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Meuziad LaĂąsaĂą"
-#: ../../bootloader.pm_.c:1047
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Pelec'h e mennit staliaĂą ar c'harger loc'haĂą ?"
@@ -1259,7 +1093,8 @@ msgstr "N'ev ket skoazell.\n"
msgid "Boot Style Configuration"
msgstr "Kefluniadur goude staliaĂą"
-#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Restr"
@@ -1269,8 +1104,8 @@ msgstr "/_Restr"
msgid "/File/_Quit"
msgstr "/Restr/_Kuitaat"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
-#: ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1313,8 +1148,8 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Lugerezh ar voullerez"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1457
-#: ../../standalone/drakbackup_.c:1468 ../../standalone/drakgw_.c:592
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "KefluniaĂą"
@@ -1335,15 +1170,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2431 ../../standalone/drakbackup_.c:3335
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:537
-#: ../../standalone/drakfont_.c:658 ../../standalone/drakfont_.c:721
-#: ../../standalone/drakfont_.c:766 ../../standalone/draknet_.c:109
-#: ../../standalone/draknet_.c:141 ../../standalone/draknet_.c:297
-#: ../../standalone/draknet_.c:436 ../../standalone/draknet_.c:522
-#: ../../standalone/draknet_.c:565 ../../standalone/draknet_.c:666
-#: ../../standalone/logdrake_.c:520
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "YA"
@@ -1446,8 +1282,8 @@ msgstr "Amerika"
msgid "Please make a backup of your data first"
msgstr "Gwarezit ho roadoĂš da gentaĂą mar plij"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:899
-#: ../../diskdrake/interactive.pm_.c:908 ../../diskdrake/interactive.pm_.c:962
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lennit aketus !"
@@ -1461,11 +1297,12 @@ msgstr ""
"rann\n"
"a zo a-walc'h) e deroĂš ar bladenn"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fazi"
@@ -1473,11 +1310,11 @@ msgstr "Fazi"
msgid "Wizard"
msgstr "Skoazeller"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Dibabit un obererezh"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1490,147 +1327,153 @@ msgstr ""
"(klikit warni, da c'houde klikit war \"AdventaĂą\")"
#
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "MunudoĂš"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "marc'haĂą sac'het"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "DisloaĂą"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Goullo"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:933
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "All"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoÚ restroÚ :"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "KrouiĂą"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Seurt"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Grit kentoc'h gant ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Dilemel"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Implijit ``Divarc'haĂą'' da gentaĂą"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Goude kemmaĂą seurt ar parzhadur %s, holl roadoĂš ar parzhadur-se a vo kollet"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Dibabit un parzhadur"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Dibabit un parzhadur all"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Kuitaat"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Tremen er mod mailh"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Tremen er mod boas"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Dizober"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Kuitaat hep enrollaĂą"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Kuitaat hep skrivaĂą an daolenn barzhaĂą ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Ac'hubiĂą ent emgefreek"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "SkaraĂą an holl"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "More"
+msgstr "Dilec'hiaĂą"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "DinoiĂą ar bladenn galet"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Ac'hubet eo an holl barzhadurioĂš kentaĂą renk"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "N'hellan ouzpennaĂą parzhadur ebet ken"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1638,35 +1481,35 @@ msgstr ""
"Evit kaout muioc'h a barzhadurioĂš, lamit unan evit ma c'hellot krouiĂą ur "
"parzhadur astennet mar plij"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "SkrivaĂą an daolenn barzhaĂą"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Taolenn barzhaĂą saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Taolenn barzhaĂą saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Taolenn barzhaĂą saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Emvarc'haĂą ar skoroĂš lem/laka"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Diuzit ar restr"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1674,11 +1517,11 @@ msgstr ""
"N'eo ket heĂąvel ment an daolenn barzhaĂą gwarezet\n"
"Kenderc'hel memestra ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Ho evezh"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1686,126 +1529,133 @@ msgstr ""
"Lakait ur bladennig el lenner\n"
"Kollet e vo holl roadoĂš ar bladennig-se"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "O klask assevel an daolenn barzhaĂą"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Diskouez titouroĂš"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:535
-#: ../../diskdrake/interactive.pm_.c:562 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Poent marc'haĂą"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
#, fuzzy
msgid "Options"
msgstr "Parzhadur"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:629
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "AdventaĂą"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:682
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Dilec'hiaĂą"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "FurmadiĂą"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Marc'haĂą"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "OuzhpennaĂą da RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "OuzhpennaĂą da LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Divarc'haĂą"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Lemel diwar RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Lemel diwar LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "KemmaĂą RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Implij da saveteiĂą"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "KrouiĂą ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Rann kregiù : "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Ment e Mo : "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:782
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Seurt ar reizhiad restroÚ : "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1042
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Poent marc'haù : "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Dibarzh : "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "O furmadiĂą ar restr saveteiĂą %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "KemmaĂą seurt ar parzhadur"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:533
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Pelec'h e mennit marc'haĂą ar restr saveteiĂą %s ?"
-#: ../../diskdrake/interactive.pm_.c:534 ../../diskdrake/interactive.pm_.c:561
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Pelec'h e mennit marc'haĂą an drobarzhell %s ?"
-#: ../../diskdrake/interactive.pm_.c:540
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1813,128 +1663,135 @@ msgstr ""
"N'hellan ket dizober ar poent marc'haĂą dre m'eo implijet ar parzhadur-se\n"
"evit saveteiĂą. Lamit ar saveteiĂą da gentaĂą"
-#: ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "O jediĂą bevennoĂš ar reizhiad restroĂš FAT"
-#: ../../diskdrake/interactive.pm_.c:585 ../../diskdrake/interactive.pm_.c:644
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Oc'h adventaĂą"
-#: ../../diskdrake/interactive.pm_.c:617
+#: ../../diskdrake/interactive.pm_.c:639
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Mat e vije gwareziĂą holl roadoĂš ar parzhadur-se"
-#: ../../diskdrake/interactive.pm_.c:624
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Goude adventaĂą ar parzhadur %s e vo kollet holl roadoĂš ar parzhadur-se"
-#: ../../diskdrake/interactive.pm_.c:629
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Dibabit ar ment nevez"
-#: ../../diskdrake/interactive.pm_.c:630
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Ment nevez e Mo : "
-#: ../../diskdrake/interactive.pm_.c:683
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-#: ../../diskdrake/interactive.pm_.c:684
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Rann"
-#: ../../diskdrake/interactive.pm_.c:685
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Da beseurt rann e mennit dilec'hiaĂą ?"
-#: ../../diskdrake/interactive.pm_.c:688
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "O tilec'hiaĂą"
-#: ../../diskdrake/interactive.pm_.c:688
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "O tilec'hiaĂą ur parzhadur..."
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Dibabit da be RAID ouzhpennaĂą"
-#: ../../diskdrake/interactive.pm_.c:706 ../../diskdrake/interactive.pm_.c:724
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nevez"
-#: ../../diskdrake/interactive.pm_.c:722
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Dibabit da be LVM ouzhpennaĂą"
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Anv LVM?"
-#: ../../diskdrake/interactive.pm_.c:767
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "N'heller ket implijout ar parzhadur-maĂą evit saveteiĂą"
-#: ../../diskdrake/interactive.pm_.c:779
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "SaveteiĂą"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Anv ar restr saveteiù : "
-#: ../../diskdrake/interactive.pm_.c:785
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Anv gwirion"
-#: ../../diskdrake/interactive.pm_.c:788
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Restr implijet gant ur saveteiĂą all endeo, dibabit unan all"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ar restr a zo endeo. E implijout ?"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "DibarzhoĂš marc'haĂą"
-#: ../../diskdrake/interactive.pm_.c:819
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "A bep sort"
-#: ../../diskdrake/interactive.pm_.c:882 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "trobarzhell"
-#: ../../diskdrake/interactive.pm_.c:883
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "live"
-#: ../../diskdrake/interactive.pm_.c:884
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ment diaoz"
-#: ../../diskdrake/interactive.pm_.c:899
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Bezit war evezh : arvarus eo an obererezh-maù."
-#: ../../diskdrake/interactive.pm_.c:914
+#: ../../diskdrake/interactive.pm_.c:937
#, fuzzy
msgid "What type of partitioning?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../diskdrake/interactive.pm_.c:932
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Bremanaet e tle bezaĂą ar pabak-maĂą\n"
+"Ha sur oc'h e mennit e ziuzaĂą ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1946,7 +1803,7 @@ msgstr ""
"Pe e implijit LILO ha ne daio ket en-dro, pe ne rit ket ha n'hoc'h eus ket "
"ezhomm a /boot"
-#: ../../diskdrake/interactive.pm_.c:936
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1960,145 +1817,145 @@ msgstr ""
"Ma vennit implijout ar merour loc'haĂą LILO, taolit pled da ouzhpennaĂą ur "
"parzhadur /boot"
-#: ../../diskdrake/interactive.pm_.c:942
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:962
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "War-nes bezaĂą skrivet war bladenn eo taolenn barzhaĂą an ardivink %s !"
-#: ../../diskdrake/interactive.pm_.c:966
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Ret e vo deoc'h adloc'haĂą a-raok ma talvezo ar c'hemm"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Goude furmadiĂą ar parzhadur %s, holl roadoĂš ar parzhadur-se a vo kollet"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "O furmadiĂą"
-#: ../../diskdrake/interactive.pm_.c:980
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "O furmadiĂą ar restr saveteiĂą %s"
-#: ../../diskdrake/interactive.pm_.c:981
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "O furmadiĂą ar parzhadur %s"
-#: ../../diskdrake/interactive.pm_.c:992
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid sac'het"
-#: ../../diskdrake/interactive.pm_.c:992
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "KrouiĂą ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:993
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "KrouiĂą ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:1008
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "AdskrivaĂą %s"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "SpisterioĂš"
-#: ../../diskdrake/interactive.pm_.c:1022
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1043
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Trobarzhell : "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1056
-#: ../../diskdrake/interactive.pm_.c:1120
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Seurt : "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Anv: "
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "O kregiù : rann %s\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Ment: %s"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s rann"
-#: ../../diskdrake/interactive.pm_.c:1065
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Kranenn %d da granenn %d\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Furmadet\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ket furmadet\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Marc'het\n"
-#: ../../diskdrake/interactive.pm_.c:1069
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1071
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Restr(oÚ) saveteiù : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1072
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2106,27 +1963,27 @@ msgstr ""
"Parzhadur loc'het dre ziouer\n"
" (evit loc'haĂą MS-DOS, ket evit lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1074
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Live %s\n"
-#: ../../diskdrake/interactive.pm_.c:1075
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Ment diaoz %s\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "PladennoĂš RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Anv ar restr saveteiù : %s"
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2134,7 +1991,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1084
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2142,64 +1999,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Ment: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "TitouroĂš: "
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "PladennoĂš LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Seurt taolenn barzhaù : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "war bus %d Nn %d\n"
-#: ../../diskdrake/interactive.pm_.c:1122
+#: ../../diskdrake/interactive.pm_.c:1157
#, fuzzy, c-format
msgid "Options: %s"
msgstr "Parzhadur"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Seurt ar reizhiad restroÚ : "
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutaĂą)"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "An tremegerioĂš ne glot ket"
-#: ../../diskdrake/interactive.pm_.c:1146
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1147
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2214,33 +2071,63 @@ msgstr "KemmaĂą seurt ar parzhadur"
msgid "Please click on a medium"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Dilesadur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "dedennus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Anv arveriad"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Anv arveriad"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domani NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Servijer DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "furmadiĂą er seurt %s eus %s a zo sac'het"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "N'ouzon ket penaos furmadiĂą %s er seurt %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fazi en ur zivarc'haù %s : %s"
@@ -2257,57 +2144,57 @@ msgstr "gant /usr"
msgid "server"
msgstr "servijer"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "PoentoĂš marc'haĂą a rank kregiĂą gant /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'haĂą %s endeo\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
+#: ../../fsedit.pm_.c:500
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fazi en ur zigeriù %s evit skrivaù : %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
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"
@@ -2316,10 +2203,262 @@ msgstr ""
"krouiĂą reizhiadoĂš restroĂš nevez warni. Gwiriit abeg ar gudenn-maĂą en ho "
"ardivinkaj mar plij "
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "N'hoc'h eus parzhadur ebet !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Dilesadur"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Rummel"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memor kartenn (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "O furmadiĂą"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "KemmaĂą seurt ar parzhadur"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Kuitaat"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "Skoazell"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "Marc'haĂą"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Logodenn"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memor kartenn (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "NullaĂą"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Logodenn"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#, fuzzy
+msgid "Description"
+msgstr "Spisait dibarzhoĂš"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Dilesadur"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Diuzit ar restr"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Trobarzhell an dreuzell"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 nozelenn"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "DinoiĂą ar bladenn galet"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Gwelet titouroĂš periantel"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Diskouez titouroĂš"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "KefluniaĂą al logodenn"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Poent marc'haĂą doubl %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Gortozit mar plij"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d eilenn"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "DibarzhoĂš ar voullerez lpd a-bell"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "EmbrouiĂą"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2333,7 +2472,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2404,9 +2543,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2597,7 +2735,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2609,9 +2747,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2657,21 +2794,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2687,9 +2823,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2710,9 +2846,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2823,38 +2958,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2929,11 +3058,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2957,7 +3086,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2972,7 +3101,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2987,7 +3116,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3003,7 +3132,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3012,23 +3141,23 @@ msgstr ""
"Diuzit ar porzh a zere mar plij. Da skouer, porzh COM1 dindan MS Windows\n"
"a vez anvet ttyS0 gant Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3050,7 +3179,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3072,7 +3201,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3080,7 +3209,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3101,7 +3230,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3127,7 +3256,7 @@ msgstr ""
"Hogen\n"
"neuze e vo ret deoc'h kaout ur bladennig loc'haĂą evit loc'haĂą anezho."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3143,29 +3272,28 @@ msgstr ""
"Nemet ma ouifec'h resis ar pezh a rit, dibabit \"Rann gentaĂą\n"
"ar bladenn (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3174,7 +3302,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3199,11 +3327,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3213,9 +3341,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3227,7 +3354,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3253,7 +3380,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3280,18 +3407,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3299,12 +3425,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3320,14 +3445,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3338,7 +3463,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3346,12 +3471,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3366,26 +3491,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "N'hellaĂą ket implijout ar skignaĂą hep domani NIS"
-#: ../../install_any.pm_.c:794
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_any.pm_.c:798
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:810
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:832 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"
@@ -3421,81 +3546,81 @@ msgstr ""
"\n"
"Kenderc'hel evelato ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ret eo deoc'h kaout ur parzhadur disloaĂą"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
#, fuzzy
msgid "Use free space"
msgstr "Implij da saveteiĂą"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
+#: ../../install_interactive.pm_.c:101
#, fuzzy
msgid "Use existing partitions"
msgstr "O furmadiĂą parzhadurioĂš"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
#, fuzzy
msgid "There is no existing partition to use"
msgstr "O klask assevel an daolenn barzhaĂą"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
#, fuzzy
msgid "Use the Windows partition for loopback"
msgstr "Implij da saveteiĂą"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Dibabit ar mentoĂš"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Ment ar parzhadur gwrizienn e Mo : "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ment ar parzhadur disloaù e Mo : "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
#, fuzzy
msgid "Which partition do you want to resize?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
#, fuzzy
msgid "Resizing Windows partition"
msgstr "O jediĂą bevennoĂš ar reizhiad restroĂš FAT"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
+#: ../../install_interactive.pm_.c:137
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3516,54 +3641,54 @@ msgstr ""
"ar\n"
"parzhadur-se, ha gwareziĂą ho roadoĂš. Pa vezit sur, gwaskit \"Mat eo\""
-#: ../../install_interactive.pm_.c:147
+#: ../../install_interactive.pm_.c:148
#, fuzzy
msgid "Which size do you want to keep for Windows on"
msgstr "Da beseurt rann e mennit dilec'hiaĂą ?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "parzhadur %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, fuzzy, c-format
msgid "FAT resizing failed: %s"
msgstr "AdventaĂą ent emgefreek sac'het"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Chetan an holl planedenn"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Chetan Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, fuzzy, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Goude adventaĂą ar parzhadur %s e vo kollet holl roadoĂš ar parzhadur-se"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "O furmadiĂą parzhadurioĂš"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Implijit fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, fuzzy, c-format
msgid ""
"You can now partition %s.\n"
@@ -3572,12 +3697,12 @@ msgstr ""
"Gallout a rit bremaĂą parzhaĂą ho pladenn galet %s\n"
"Pa 'z eo graet, na zisoĂąjit ket enrollaĂą dre implijout `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "N'hoc'h eus parzhadur windows ebet !"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "N'hellan ouzpennaĂą parzhadur ebet ken"
@@ -3586,16 +3711,16 @@ msgstr "N'hellan ouzpennaĂą parzhadur ebet ken"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Seurt taolenn barzhaù : %s\n"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "O laĂąsaĂą ar rouedad"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "O tizenaouiĂą ar rouedad"
@@ -3607,12 +3732,12 @@ msgstr ""
"Degouezhet ez eus ur fazi, hogen n'ouzon ket e veraĂą naet.\n"
"Kendalc'hit war ho mar."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Poent marc'haĂą doubl %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3620,12 +3745,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Lenner pladennig hegerz ebet"
@@ -3635,7 +3760,7 @@ msgstr "Lenner pladennig hegerz ebet"
msgid "Entering step `%s'\n"
msgstr "O kregiĂą gant al lankad `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3643,127 +3768,81 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Renkad staliaĂą"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Dibabit unan eus ar renkadoÚ staliaù a-heul mar plij :"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ment hollek ar strolladoĂš hoc'h eus diuzet a zo war-dro %d Mo.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ma vennit staliaĂą nebeutoc'h eget ar ment-se,\n"
-"diuzit an dregantad a bakadoĂš a vennit staliaĂą.\n"
-"\n"
-"Un dregantad izel a stalio hepken ar pakadoĂš pouezusaĂą;\n"
-"un dregantad a 100%% a stalio an holl bakadoĂš diuzet."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"N'eus egor war ho pladenn nemet evit %d%% eus ar pakadoĂš-se.\n"
-"\n"
-"Ma vennit staliaĂą nebeutoc'h eget se,\n"
-"diuzit an dregantad a bakadoĂš a vennit staliaĂą.\n"
-"Un dregantad izel a stalio hepken ar pakadoĂš pouezusaĂą;\n"
-"un dregantad a %d%% a stalio kement a bakadoĂš ma 'z eus tu."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Tu vo deoc'h o dibab spisoc'h el lankad a zeu."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Dregantad a bakadoĂš da staliaĂą"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Diuzadenn strollad pakadoĂš"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Diuz pakadoĂš unan hag unan"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ment hollek : %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pakad siek"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Anv : %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Stumm : %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Ment : %d Ko\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Talvoudegezh : %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
#, fuzzy
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "N'hellit ket andiuz ar pakad-maĂą. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
#, fuzzy
msgid "The following packages are going to be installed"
msgstr "Ar pakadoĂš a-heul a zo war-nes bezaĂą distaliet"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
#, fuzzy
msgid "The following packages are going to be removed"
msgstr "Ar pakadoĂš a-heul a zo war-nes bezaĂą staliet/lamet"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "N'hellit ket diuz/andiuz ar pakad-maĂą"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "HemaĂą a zo ur pakad ret, n'hell ket bezaĂą andiuzet"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "N'hellit ket andiuz ar pakad-maĂą. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -3771,77 +3850,78 @@ msgstr ""
"Bremanaet e tle bezaĂą ar pabak-maĂą\n"
"Ha sur oc'h e mennit e ziuzaĂą ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "N'hellit ket andiuz ar pakad-maĂą. Ret eo dezhaĂą bezaĂą bremanaet"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "StaliaĂą"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "EnrollaĂą war bladennig"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Diuz pakadoĂš unan hag unan"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "DistaliaĂą"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:525
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "O staliaĂą"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "O vrasjediĂą"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Amzer a chom"
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
msgid "Please wait, preparing installation..."
msgstr "Gortozit mar plij, o prientiĂą ar staliadur"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakad"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "O staliaĂą ar pakad %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aotren"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#, fuzzy
msgid "Refuse"
msgstr "AdventaĂą"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:782
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3856,17 +3936,17 @@ msgstr ""
"eo da c'houde.\n"
"Ma n'emaĂą ket ganeoc'h gwaskit NullaĂą evit chom hep staliaĂą ar Cd-Rom-se."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:794
-#: ../../install_steps_interactive.pm_.c:798
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:794
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Ur fazi a zo bet en ur rummaù pakadoÚ :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:798
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Ur fazi a zo bet en ur staliaù ar pakadoÚ :"
@@ -3911,11 +3991,11 @@ msgstr "Ur fazi a zo bet"
msgid "Do you really want to leave the installation?"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4036,106 +4116,110 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1017
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Stokellaoueg"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
#, fuzzy
msgid "Here is the full list of keyboards available"
msgstr "stokellaoueg"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Pe renkad staliaĂą a fell deoc'h ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "StaliaĂą/Bremanaat"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Erbedet"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Mailh"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Bremanaat"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Bremanaat pakadoĂš hep ken"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porzh al logodenn"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outaĂą, mar plij."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "O kefluniaĂą kartennoĂš PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "KefluniaĂą IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
+#: ../../install_steps_interactive.pm_.c:337
msgid "No partition available"
msgstr "parzhadur hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Dibabit at poentoĂš marc'haĂą"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4148,7 +4232,7 @@ msgstr ""
"N'hellaĂą ket lenn ho taolenn barzhaĂą, re vrein eo evidon :(\n"
"Klask a rin kenderc'hel en ur ziverkaĂą ar parzhadurioĂš siek"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4156,120 +4240,137 @@ msgstr ""
"Ne c'hellas ket DiskDrake lenn ent reizh an daolenn barzhaĂą.\n"
"Kendalc'hit war ho mar !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Parzhadur gwrizienn kavet ebet"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Parzhadur gwrizienn"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Pehini eo parzhadur gwrizienn (/) ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ret eo deoc'h adloc'haĂą evit ma talvezo kemmoĂš an daolenn barzhaĂą"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Dibabit ar parzhadur a vennit furmadiĂą"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "GwiriaĂą ar bloc'hoĂš siek ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "O furmadiĂą parzhadurioĂš"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "O krouiĂą hag o furmadiĂą ar restr saveteiĂą %s"
-#: ../../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ket a-walc'h a zisloaĂą evit peurstaliaĂą, kreskit anezhaĂą mar plij"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "O klask ar pakadoĂš hegerz"
+
+#: ../../install_steps_interactive.pm_.c:491
msgid "Looking for available packages..."
msgstr "O klask ar pakadoĂš hegerz"
-#: ../../install_steps_interactive.pm_.c:479
+#: ../../install_steps_interactive.pm_.c:495
msgid "Finding packages to upgrade..."
msgstr "O kavout pakadoĂš da vremanaat"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "N'hellit ket andiuz ar pakad-maĂą. Staliet eo endo"
+
+#: ../../install_steps_interactive.pm_.c:516
#, fuzzy, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Ho reizhiad n'eus ket wa-walc'h a egor evit staliaĂą pe vremanaat"
-#: ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:541
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Assevel adalek ar pladennig"
-#: ../../install_steps_interactive.pm_.c:543
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "AssevelaĂą adalek ar pladennig"
-#: ../../install_steps_interactive.pm_.c:543
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Diuzadenn pakadoĂš"
-#: ../../install_steps_interactive.pm_.c:548
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "EnrollaĂą war bladennig"
-#: ../../install_steps_interactive.pm_.c:628
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Dibabit pakadoĂš da staliaĂą"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:662
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:665
msgid "With X"
msgstr "Gant X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:732
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4279,16 +4380,16 @@ msgstr ""
"Ma n'hoc'h eus hini eus ar CDoĂš-se, gwaskit NullaĂą.\n"
"Ma fazi deoc'h lod eus ar CDoĂš, andiuzit anezho ha gwaskit Mat eo."
-#: ../../install_steps_interactive.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom skridennet \"%s\""
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "O prientiĂą ar staliadur"
-#: ../../install_steps_interactive.pm_.c:766
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4297,21 +4398,21 @@ msgstr ""
"O staliaĂą ar pakad %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Kefluniadur goude staliaĂą"
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4383,7 +4484,7 @@ msgstr ""
"Altadena California 91001\n"
"SUA"
-#: ../../install_steps_interactive.pm_.c:883
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4395,153 +4496,182 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "O taremprediĂą ar melezour evit kaout roll ar pakadoĂš hegerz"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoĂš diwarnaĂą"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:932
msgid "Contacting the mirror to get the list of available packages..."
msgstr "O taremprediĂą ar melezour evit kaout roll ar pakadoĂš hegerz"
-#: ../../install_steps_interactive.pm_.c:939
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: ../../install_steps_interactive.pm_.c:944
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../../install_steps_interactive.pm_.c:945
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:952
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Servijer NTP"
-#: ../../install_steps_interactive.pm_.c:986
-#: ../../install_steps_interactive.pm_.c:994
+#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1014
#, fuzzy
msgid "Remote CUPS server"
msgstr "Steud a-bell"
-#: ../../install_steps_interactive.pm_.c:987
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "No printer"
msgstr "Moullerez lec'hel"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1013 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Evit diverriĂą"
-#: ../../install_steps_interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Logodenn"
-#: ../../install_steps_interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Takad-eur"
-#: ../../install_steps_interactive.pm_.c:1019 ../../printerdrake.pm_.c:2279
-#: ../../printerdrake.pm_.c:2357
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Moullerez"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Kartenn ISDN"
-#: ../../install_steps_interactive.pm_.c:1024
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Kartenn son"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Kartenn pellwel"
-#: ../../install_steps_interactive.pm_.c:1066
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1068
#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "RestroĂš lec'hel"
-#: ../../install_steps_interactive.pm_.c:1077
-#: ../../install_steps_interactive.pm_.c:1078 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "TermeniĂą tremenger root"
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Tremenger ebet"
-#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutaĂą)"
-#: ../../install_steps_interactive.pm_.c:1090 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1098
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Servijer LDAP"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Dilesadur NIS"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domani NIS"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servijer NIS"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Dilesadur"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "TitouroĂš"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servijer NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4571,19 +4701,19 @@ msgstr ""
"evit\n"
"ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:1159
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Lenner pladennig kentaĂą"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Eil lenner pladennig"
-#: ../../install_steps_interactive.pm_.c:1161 ../../printerdrake.pm_.c:1851
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Tremen e-biou"
-#: ../../install_steps_interactive.pm_.c:1166
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4611,7 +4741,7 @@ msgstr ""
"ho reizhiad ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1172
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4620,29 +4750,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:1184
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'haĂą"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1224
msgid "Creating bootdisk..."
msgstr "O krouiĂą ar bladenn loc'haĂą"
-#: ../../install_steps_interactive.pm_.c:1198
+#: ../../install_steps_interactive.pm_.c:1231
msgid "Preparing bootloader..."
msgstr "O prientiĂą ar c'harger loc'haĂą"
-#: ../../install_steps_interactive.pm_.c:1209
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4650,11 +4780,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Mennout a rit implijout aboot?"
-#: ../../install_steps_interactive.pm_.c:1218
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4662,16 +4792,16 @@ msgstr ""
"Fazi en ur staliaĂą aboot,\n"
"klask rediaĂą ar staliadur zoken ma tistruj ar parzhadur kentaĂą ?"
-#: ../../install_steps_interactive.pm_.c:1225
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "StaliaĂą ar c'harger loc'haĂą"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1264
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../../install_steps_interactive.pm_.c:1239
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4682,17 +4812,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1283
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1287
+#: ../../install_steps_interactive.pm_.c:1310
msgid "Creating auto install floppy..."
msgstr "O krouiĂą ur bladennig staliaĂą emgefreek"
-#: ../../install_steps_interactive.pm_.c:1298
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4702,7 +4832,8 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremaĂą ?"
-#: ../../install_steps_interactive.pm_.c:1309
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4713,7 +4844,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4727,18 +4858,22 @@ msgstr ""
"sellit ouzh ar meneger fazioĂš hegerz e \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"TitouroĂš war gefluniaĂą ho reizhiad a zo hegerz e rannbennad Goude\n"
"StaliaĂą Sturier ofisiel an Arveriad Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "O krouiĂą ur bladennig staliaĂą emgefreek"
-#: ../../install_steps_interactive.pm_.c:1328
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4747,16 +4882,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1333
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Emgefreek"
-#: ../../install_steps_interactive.pm_.c:1333
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Replay"
msgstr "AdkargaĂą"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Diuz pakadoĂš unan hag unan"
@@ -4784,411 +4919,407 @@ msgstr ""
msgid "Choose a file"
msgstr "Dibabit ur restr"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Barek"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
#, fuzzy
msgid "Basic"
msgstr "Diazez"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Gortozit mar plij"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Dibab fall, klaskit adarre\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Nozel `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Mennout a rit implijout SILO ?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:197 ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tchek (QWERTZ)"
-#: ../../keyboard.pm_.c:198 ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alaman"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:200 ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spagnol"
-#: ../../keyboard.pm_.c:201 ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnek"
-#: ../../keyboard.pm_.c:202 ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Gall"
-#: ../../keyboard.pm_.c:203 ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvegek"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polonek"
-#: ../../keyboard.pm_.c:205 ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusiek"
-#: ../../keyboard.pm_.c:207 ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Svedek"
-#: ../../keyboard.pm_.c:208 ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Stokellaoueg RU"
-#: ../../keyboard.pm_.c:209 ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Stokellaoueg SUA"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeniek (kozh)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeniek (skriverez)"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjanek (latin)"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgian"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarek (BDS)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilek (ABNT-2)"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:193
#, fuzzy
msgid "Belarusian"
msgstr "Bulgarek"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suis (reizhadur alaman)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suis (reizhadur gall)"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tchek (QWERTY)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alaman (stokell marv ebet)"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danek"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norvegek)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Svedek)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniek"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Jorjiek (reizhadur \"Rusiek\")"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Jorjiek (reizhadur \"Latin\")"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Gresian"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hungarian"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatek"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelian"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelian (soniadel)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:215
#, fuzzy
msgid "Iranian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandek"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italian"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Reizhadur Stokellaoueg RU"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Amerikan Latin"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituaniek AZERTY (kozh)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituaniek AZERTY (nevez)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroĂš\""
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniek QUERTY \"soniadel\""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "TitouroĂš"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonia"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandek"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalek"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadian (Kebek)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovek"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakek (QWERTZ)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakek (QWERTY)"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Yougoslaviek (reizhadur latin)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Taolenn"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkek (hengounel doare \"F\")"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkek (arnevez doare \"Q\")"
-#: ../../keyboard.pm_.c:288
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Stokellaoueg SUA (etrevroadel)"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:260
#, fuzzy
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroĂš\""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yougoslaviek (latin)"
-#: ../../keyboard.pm_.c:301
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:302
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:303
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:304
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:305
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:306
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:307
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:308
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:309
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5201,7 +5332,31 @@ msgstr "Marc'haĂą kelc'hiek %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:832
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Niverenn bellgomz"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "FurmadiĂą parzhadurioĂš"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5242,10 +5397,6 @@ msgstr "1 nozelenn"
msgid "Generic 2 Button Mouse"
msgstr "Logodenn rummel 2 nozelenn"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Rummel"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rodel"
@@ -5310,53 +5461,53 @@ msgstr "ebet"
msgid "No mouse"
msgstr "Logodenn ebet"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
#, fuzzy
msgid "Please test the mouse"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "FIÑV HO RODELL !"
-#: ../../my_gtk.pm_.c:666
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:701
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Disoc'h"
-#: ../../my_gtk.pm_.c:701 ../../printerdrake.pm_.c:1590
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "A heul ->"
-#: ../../my_gtk.pm_.c:702 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Diaraog"
-#: ../../my_gtk.pm_.c:1034
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ha reizh eo ?"
-#: ../../my_gtk.pm_.c:1098 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
msgid "Info"
msgstr "TitouroĂš"
-#: ../../my_gtk.pm_.c:1119
+#: ../../my_gtk.pm_.c:1141
msgid "Expand Tree"
msgstr "Astenn ar wezenn"
-#: ../../my_gtk.pm_.c:1120
+#: ../../my_gtk.pm_.c:1142
msgid "Collapse Tree"
msgstr "PlegaĂą ar wezenn"
-#: ../../my_gtk.pm_.c:1121
+#: ../../my_gtk.pm_.c:1143
msgid "Toggle between flat and group sorted"
msgstr "GwintaĂą etre kompez ha rummet dre strollad"
@@ -5401,7 +5552,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
#, fuzzy
msgid "Choose the network interface"
msgstr "Dibabit ar ment nevez"
@@ -5438,10 +5589,10 @@ msgid "Host name"
msgstr "Anv an ostiz"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
+#: ../../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
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Kefluniadur ar rouedad"
@@ -5577,103 +5728,103 @@ msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
msgid "Dialup options"
msgstr "DibarzhoĂš sifrennaĂą"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Anv ar gevreadenn"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
#, fuzzy
msgid "Phone number"
msgstr "Niverenn bellgomz"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Anv ereaĂą"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Diazezet war ur skrid"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Diazezet war un dermenell"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Anv ar domani"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Servijer DNS kentaĂą (da zilenn)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Eil servijer DNS (da zilenn)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "KefluniaĂą ur rouedad"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Anv ar gevreadenn"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Anv ar gevreadenn"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "KefluniaĂą ur rouedad"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
#, fuzzy
msgid "Internet connection & configuration"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "KefluniaĂą ur rouedad"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5685,12 +5836,12 @@ msgid ""
"Press OK to continue."
msgstr "KefluniaĂą ur rouedad"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5698,7 +5849,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -5706,100 +5857,106 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Dibabit ar ment nevez"
-#: ../../network/netconnect.pm_.c:172
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mod mailh"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "O tinoiĂą trobarzhelloĂš..."
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "KefluniaĂą ur rouedad"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Poent marc'haĂą doubl %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "kavoutet %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "kavoutet war %s"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
#, fuzzy
msgid "LAN connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "kartenn(oĂš) ethernet kavoutet"
-#: ../../network/netconnect.pm_.c:206
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Dibabit ar benveg a vennit staliaĂą"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:229
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:231
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "Mennout a rit implijout aboot ?"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:250
#, fuzzy
msgid "Network configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:256
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5807,20 +5964,20 @@ msgid ""
"%s"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:265
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:270
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:271
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -5855,12 +6012,12 @@ msgstr "O kefluniaĂą an drobarzhell rouedad %s"
msgid " (driver %s)"
msgstr "Servijer XFree86 : %s\n"
-#: ../../network/network.pm_.c:311 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Chomlec'h IP"
-#: ../../network/network.pm_.c:312 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Maskl rouedad"
@@ -5877,7 +6034,7 @@ msgstr "IP emgefreek"
msgid "Start at boot"
msgstr "KrouiĂą ur bladennig loc'haĂą"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:714
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezaĂą ar chomlec'h IP"
@@ -5941,7 +6098,7 @@ msgstr "KefluniaĂą ar proksioĂš"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../network/tools.pm_.c:46 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "KefluniaĂą ur rouedad"
@@ -5971,44 +6128,44 @@ msgstr "KefluniaĂą ar proksioĂš"
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartenn"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memor kartenn (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartenn"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartenn"
-#: ../../network/tools.pm_.c:89 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartenn"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
#, fuzzy
msgid "Provider phone number"
msgstr "Niverenn bellgomz"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DibarzhoĂš ar voullerez (da zilenn)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DibarzhoĂš ar voullerez (da zilenn)"
@@ -6017,27 +6174,28 @@ msgstr "DibarzhoĂš ar voullerez (da zilenn)"
msgid "Choose your country"
msgstr "Dibabit ho stokellaoueg"
-#: ../../network/tools.pm_.c:96 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
#, fuzzy
msgid "Dialing mode"
msgstr "Anv domani"
-#: ../../network/tools.pm_.c:97 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Anv ar gevreadenn"
-#: ../../network/tools.pm_.c:98 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Anv ar gevreadenn"
-#: ../../network/tools.pm_.c:99 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
#, fuzzy
msgid "Account Login (user name)"
msgstr "Poent marc'haĂą"
-#: ../../network/tools.pm_.c:100 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
#, fuzzy
msgid "Account Password"
msgstr "Tremenger"
@@ -6046,15 +6204,15 @@ msgstr "Tremenger"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:600
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "marc'haù sac'het : "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6064,214 +6222,214 @@ msgstr ""
"FiĂąval ar parzhadurioĂš kentaĂą derez evit ma vo an toull stok ouzh ar "
"parzhadurioĂš astennet eo an diskoulm"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Assevel adalek ar restr %s sac'het %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Restr gwareziĂą siek"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fazi en ur skrivaĂą er restr %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "a rankfec'h kaout"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "a-bouez"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "brav-tre"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "brav"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "marteze"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Moullerez lec'hel"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Remote printer"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Steud a-bell"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:736
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "lpd a-bell"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "DibarzhoĂš ar voullerez NetWare"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servijer moullaĂą"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:740
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Trobarzhell ar voullerez"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2733
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "MoullerezioĂš lec'hel"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Moullerezio* a-bell"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", Mouluriez USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fazi en ur skrivaĂą er restr %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1138
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(mollad %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ar servijer SMB"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2394
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2673 ../../printerdrake.pm_.c:2700
-#: ../../printerdrake.pm_.c:2870 ../../printerdrake.pm_.c:2872
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Dre ziouer)"
@@ -6290,12 +6448,12 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2457
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Kefluniadur"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2458
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Steud a-bell"
@@ -6326,7 +6484,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Er furmad 1.2.3.4 e tlefe bezaĂą ar chomlec'h IP"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:864
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6335,7 +6493,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:857
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
#, fuzzy
msgid "Port"
msgstr "Paour"
@@ -6345,17 +6503,13 @@ msgstr "Paour"
msgid "Automatic CUPS configuration"
msgstr "Kefluniadur goude staliaĂą"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "AmprouiĂą ar porzhioĂš"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2440
-#: ../../printerdrake.pm_.c:2559
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6368,13 +6522,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6392,12 +6546,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6411,11 +6565,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6425,35 +6579,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Dilesadur"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "AmprouiĂą ar porzhioĂš"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Poent marc'haĂą doubl %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Moullerez USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6461,42 +6619,42 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
msgstr "N'ev ket Moullerez lec'hel!\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6504,7 +6662,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6512,72 +6670,81 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "KefluniaĂą ar proksioĂš"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or an "
-"HP LaserJet 2200?"
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "O staliaĂą ar pakad %s"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:485
msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:507
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "O staliaĂą ar pakad %s"
-#: ../../printerdrake.pm_.c:519
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "O staliaĂą pakadoĂš..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:536
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:546 ../../printerdrake.pm_.c:1020
-#: ../../printerdrake.pm_.c:1134
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
msgid "Reading printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6587,31 +6754,31 @@ msgstr ""
"pourvezaĂą anv ostiz ar servijer moullaĂą hag anv as steud\n"
"war ar servijer-se ma zlefe bezaĂą kaset an dleadoĂš moullaĂą."
-#: ../../printerdrake.pm_.c:628
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:629
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:632
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:636
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "DibarzhoĂš moullaĂą SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6625,35 +6792,35 @@ msgstr ""
"kement hag anv rannet ar voullerez a glaskit tizhout ha ne vern pe\n"
"ditour a anv arveriad, tremenger ha strollad labour en implij."
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Anv ar servijer SMB"
-#: ../../printerdrake.pm_.c:707
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:708
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Anv rannet"
-#: ../../printerdrake.pm_.c:711
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Strollad labour"
-#: ../../printerdrake.pm_.c:718
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:722
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6677,7 +6844,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6686,7 +6853,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6694,11 +6861,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "DibarzhoĂš ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6711,28 +6878,28 @@ msgstr ""
"anv ostiz TCP/IP !) kement hag anv ar steud moullaĂą evit ar voullerez\n"
"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
-#: ../../printerdrake.pm_.c:805
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servijer moullaĂą"
-#: ../../printerdrake.pm_.c:806
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Anv ar steud moullaĂą"
-#: ../../printerdrake.pm_.c:811
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:815
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "DibarzhoĂš ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6740,61 +6907,56 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Anv ar voullerez"
-#: ../../printerdrake.pm_.c:860
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "DibarzhoĂš ar voullerez"
-#: ../../printerdrake.pm_.c:889 ../../printerdrake.pm_.c:891
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
#, fuzzy
msgid "Printer Device URI"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:890
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:905
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1006
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Anv ar moullerez"
-#: ../../printerdrake.pm_.c:1008
-#, fuzzy
-msgid "Description"
-msgstr "Spisait dibarzhoĂš"
-
-#: ../../printerdrake.pm_.c:1009
+#: ../../printerdrake.pm_.c:1031
#, fuzzy
msgid "Location"
msgstr "TitouroĂš"
-#: ../../printerdrake.pm_.c:1023
+#: ../../printerdrake.pm_.c:1045
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1114
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:1115
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6809,28 +6971,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1120 ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Ha reizh eo ?"
-#: ../../printerdrake.pm_.c:1121 ../../printerdrake.pm_.c:1122
-#: ../../printerdrake.pm_.c:1125
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:1142
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../printerdrake.pm_.c:1143
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6839,18 +7001,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1146
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1222
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "KefluniaĂą ar modem"
-#: ../../printerdrake.pm_.c:1223
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6860,12 +7022,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1266 ../../printerdrake.pm_.c:1293
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "KefluniaĂą ar proksioĂš"
-#: ../../printerdrake.pm_.c:1267
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6873,7 +7035,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1294
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6886,7 +7048,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1510
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6896,34 +7058,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1519
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1523
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1528
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1567
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ha mennout a rit amprouiĂą moullaĂą skrid ?"
-#: ../../printerdrake.pm_.c:1584
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "AmprouiĂą ar porzhioĂš"
-#: ../../printerdrake.pm_.c:1585
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6931,45 +7093,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Ya, moullit an div bajenn arnod"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:1592
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Diorren"
-#: ../../printerdrake.pm_.c:1595
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "O voullaĂą pajenn(oĂš) skrid..."
-#: ../../printerdrake.pm_.c:1600
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "O voullaĂą pajenn(oĂš) skrid..."
-#: ../../printerdrake.pm_.c:1604
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "O voullaĂą pajenn(oĂš) skrid..."
-#: ../../printerdrake.pm_.c:1612 ../../printerdrake.pm_.c:1749
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "O voullaĂą pajenn(oĂš) skrid..."
-#: ../../printerdrake.pm_.c:1637
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6985,7 +7147,7 @@ msgstr ""
"\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:1641
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6995,16 +7157,16 @@ msgstr ""
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:1648
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1669 ../../printerdrake.pm_.c:2735
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7013,15 +7175,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1689
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:1708
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7030,49 +7192,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1695 ../../printerdrake.pm_.c:1734
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1698
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1705 ../../printerdrake.pm_.c:1715
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1710 ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1727
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7082,7 +7244,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1731
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7091,31 +7253,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1740 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:1747 ../../printerdrake.pm_.c:1748
-#: ../../printerdrake.pm_.c:2719 ../../standalone/drakbackup_.c:743
-#: ../../standalone/drakbackup_.c:2448 ../../standalone/drakfont_.c:580
-#: ../../standalone/drakfont_.c:792
-#, fuzzy
-msgid "Close"
-msgstr "Logodenn USB"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "O tizenaouiĂą ar rouedad"
-#: ../../printerdrake.pm_.c:1743 ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "O tizenaouiĂą ar rouedad"
-#: ../../printerdrake.pm_.c:1744 ../../printerdrake.pm_.c:1756
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "O tizenaouiĂą ar rouedad"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "O tizenaouiĂą ar rouedad"
-#: ../../printerdrake.pm_.c:1746
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Logodenn USB"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "DibarzhoĂš ar voullerez"
-#: ../../printerdrake.pm_.c:1768
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7123,37 +7296,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1775
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1797 ../../printerdrake.pm_.c:2224
-#: ../../printerdrake.pm_.c:2488
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1817 ../../printerdrake.pm_.c:1845
-#: ../../printerdrake.pm_.c:1880
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "KefluniaĂą ar proksioĂš"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7163,51 +7336,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1823
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1827
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1828
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1832
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1833 ../../printerdrake.pm_.c:1850
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1846
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7215,61 +7388,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1854
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1859
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:1915
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1881
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1935
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1898 ../../printerdrake.pm_.c:1969
-#: ../../printerdrake.pm_.c:1981
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "KefluniaĂą ar voullerez"
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
msgid "Starting network..."
msgstr "KefluniaĂą ur rouedad"
-#: ../../printerdrake.pm_.c:1933 ../../printerdrake.pm_.c:1937
-#: ../../printerdrake.pm_.c:1939
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "KefluniaĂą ur rouedad"
-#: ../../printerdrake.pm_.c:1934
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Skramm ket kefluniet"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7277,12 +7450,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1938
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "KefluniaĂą ar rouedad"
-#: ../../printerdrake.pm_.c:1971
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7292,34 +7465,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1972
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
msgid "Restarting printing system..."
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2020
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Uhel"
-#: ../../printerdrake.pm_.c:2020
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Ankeniet"
-#: ../../printerdrake.pm_.c:2021
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2022
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7334,11 +7507,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2054
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2055
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7352,69 +7525,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2078 ../../printerdrake.pm_.c:2116
-#: ../../printerdrake.pm_.c:2146 ../../printerdrake.pm_.c:2179
-#: ../../printerdrake.pm_.c:2284
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2150
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2208
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2209
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../printerdrake.pm_.c:2242
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "KefluniaĂą ar voullerez"
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
msgid "Installing Foomatic..."
msgstr "O staliaĂą ar pakad %s"
-#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2351
-#: ../../printerdrake.pm_.c:2736 ../../printerdrake.pm_.c:2806
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "DibarzhoĂš ar voullerez"
-#: ../../printerdrake.pm_.c:2321
+#: ../../printerdrake.pm_.c:2389
msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2338 ../../printerdrake.pm_.c:2893
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "KefluniaĂą ar voullerez"
-#: ../../printerdrake.pm_.c:2358
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Mennout a rit kefluniaĂą ur voullerez ?"
-#: ../../printerdrake.pm_.c:2370
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2418
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:2422
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7425,7 +7598,7 @@ msgstr ""
"Setu da heul ar steudadoĂš moullaĂą.\n"
"Gallout a rit ouzhpennaĂą lod pe gemmaĂą a re a zo."
-#: ../../printerdrake.pm_.c:2423
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7435,138 +7608,142 @@ msgstr ""
"Setu da heul ar steudadoĂš moullaĂą.\n"
"Gallout a rit ouzhpennaĂą lod pe gemmaĂą a re a zo."
-#: ../../printerdrake.pm_.c:2449
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2467
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "KefluniaĂą ur rouedad"
-#: ../../printerdrake.pm_.c:2472 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Boas"
-#: ../../printerdrake.pm_.c:2628 ../../printerdrake.pm_.c:2678
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Kuitaat"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2714
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "KefluniaĂą ar modem"
-#: ../../printerdrake.pm_.c:2716
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2720
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2780
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2728 ../../printerdrake.pm_.c:2799
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2729 ../../printerdrake.pm_.c:2800
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2824
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2833
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "O voullaĂą pajenn(oĂš) skrid..."
-#: ../../printerdrake.pm_.c:2743 ../../printerdrake.pm_.c:2835
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2837
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2789
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2813
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:2814
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2818 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2827 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2831
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2839
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2841
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
@@ -7651,24 +7828,62 @@ msgstr "An tremegerioĂš ne glot ket"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "N'hellan ket ouzhpennaĂą ur parzhadur da RAID md%d _furmadet_"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "N'hellan ket skrivaĂą e %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid sac'het"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid sac'het (raidtools a vank emichaĂąs ?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ket a-walc'h a parzhadurioĂš evit RAID live %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ret eo implijout al live-maĂą gant evezh. Ober a ra d'ho reizhiad bezaĂą\n"
+"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
+"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziĂą dre dremenger."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Gant al live surentez-maĂą e teu posupl implijout ar reizhiad-maĂą evel ur "
+"servijer.\n"
+"Uhel a-walc'h eo bremaĂą ar surentez evit implijout ar reizhiad evel ur "
+"servijer\n"
+"o tigemer kevreadennoĂš a-berzh arvaloĂš niverus."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Kefluniadur"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Parzhadur"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7723,7 +7938,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:414
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7791,7 +8006,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7868,7 +8083,7 @@ msgstr ""
"dro\n"
"war ardivinkoĂš anezho servijerien komenadoĂš a implij ar reizhiad RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:417
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -7969,7 +8184,7 @@ msgstr "dedennus"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:923
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Reizhiad/Diazez"
@@ -8093,6 +8308,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Anv ar gevreadenn"
@@ -8194,6 +8410,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "O staliaĂą pakadoĂš..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Adereit ouzh %s evit bevaat ar c'hemmoĂš mar plij"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8202,6 +8427,159 @@ msgstr ""
"N'hellaĂą ket lenn ho taolenn barzhaĂą, re vrein eo evidon :(\n"
"Klask a rin kenderc'hel en ur ziverkaĂą ar parzhadurioĂš siek"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "KefluniaĂą ar proksioĂš"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "StlennvonioĂš"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "StlennvonioĂš"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "KrouiĂą ur bladennig loc'haĂą"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "OuzhpennaĂą un arveriad"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Skoazell"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Dilemel"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Diuzit ar restr"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "OuzhpennaĂą un arveriad"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "KefluniaĂą IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "KefluniaĂą X"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Lakait ur bladennig el lenner %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Lenner pladennig hegerz ebet"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fazi!"
@@ -8255,40 +8633,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gourc'hemennoĂš!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "StaliaĂą"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "OuzhpennaĂą un arveriad"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "O furmadiĂą ar restr saveteiĂą %s"
-#: ../../standalone/drakbackup_.c:438
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:439
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8296,7 +8674,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:443
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8304,700 +8682,767 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:465
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:544 ../../standalone/drakbackup_.c:591
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:592 ../../standalone/drakbackup_.c:656
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:605
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:655
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:663
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-" FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:676
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fazi en ur lenn ar restr %s"
-#: ../../standalone/drakbackup_.c:717 ../../standalone/drakbackup_.c:728
-#: ../../standalone/drakbackup_.c:739 ../../standalone/drakfont_.c:788
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Diuzadenn strollad pakadoĂš"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:779
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:780
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:781
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:782
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:783
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:784
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:801
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:828
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:829 ../../standalone/drakbackup_.c:853
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:851 ../../standalone/drakfont_.c:828
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Lemel ar steudad"
-#: ../../standalone/drakbackup_.c:889
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:928
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:954
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:957
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:962
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakbackup_.c:978
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Tremenger ebet"
-#: ../../standalone/drakbackup_.c:1042 ../../standalone/drakbackup_.c:2038
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup_.c:1049 ../../standalone/drakbackup_.c:2046
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Diuzit lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup_.c:1075 ../../standalone/drakbackup_.c:2879
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078 ../../standalone/drakbackup_.c:2883
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
#
-#: ../../standalone/drakbackup_.c:1084 ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../standalone/drakbackup_.c:1090 ../../standalone/drakbackup_.c:2901
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1096
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:1102
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1143
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:1146
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1152 ../../standalone/drakbackup_.c:1193
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1185 ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Taolenn"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1585
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
+
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1287 ../../standalone/drakbackup_.c:1291
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Seurt"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1288 ../../standalone/drakbackup_.c:1292
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289 ../../standalone/drakbackup_.c:1293
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1290 ../../standalone/drakbackup_.c:1294
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1302
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:1307
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Implijout gwelladur ar bladenn galet ?"
-
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Rouedad/Diaouled"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1359
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1401
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Petra"
-#: ../../standalone/drakbackup_.c:1406
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Pelec'h"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Pa"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "DibarzhoÚ ar mollad :"
-#: ../../standalone/drakbackup_.c:1435 ../../standalone/drakbackup_.c:2791
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:1453
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:1455
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1466
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "KefluniaĂą reizhiadoĂš restroĂš"
-#: ../../standalone/drakbackup_.c:1532
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1535
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1618
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1622
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1624
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1625
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Trobarzhell al logodenn : %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1626
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Parzhadur"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1629
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1631
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1633
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1743
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1776
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1777
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1876
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:1894
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1912
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1962
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:1992
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:2073
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Dibabit seurt ho logodenn, mar plij."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Diuzit lugerezh ar voullerez"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Assevel adalek ar pladennig"
-#: ../../standalone/drakbackup_.c:2075
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2133
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2135
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "All"
-#: ../../standalone/drakbackup_.c:2141
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "StaliaĂą ar reizhiad"
-#: ../../standalone/drakbackup_.c:2142
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "AdaozaĂą adalek ar restr"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "AdaozaĂą adalek ar restr"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2150
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Neuziet"
-#: ../../standalone/drakbackup_.c:2256 ../../standalone/drakbackup_.c:2281
-#: ../../standalone/drakbackup_.c:2302 ../../standalone/drakbackup_.c:2323
-#: ../../standalone/drakbackup_.c:2341 ../../standalone/drakbackup_.c:2373
-#: ../../standalone/drakbackup_.c:2389 ../../standalone/drakbackup_.c:2409
-#: ../../standalone/drakbackup_.c:2428 ../../standalone/drakbackup_.c:2450
-#: ../../standalone/drakfont_.c:578
-msgid "Help"
-msgstr "Skoazell"
-
-#: ../../standalone/drakbackup_.c:2259 ../../standalone/drakbackup_.c:2286
-#: ../../standalone/drakbackup_.c:2305 ../../standalone/drakbackup_.c:2326
-#: ../../standalone/drakbackup_.c:2344 ../../standalone/drakbackup_.c:2392
-#: ../../standalone/drakbackup_.c:2412 ../../standalone/drakbackup_.c:2431
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Diaraog"
-#: ../../standalone/drakbackup_.c:2261 ../../standalone/drakbackup_.c:2328
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "EnrollaĂą"
-#: ../../standalone/drakbackup_.c:2307
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:2346 ../../standalone/drakbackup_.c:3023
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "AdaozaĂą adalek ar restr"
-#: ../../standalone/drakbackup_.c:2394 ../../standalone/drakbackup_.c:2414
-#: ../../standalone/drakbackup_.c:2435
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "A heul"
-#: ../../standalone/drakbackup_.c:2468
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2489
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Dibabit pakadoĂš da staliaĂą"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ar pakadoĂš a-heul a zo war-nes bezaĂą distaliet"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2563
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2584
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2628
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2649
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2729
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:2731
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Restr gwareziĂą siek"
-#: ../../standalone/drakbackup_.c:2735 ../../standalone/drakbackup_.c:2766
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2757
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "EnrollaĂą er restr"
-#: ../../standalone/drakbackup_.c:2831
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2907
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2913
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:3010
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:3018
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "KefluniaĂą reizhiadoĂš restroĂš"
-#: ../../standalone/drakbackup_.c:3043
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3094
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9029,7 +9474,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3124
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9038,7 +9483,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3132
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9079,7 +9524,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3171
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9107,13 +9552,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3197 ../../standalone/drakbackup_.c:3272
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
"Copyright (C) 2001 MandrakeSoft gant DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3199 ../../standalone/drakbackup_.c:3274
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -9130,7 +9580,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3213
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9170,7 +9620,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3251
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9181,7 +9631,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9194,7 +9644,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3288
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9238,6 +9688,336 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Staliadur %s a zo sac'het. Degouezhet eo ar fazi a heul :"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Logodenn"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "DibarzhoĂš ar voullerez lpd a-bell"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Anv rannet"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "TitouroĂš"
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Moullerez"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Kefluniadur ar rouedad"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "X11/ArloadoĂš"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakad"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Gortozit mar plij"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Dilezel ar staliadur"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Paour"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Gallout a rit dibab yezhoĂš all hag a vo hegerz goude staliaĂą"
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Kefluniadur ar rouedad"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "marc'haù sac'het : "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Anv an ostiz : "
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Seurt : "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Treuzell : "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "KefluniaĂą servijoĂš"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Kefluniadur"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Driver"
+msgstr "Servijer"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Meuziad LaĂąsaĂą"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "KefluniaĂą ur rouedad"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Skoazeller..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "AmprouiĂą ar c'hefluniadur"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Kefluniadur"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Bevaat"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Bevaat"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Treuzell"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
#: ../../standalone/drakfloppy_.c:64
msgid "usage: drakfloppy\n"
msgstr ""
@@ -9355,104 +10135,104 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:230
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:254
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s ket kavet"
-#: ../../standalone/drakfont_.c:262 ../../standalone/drakfont_.c:304
-#: ../../standalone/drakfont_.c:353 ../../standalone/drakfont_.c:413
-#: ../../standalone/drakfont_.c:422 ../../standalone/drakfont_.c:448
-#: ../../standalone/drakfont_.c:460 ../../standalone/drakfont_.c:473
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Graet"
-#: ../../standalone/drakfont_.c:266
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:302
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:328
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:351
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "FurmadiĂą ar bladennig"
-#: ../../standalone/drakfont_.c:354
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "O prientiĂą ar staliadur"
-#: ../../standalone/drakfont_.c:358
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:362
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:369 ../../standalone/drakfont_.c:385
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:373 ../../standalone/drakfont_.c:389
-#: ../../standalone/drakfont_.c:409
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:378 ../../standalone/drakfont_.c:393
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:400
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:404
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:458 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:470
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "strishaat"
-#: ../../standalone/drakfont_.c:477 ../../standalone/drakfont_.c:761
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9461,124 +10241,119 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:551
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "FurmadiĂą parzhadurioĂš"
-#: ../../standalone/drakfont_.c:566
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "O tistaliaĂą ar RPMoĂš"
-#: ../../standalone/drakfont_.c:571
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Kefluniadur"
-
-#: ../../standalone/drakfont_.c:573
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Poent marc'haĂą"
-#: ../../standalone/drakfont_.c:740
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Dibabit ar parzhadur a vennit furmadiĂą"
-#: ../../standalone/drakfont_.c:744
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:748
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Burev"
-#: ../../standalone/drakfont_.c:752
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr ""
-#: ../../standalone/drakfont_.c:756
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Moullerez"
-#: ../../standalone/drakfont_.c:793
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:829
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "StaliaĂą ar reizhiad"
-#: ../../standalone/drakfont_.c:859
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:896
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Diuzit ar restr"
-#: ../../standalone/drakfont_.c:898
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-#: ../../standalone/drakfont_.c:915 ../../standalone/drakfont_.c:935
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:916
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:917
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:918
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "StaliaĂą"
-#: ../../standalone/drakfont_.c:936
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:937
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Dilezel ar staliadur"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
#, fuzzy
msgid "Internet Connection Sharing"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:123
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9586,35 +10361,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:140
#, fuzzy
msgid "disable"
msgstr "Taolenn"
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
#, fuzzy
msgid "reconfigure"
msgstr "KefluniaĂą X"
-#: ../../standalone/drakgw_.c:142
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "O tinoiĂą trobarzhelloĂš..."
-#: ../../standalone/drakgw_.c:150
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9622,21 +10397,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:165
#, fuzzy
msgid "enable"
msgstr "Taolenn"
-#: ../../standalone/drakgw_.c:171
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:176
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9646,31 +10421,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "dedennus"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9680,18 +10455,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:249
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Skramm ket kefluniet"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9701,17 +10476,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Kefluniadur goude staliaĂą"
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "KefluniaĂą ar modem"
-#: ../../standalone/drakgw_.c:276
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9722,7 +10497,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:288
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9734,79 +10509,79 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ar servijer SMB"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:302
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:313
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:321
+#: ../../standalone/drakgw_.c:322
#, fuzzy
msgid "Firewalling configuration detected!"
msgstr "o lenn ar c'hefluniadur"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "KefluniaĂą IDE"
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:366
+#: ../../standalone/drakgw_.c:367
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "O staliaĂą ar pakad %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9816,231 +10591,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "marc'haù sac'het : "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Anv an ostiz : "
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Seurt : "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Treuzell : "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "KefluniaĂą servijoĂš"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "Servijer"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Meuziad LaĂąsaĂą"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Skoazeller..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "AmprouiĂą ar c'hefluniadur"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Bevaat"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Bevaat"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Treuzell"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:51
-msgid "Setting security level"
-msgstr "O termeniĂą al live surentez"
-
-#: ../../standalone/draksec_.c:57
-#, fuzzy
-msgid "Setting security user"
-msgstr "O termeniĂą al live surentez"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10128,50 +10678,50 @@ msgstr ""
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:113
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:116
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:120
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:128
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:130
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Ur fazi a zo bet en ur staliaù ar pakadoÚ :"
-#: ../../standalone/drakxtv_.c:132
+#: ../../standalone/drakxtv_.c:131
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:134
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:136
+#: ../../standalone/drakxtv_.c:135
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:148
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:149
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10220,7 +10770,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:516
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10271,10 +10821,6 @@ msgstr "Parzhadur"
msgid "/Options/Test"
msgstr "Parzhadur"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr ""
@@ -10350,76 +10896,99 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "O prientiĂą ar staliadur"
-#: ../../standalone/logdrake_.c:407
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "KefluniaĂą ar proksioĂš"
-#: ../../standalone/logdrake_.c:408
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:416
-msgid "proftpd"
-msgstr "proftpd"
+#: ../../standalone/logdrake_.c:417
+msgid "Apache World Wide Web Server"
+msgstr ""
+
+#: ../../standalone/logdrake_.c:418
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Anv ar domani"
#: ../../standalone/logdrake_.c:419
-msgid "sshd"
-msgstr "sshd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Servijer NIS"
#: ../../standalone/logdrake_.c:420
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "StlennvonioĂš"
#: ../../standalone/logdrake_.c:421
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "trobarzhell"
#: ../../standalone/logdrake_.c:424
#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servijer moullaĂą"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "dedennus"
-#: ../../standalone/logdrake_.c:425
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:435
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "O furmadiĂą"
-#: ../../standalone/logdrake_.c:436
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:449
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "KefluniaĂą ar proksioĂš"
-#: ../../standalone/logdrake_.c:450
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:493
+#: ../../standalone/logdrake_.c:503
#, fuzzy
msgid "Save as.."
msgstr "Meuziad LaĂąsaĂą"
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb kavet ebet\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Kendarvan an trede nozelenn ?"
@@ -10476,6 +11045,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10982,120 +11563,207 @@ msgstr "Liesvedia"
msgid "Scientific Workstation"
msgstr "TitouroĂš"
-#~ msgid "Complete (%dMB)"
-#~ msgstr "Boas (%dMo)"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Anavezoud kartenn c'hrafek : %s\n"
-#~ msgid "Minimum (%dMB)"
-#~ msgstr "BihanaĂą (%d Mo)"
+#~ msgid "Choose options for server"
+#~ msgstr "Dibabit dibarzhoĂš ar servijer"
-#~ msgid "Recommended (%dMB)"
-#~ msgstr "Erbedet (%dMo)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Skramm ket kefluniet"
-#~ msgid "CDROM / DVDROM"
-#~ msgstr "CDROM / DVDROM"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-#, fuzzy
-#~ msgid "Utilities"
-#~ msgstr "MavegoĂš/Skrid"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "SpisterioĂš ket dibabet c'hoazh"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Marc'haĂą"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "klaskit kemmaĂą arventennoĂš 'zo"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "An error occurred:"
+#~ msgstr "C'hoarvezet eo ur fazi :"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Kuitaat e %d eilenn"
-#~ msgid "None"
-#~ msgstr "Ebet"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ha reizh eo ar c'hefluniadur ?"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Dibabit ar ment nevez"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "C'hoarvezet eo ur fazi, klaskit kemmaĂą arventennoĂš 'zo"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "DibarzhoĂš ar voullerez lpd a-bell"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servijer XFree86 : %s"
-#~ msgid "You may now provide options to module %s."
-#~ msgstr "BremaĂą e c'hellit pourvezaĂą e zibarzhoĂš d'ar mollad %s"
+#~ msgid "Show all"
+#~ msgstr "Diskouez pep tra"
-#~ msgid "mount failed"
-#~ msgstr "marc'haĂą sac'het"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "O prientiĂą kefluniadur X-Window"
-#~ msgid "Low"
-#~ msgstr "Izel"
+#~ msgid "What do you want to do?"
+#~ msgstr "Petra a vennit ober ? "
-#~ msgid "Medium"
-#~ msgstr "Etre"
+#~ msgid "Change Monitor"
+#~ msgstr "KemmaĂą ar skramm"
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Nebeut a wellaenoĂš evit al live surentez-maĂą, an hini pouezusaĂą eo bezaĂą\n"
-#~ "muioc'h a evezhiadennoĂš hag a wiriadennoĂš surentez."
+#~ msgid "Change Graphics card"
+#~ msgstr "KemmaĂą ar gartenn c'hrafek"
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Liesvedia"
+#~ msgid "Change Server options"
+#~ msgstr "KemmaĂą dibarzhoĂš ar servijer"
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Mailh"
+#~ msgid "Change Resolution"
+#~ msgstr "KemmaĂą ar spister"
+
+#~ msgid "Show information"
+#~ msgstr "Diskouez titouroĂš"
+
+#~ msgid "Test again"
+#~ msgstr "AmprouiĂą adarre"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "O termeniĂą al live surentez"
+
+#~ msgid "Graphics card"
+#~ msgstr "Kartenn c'hrafek"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Diuzit ur gartenn c'hrafek"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Dibabit ur sturier X"
+
+#~ msgid "X driver"
+#~ msgstr "Sturier X"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA standard, 640x480 da 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Gour-VGA, 800x600 da 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Gour-VGA, 1024x768 da 87 Hz pebeilet, 800x600 da 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Gour-VGA astennet, 800x600 da 60 Hz, 640x480 da 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "G-VGA nann-pebeilet, 1024x768 da 60 Hz, 800x600 da 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ment hollek ar strolladoĂš hoc'h eus diuzet a zo war-dro %d Mo.\n"
-#, fuzzy
#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "BremaĂą e c'hellit diuz ho takad-eur diouzh al lec'h ma chomit ennaĂą.\n"
+#~ "Ma vennit staliaĂą nebeutoc'h eget ar ment-se,\n"
+#~ "diuzit an dregantad a bakadoĂš a vennit staliaĂą.\n"
+#~ "\n"
+#~ "Un dregantad izel a stalio hepken ar pakadoĂš pouezusaĂą;\n"
+#~ "un dregantad a 100%% a stalio an holl bakadoĂš diuzet."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "N'eus egor war ho pladenn nemet evit %d%% eus ar pakadoĂš-se.\n"
#~ "\n"
-#~ "Linux a vera an eur e GMT pe \"Greenwich Mean Time\" hag e amdreiĂą a ra\n"
-#~ "en eur lec'hel hervez an takad-eur hoc'h eus diuzet."
+#~ "Ma vennit staliaĂą nebeutoc'h eget se,\n"
+#~ "diuzit an dregantad a bakadoĂš a vennit staliaĂą.\n"
+#~ "Un dregantad izel a stalio hepken ar pakadoĂš pouezusaĂą;\n"
+#~ "un dregantad a %d%% a stalio kement a bakadoĂš ma 'z eus tu."
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Tu vo deoc'h o dibab spisoc'h el lankad a zeu."
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Dregantad a bakadoĂš da staliaĂą"
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "KefluniaĂą ur rouedad"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Dibabit al live surentez"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Boas (%dMo)"
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "BihanaĂą (%d Mo)"
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "TitouroĂš"
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Erbedet (%dMo)"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "TitouroĂš"
+#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Anv arveriad"
+#~ msgid "None"
+#~ msgstr "Ebet"
+
+#~ msgid "You may now provide options to module %s."
+#~ msgstr "BremaĂą e c'hellit pourvezaĂą e zibarzhoĂš d'ar mollad %s"
+
+#~ msgid "mount failed"
+#~ msgstr "marc'haĂą sac'het"
+
+#~ msgid "Low"
+#~ msgstr "Izel"
+
+#~ msgid "Medium"
+#~ msgstr "Etre"
-#, fuzzy
#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
+#~ "Few improvements for this security level, the main one is that there are\n"
+#~ "more security warnings and checks."
#~ msgstr ""
-#~ "Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijaĂą\n"
-#~ "restroĂš HTML ha CGI."
+#~ "Nebeut a wellaenoĂš evit al live surentez-maĂą, an hini pouezusaĂą eo bezaĂą\n"
+#~ "muioc'h a evezhiadennoĂš hag a wiriadennoĂš surentez."
#~ msgid ""
#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
@@ -11104,12 +11772,6 @@ msgstr "TitouroĂš"
#~ "named (BIND) a zo ur Servijer AnvioĂš Domani (DNS) a zo implijet evit\n"
#~ "amdreiĂą anvioĂš ostiz e chomlec'hioĂš IP."
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Dibabit seurt ho logodenn, mar plij."
-
#~ msgid "Active"
#~ msgstr "Bevaat"
@@ -11188,143 +11850,6 @@ msgstr "TitouroĂš"
#~ " Hogen mar plij, NA ZIBABIT KET SE NEMET MA OUZIT PEZH EMAOC'H OC'H "
#~ "OBER !"
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "An dibaboĂš liessek evit implij ho ardivink (en ur c'houlakaat neuze hoc'h "
-#~ "eus\n"
-#~ "dibabet pe \"Neuziet\" pe \"Mailh\" da renkad staliaĂą) a zo evel a-"
-#~ "heul :\n"
-#~ "\n"
-#~ " - Boas : dibabit se ma 'z oc'h mennet da implijout ho ardivink dreist-"
-#~ "holl\n"
-#~ " evit un implij pemdeziek (labour burev, aozerezh grafikoĂš hag all). "
-#~ "Na\n"
-#~ " c'hortozit ket e vije staliaet nep kempuner, maveg diorren h.a.\n"
-#~ "\n"
-#~ " - Diorren : evel m'hen diskouez an anv. Dibabit se ma 'z oc'h mennet "
-#~ "da\n"
-#~ " implijout ho ardivink dreist-holl evit diorren meziantoĂš. Neuze ho po "
-#~ "un\n"
-#~ " heuliad klok a meziantoĂš staliet a-benn kempunaĂą, dizraenaĂą ha "
-#~ "furmadiĂą\n"
-#~ " kod tarzh, pe grouiĂą pakadoĂš meziantel.\n"
-#~ "\n"
-#~ " - Servijer : dibabit se m'eo gouestlet an ardivink a stalhit Mandrake "
-#~ "Linux\n"
-#~ " warnaĂą da vezaĂą impliet evel servijer. ur servijer restroĂš (NFS pe "
-#~ "SMB),\n"
-#~ " ur servijer moullaĂą (moullaĂą diouzh komenad Unix lp (line printer) pe "
-#~ "zoare\n"
-#~ " Windows SMB), ur servijer dilesadur (NIS), ur servijer stlennvon hag "
-#~ "all.\n"
-#~ " Da heul, na c'hortozit staliadur tamm kinkladur ebet (KDE, "
-#~ "GNOME...).\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Gallout a rit bremaĂą diuz ar strollad pakadoĂš a vennit\n"
-#~ "staliaĂą pe vremanaat.\n"
-#~ "\n"
-#~ "DrakX a glasko neuze hag-eĂą hoc'h eus egor a-walc'h evit staliaĂą an holl "
-#~ "anezho.\n"
-#~ "Ma n'hoc'h eus ket, e kemenno deoc'h. Ma vennit kenderc'hel evelato, e "
-#~ "seveno staliadur\n"
-#~ "an holl strolladoĂš diuzet hogen e laosko pakadoĂš 'zo dezho nebeutoc'h a\n"
-#~ "dalvoudegezh. E traoĂą ar roll e c'hellit diuz an dibarzh\n"
-#~ "\"Diuz pakadoĂš unan hag unan\" ; en degouezh-se e vo ret deoc'h furchal\n"
-#~ "a-dreuz tremen 1000 pakad..."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Gallout a rit bremaĂą skrivaĂą dibarzhoĂš sifrennaĂą. Ma n'oc'h ket sur "
-#~ "petra\n"
-#~ "skrivaĂą, an titouroĂš reizh ho po digant ho PMG."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Skrivit :\n"
-#~ "\n"
-#~ " - Chomlec'h IP : m'eo dianav deoc'h, goulennit digant merour ho "
-#~ "rouedad.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Rouedmaskl : \"255.255.255.0\" a zo peurvuiaù un dibab mat. M'hoc'h "
-#~ "eus\n"
-#~ "douetaĂąs, goulennit digant merour ho rouedad.\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP emgefreek : Ma ra ho rouedad gant ar c'homenad bootp pe dhcp, "
-#~ "diuzit \n"
-#~ "an dibarzh-se. Ma vez diuzet, n'eus ezhomm talvoud ebet er \"Chomlec'h IP"
-#~ "\".\n"
-#~ "M'hoc'h eus douetaĂąs, goulennit digant merour ho rouedad.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ma implij ho rouedad NIS, diuzit \"Implijout NIS\". Ma ne ouzit ket, "
-#~ "goulennit\n"
-#~ "digant merour ho rouedad."
-
#~ msgid ""
#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
#~ "correct information can be obtained from your ISP."
@@ -11341,26 +11866,6 @@ msgstr "TitouroĂš"
#~ "hag\n"
#~ "e rankit implijout proksioĂš, goulennit digant merour ho rouedad pe ho PMG."
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "StaliaĂą pakadoĂš rinegouriezh a c'hellit m'eo bet kefluniet reizh ho\n"
-#~ "kevreadenn ouzh ar Genrouedad. Dibabit da gentaĂą ur melezour a vennit "
-#~ "ezkargaĂą\n"
-#~ "pakadoĂš diwarnaĂą ha da c'houde diuzit ar pakadoĂš da staliaĂą.\n"
-#~ "\n"
-#~ "Taolit evezh e rankit diuz ar melezour hag ar rinegouriezh hervez al\n"
-#~ "lezennoĂš o ren du-se."
-
#~ msgid ""
#~ "You may now create one or more \"regular\" user account(s), as\n"
#~ "opposed to the \"privileged\" user account, root. You can create\n"
@@ -11406,92 +11911,6 @@ msgstr "TitouroĂš"
#~ "gont arveriad ho po krouet amaĂą, hag ereaĂą evel root evit kefridioĂš a\n"
#~ "vererezh ha trezerc'hel hepken."
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Setu dibaboÚ pennaù LILO ha grub :\n"
-#~ " - Trobarzhell loc'haù : a dermen anv an drobarzhell (da sk. parzhadur\n"
-#~ "ur bladenn galet) a zo enni ar rann loc'haĂą. Nemet ma ouifec'h a-zevri\n"
-#~ "ez eo disheĂąvel, dibabit \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Gedvezh a-raok loc'haù ar skeudenn dre ziouer : a spisa an niver a\n"
-#~ "zekvet eilennoĂš a rankfe gortoz ar c'harger loc'haĂą kent loc'haĂą ar "
-#~ "skeudenn\n"
-#~ "gentaĂą. Talvoudus eo war reizhiadoĂš a loc'h diouzhtu adalek ar bladenn "
-#~ "galet\n"
-#~ "goude bezaĂą enaouet ar stokellaoueg. Ne gortoz ket ar c'harger loc'haĂą "
-#~ "m'eo\n"
-#~ "disoĂąjet \"gedvezh\" pe dermenet da mann.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mod video : a spisa ar mod skrid VGA a rankfe bezaù diuzet pa "
-#~ "loc'her.\n"
-#~ "An talvoudoÚ a heul a zo hegerz :\n"
-#~ " * boas : a ziuz ar mod skrid 80x25 boas.\n"
-#~ " * <niver> : a implij ar mod skrid a zegouezh."
-
-#, fuzzy
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "BremaĂą eo poent kefluniaĂą ar reizhiad X Window, a zo kraonienn\n"
-#~ "EGA (Etrefas Grafikel Arveriad) Linux. Evit ar c'hefridi-se, ret eo\n"
-#~ "deoc'h kefluniaĂą ho kartenn grafek hag ho skramm. Emgefreek eo ar bras\n"
-#~ "eus al lankadoĂš-se, evelato, neuze gwiriaĂą pezh a zo bet graet hag\n"
-#~ "asantiĂą d'ar c'hefluniadur a zlefe bezaĂą ho labour :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Pa 'z eo graet ar c'hefluniaĂą, laĂąset e vo X (nemet ma c'houlennit\n"
-#~ "digant DrakX chom hep hen ober) e seurt ma c'hellit gwiriaĂą ha\n"
-#~ "sellet ha plijet oc'h gant an dibarzhoĂš. Ma n'oc'h ket, e c'hellit\n"
-#~ "mont war gil hag o c'hemmaĂą, ken lies gwech ha ma karot."
-
#~ msgid ""
#~ "If something is wrong in X configuration, use these options to correctly\n"
#~ "configure the X Window System."
@@ -11630,9 +12049,6 @@ msgstr "TitouroĂš"
#~ msgid "Configure LILO/GRUB"
#~ msgstr "KefluniaĂą LILO/GRUB"
-#~ msgid "Create a boot floppy"
-#~ msgstr "KrouiĂą ur bladennig loc'haĂą"
-
#~ msgid "Choice"
#~ msgstr "Dibab"
@@ -11693,9 +12109,6 @@ msgstr "TitouroĂš"
#~ msgid "Use MD5 passwords"
#~ msgstr "Implijout tremegerioĂš MD5"
-#~ msgid "Package"
-#~ msgstr "Pakad"
-
#~ msgid "Tree"
#~ msgstr "Gwezenn"
@@ -12235,9 +12648,6 @@ msgstr "TitouroĂš"
#~ msgid "X11/Amusements"
#~ msgstr "X11/Dudi"
-#~ msgid "X11/Applications"
-#~ msgstr "X11/ArloadoĂš"
-
#~ msgid "X11/Applications/Internet"
#~ msgstr "X11/ArloadoĂš/Kenrouedad"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index c406f3c6f..4ee25be49 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -1,37 +1,67 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Vedran Ljubovic <vljubovic@smartnet.ba>, 2001
+# Copyright (C) 2001. Free Software Foundation, Inc.
+# Amila Akagić <bono@lugbih.org>, 06. 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-28 20:49GMT\n"
-"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
-"Language-Team: Bosnian <prijevodi@lugbih.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-21 17:14GMT\n"
+"Last-Translator: Amila Akagić <bono@lugbih.org>\n"
+"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
+"X-Generator: KBabel 0.9.1\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "KonfiguriĹĄi sve glave odvojeno"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama ekstenziju"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "KonfiguriĹĄi samo karticu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ili viĹĄe"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Izaberite X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Multi-head konfiguracija"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,41 +69,44 @@ msgstr ""
"VaĹĄ sistem podrĹžava konfiguraciju viĹĄe glava.\n"
"Šta želite učiniti?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafička karta"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Izaberite veličinu memorije vaše grafičke karte"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Izaberite grafičku kartu"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfiguracija"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Izaberite X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Koju konfiguraciju XFree Ĺželite imati?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "KonfiguriĹĄi sve glave odvojeno"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Izaberite X drajver"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Koristi Xinerama ekstenziju"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X drajver"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "KonfiguriĹĄi samo karticu \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Koju konfiguraciju XFree Ĺželite imati?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,32 +115,17 @@ msgstr ""
"VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje ali samo sa\n"
"XFree %s. VaĹĄu karticu podrĹžava XFree %s koji moĹže imati bolju podrĹĄku za 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje sa XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje sa XFree %s,\n"
-"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -118,31 +136,58 @@ msgstr ""
"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR.\n"
"VaĹĄu karticu podrĹžava XFree %s koji moĹže imati bolju podrĹĄku za 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje sa XFree %s,\n"
+"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfiguracija"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Izaberite veličinu memorije vaše grafičke karte"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Izaberite opcije za server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"ZadrĹžati izmjene?\n"
+"Trenutna konfiguracija je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Izaberite monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Ručno izaberi"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "OpĹĄti"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "PoniĹĄti"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -163,510 +208,325 @@ msgstr ""
"raspon izvan mogućnosti vašeg monitora: time možete oštetiti monitor.\n"
" Ako niste sigurni, izaberite najmanju opciju."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Brzina horizontalnog osvjeĹžavanja"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Brzina vertiaklnog osvjeĹžavanja"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor nije konfigurisan"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafička karta još uvijek nije konfigurisana"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezolucije joĹĄ nisu odabrane"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Želite li testirati konfiguraciju?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje ove grafičke karte može zalediti računar"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Testiranje konfiguracije"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 boja (8 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probajte izmjeniti neke parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 hiljada boja (15 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "DoĹĄlo je do greĹĄke"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 hiljada boja (16 bita)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "NapuĹĄtam za %d sekundi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliona boja (24 bita)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravna vrijednost?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milijarde boja (32 bita)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "DoĹĄlo je do greĹĄke, probajte izmjeniti neke parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolucije"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Izaberite rezoluciju i dubinu boja"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafička karta: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "JoĹĄ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Odustani"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "PrikaĹži sve"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Želite li testirati konfiguraciju?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolucije"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Testiranje konfiguracije"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Raspored tastature: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tip miĹĄa: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Uređaj miša: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HorizSync: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafička karta: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikacija grafičke karte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafička memorija: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dubina boja: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolucija: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 drajver: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripremam X-Window konfiguraciju"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Šta želite učiniti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Izmjena Monitora"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Izmjena Grafičke kartice"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Izmjena Server opcija"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Izmjena Rezolucije"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "PrikaĹži informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testiraj ponovo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Izlaz"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ZadrĹžati izmjene?\n"
-"Trenutna konfiguracija je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X u startanju"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mogu podesiti vaš računar da automatski pokrene X nakon boota.\n"
"Želite li da se X pokrene kada bootate?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molimo izvrĹĄite logout i zatim koristitite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 hiljada boja (15 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 hiljada boja (16 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliona boja (24 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde boja (32 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ili viĹĄe"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardna VGA, 640x480 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Kompatibilna, 1024x768 na 87 Hz sa preplitanjem (bez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 na 87 Hz sa preplitanjem, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor koji može postići 1600x1200 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor koji može postići 1600x1200 na 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvi sektor boot particije"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO instalacija"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Gdje Ĺželite smjestiti bootloader?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub instalacija"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO sa grafičkim menijem"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Bootanje iz DOS/Windowsa (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot uređaj"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne radi na starim BIOSima)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video mod"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Čekanje prije bootanja default preslike"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Ĺ ifra"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Ĺ ifra (ponovo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Ograniči opcije komandne linije"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ograniči"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Čisti /tmp prilikom svakog boota"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veličina RAMa ako je potrebno (pronađeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Omogući više profila"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Navedite veličinu rama u MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Molimo pokuĹĄajte ponovo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Ĺ ifre se ne poklapaju"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init Poruka"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Otvori čekanje firmware-a"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Kernel Boot Timeout"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Omogući boot sa CDa?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Omogući boot sa OFa?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Default OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -675,83 +535,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Navedene su razne stavke.\n"
"Možete dodati nove ili promjeniti postojeće."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gotovo"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Izmjeni"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu stavke Ĺželite dodati?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Ostali OSi (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Preslika"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Čitaj-piši"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Labela"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Default"
@@ -783,53 +643,77 @@ msgstr "Morate navesti root particiju"
msgid "This label is already used"
msgstr "Ova labela je već u upotrebi"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronađeno %s %s interfejsa"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Imate li neki drugi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Pogledaj hardware info"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram drajver za %s karticu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, 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 ""
+"Sada moĹžete navesti opcije za modul %s.\n"
+"Obratite paĹžnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sada moĹžete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
+"ime2=vrijednost2 ...''.\n"
+"Na primjer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcije modula"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s drajver ću pokušati?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -846,39 +730,15 @@ msgstr ""
"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti računar,\n"
"ali ne bi trebalo izazvati nikakvu ĹĄtetu."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Ispitivanje"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Navedi opcije"
-#: ../../any.pm_.c:725
-#, 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 ""
-"Sada moĹžete navesti opcije za modul %s.\n"
-"Obratite paĹžnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sada moĹžete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
-"ime2=vrijednost2 ...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcije modula"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -887,49 +747,54 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Želite li probati opet sa drugim parametrima?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ova ĹĄifra je previĹĄe jednostavna"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Molimo navedite korisničko ime"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ovo korisničko ime je već dodano"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -938,32 +803,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -971,87 +836,67 @@ msgstr ""
"Mogu podesiti vaš računar da automatski prijavi jednog korisnika.\n"
"Želite li koristiti ovu mogućnost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 "Možete izabrati i druge jezike koji će biti dostupni nakon instalacije"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Svi"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ručno izaberi"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba biti instaliran. Da li ga Ĺželite instalirati?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Možete eksportovati koristeći NFS ili Sambu. Koji želite"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Odustani"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1059,31 +904,31 @@ msgstr ""
"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "DobrodoĹĄli u Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "LoĹĄ"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "ViĹĄi"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoičan"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1093,7 +938,7 @@ msgstr ""
"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
"druge ili na Internet. Nema pristupa ĹĄifrom."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1101,7 +946,7 @@ msgstr ""
"Šifra je sada aktivirana, ali korištenje za mrežni računar još nije "
"preporučeno."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1109,7 +954,7 @@ msgstr ""
"Ovo je standardna sigurnost koja je preporučena za računar koji će biti "
"koriĹĄten za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1117,13 +962,14 @@ msgstr ""
"Već postoje određena ograničenja, a više automatskih provjera se pokreće "
"svaku noć."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
"server.\n"
@@ -1132,34 +978,34 @@ msgstr ""
"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
"Internetu, moĹžda je bolje da izaberete niĹži nivo."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
"Sigurnosne osobine na maksimumu."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izaberite nivo sigurnosti"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Nivo sigurnosti"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za servere"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1176,52 +1022,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro doĹĄli u GRUB izbornik operativnog sistema!"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Koristite tipke %c i %c za izbor jedne od stavki."
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandi prije bootanja, ili 'c' za komandnu liniju."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne moĹžete instalirati bootloader na %s particiju\n"
@@ -1234,17 +1080,21 @@ msgstr "pomoć još nije implementirana.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>I"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1277,14 +1127,14 @@ msgstr "Yaboot mod"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Trenutno koristite %s kao boot manager.\n"
"Kliknite na Konfiguriši kako bi se pokrenuo čarobnjak za podešavanje."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "KonfiguriĹĄi"
@@ -1294,7 +1144,7 @@ msgid "System mode"
msgstr "Sistem mod"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sistem na startu"
#: ../../bootlook.pm_.c:148
@@ -1305,16 +1155,18 @@ msgstr "Ne, ne Ĺželim da se autologiram"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, Ĺželim da se autologiram sa ovim (korisnik, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "U redu"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1360,7 +1212,7 @@ msgstr "Ne mogu napraviti screenshot prije particioniranja"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francuska"
@@ -1368,7 +1220,7 @@ msgstr "Francuska"
msgid "Costa Rica"
msgstr "Kostarika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgija"
@@ -1392,11 +1244,12 @@ msgstr "NorveĹĄka"
msgid "Sweden"
msgstr "Ĺ vedska"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemska"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italija"
@@ -1404,7 +1257,7 @@ msgstr "Italija"
msgid "Austria"
msgstr "Austrija"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "SAD"
@@ -1412,8 +1265,8 @@ msgstr "SAD"
msgid "Please make a backup of your data first"
msgstr "Molimo najprije napravite backup vaĹĄih podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Pročitajte pažljivo!"
@@ -1427,11 +1280,12 @@ msgstr ""
"(2048 sektora je dovoljno)\n"
"na početku diska"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "GreĹĄka"
@@ -1439,11 +1293,11 @@ msgstr "GreĹĄka"
msgid "Wizard"
msgstr "Čarobnjak"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Izaberi akciju"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1455,77 +1309,77 @@ msgstr ""
"Predlažem da najprije promjenite veličinu te particije\n"
"(kliknite na nju, zatim na \"Promjeni veličinu\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Molimo kliknite na particiju"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalji"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ostalo"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipovi file sistema:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Kreiraj"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Koristite ``%s'' umjesto toga"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "ObriĹĄi"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Najprije koristite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1533,67 +1387,72 @@ msgstr ""
"Nakon promjene tipa particije %s, svi podaci na ovoj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Izaberi particiju"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Izaberi drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Prebaci u ekspertni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "PoniĹĄti"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Svejedno nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Izlaz bez spaĹĄavanja"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Izlazite bez pisanja tabele particija?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Želite li spasiti izmjene /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Auto alokacija"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "ObriĹĄi sve"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "JoĹĄ"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informacije o hard disku"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Sve primarne particije su u upotrebi"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ne mogu dodati viĹĄe particija"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1601,31 +1460,31 @@ msgstr ""
"Da biste imali joĹĄ particija, molimo pobriĹĄite jednu kako bi se mogla "
"kreirati extended particija"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Snimi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Vrati tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Spasi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ponovo učitaj tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatsko montiranje izmjenjivog medija"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Izaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1633,11 +1492,11 @@ msgstr ""
"Backup tabela particija nema istu veličinu\n"
"Ipak nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1645,122 +1504,129 @@ msgstr ""
"Ubacite disketu u jedinicu\n"
"Svi podaci na toj disketi će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "PokuĹĄavam da spasim tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Tačka montiranja"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Promjeni veličinu"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "PremjeĹĄtanje"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Dodaj na RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Dodaj na LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Ukloni sa RAIDa"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Ukloni sa LVMa"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificiraj RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Napravi novu particiju"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Početni sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tip datotečnog sistema: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preference: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Izmjena tipa particije"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sistem želite?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Prebacujem sa ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje Ĺželite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje želite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1769,126 +1635,131 @@ msgstr ""
"loopback.\n"
"Najprije uklonite loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice FAT filesistema"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ovoj particiji ne možete mijenjati veličinu"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Svi podaci na toj particiji bi trebali biti backupovani"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon promjene veličine particije %s, svi podaci na njoj će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Izaberite novu veličinu"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk je Ĺželite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na koji sektor je Ĺželite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "PremjeĹĄtam"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "PremjeĹĄtam particiju..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeći RAID na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeći LVM na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Naziv LVMa?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne moĹže koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Naziv loopback datoteke: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dajte naziv datoteke"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Datoteku već koristi drugi loopback, izaberite drugo ime"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Želite li je koristiti?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Razni"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "uređaj"
+msgstr "Uređaj"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivo"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "veličina chunka"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Koju vrstu particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paket %s treba biti instaliran. Da li ga Ĺželite instalirati?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1900,7 +1771,7 @@ msgstr ""
"Ili ćete koristiti LILO i stvar neće raditi, ili nećete koristiti LILO pa "
"vam ne treba ni /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1912,7 +1783,7 @@ msgstr ""
"1024og cilindra hard diska, tako da nemate /boot particiju.\n"
"Ako planirate koristiti LILO boot manager, pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1922,132 +1793,132 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Biće potrebno da rebootate prije nego što izmjene mogu stupiti na snagu"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Sakrij datoteke"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Prebaci datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Direktorij %s već sadrži neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "PremjeĹĄtam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je od sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Uređaj: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nije formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montirana\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2056,7 +1927,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2064,27 +1935,27 @@ msgstr ""
"Particija koja se boota po defaultu\n"
" (za MS-DOS boot, ne za lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Veličina chunka %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Naziv loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2096,7 +1967,7 @@ msgstr ""
"particija Driver particija, vjerovatno\n"
"biste je trebali ostaviti na miru.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2108,63 +1979,63 @@ msgstr ""
"particija je za\n"
"dvojni boot vaĹĄeg sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip tabele particija: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "na busu %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaš ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ova ĹĄifra je previĹĄe jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Ĺ ifre se ne poklapaju"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Ĺ ifra"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Ĺ ifra (joĹĄ jednom)"
@@ -2173,35 +2044,65 @@ msgid "Change type"
msgstr "Promjeni tip"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Molimo kliknite na medij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentikacija"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "TraĹži servere"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ne znam kako formatirati %s tipa %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck nije uspio, izlazni kod %d ili signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "greĹĄka u demontiranju %s: %s"
@@ -2218,68 +2119,322 @@ msgstr "sa /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ne moĹžete koristiti JFS za particije manje od 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ne moĹžete koristiti ReiserFS za particije manje od 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne možete koristiti LVM logički volumen za tačku montiranja %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Potreban vam je pravi file sistem (ext2, reiserfs) za ovu tačku montiranja\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ne možete koristiti kriptovani datotečni sistem za tačku montiranja %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nemam ĹĄta da radim"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "GreĹĄka u otvaranju %s za pisanje: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
"kreirati novi file sistemi. Molimo provjerite vaš hardware i pronađite uzrok "
"greĹĄke"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemate nijednu particiju!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Koristi auto prepoznavanje"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "OpĹĄti"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "postavka opterećenja"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Promjeni tip"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Izlaz"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pomoć/_O programu..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "MiĹĄ"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Odustani"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "MiĹĄ"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Opis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentikacija"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Izaberite datoteku"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway uređaj"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 dugmeta"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Prepoznavanje hard diska"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Pogledaj hardware info"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "PrikaĹži informacije"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "PodeĹĄavanje miĹĄa"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detektovan na portu %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Molimo sačekajte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundi"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Uklanjam štampač \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Ispitivanje"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2293,7 +2448,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2320,7 +2475,7 @@ msgstr ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2424,9 +2579,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2475,9 +2629,8 @@ msgstr ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if the machine is to be used for programming, choose "
"the\n"
@@ -2775,7 +2928,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2787,9 +2940,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2812,9 +2964,8 @@ msgstr ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2859,21 +3010,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2889,9 +3039,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Na ovom mjestu trebate izabrati gdje Ĺželite instalirati Linux Mandrake\n"
"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
@@ -2987,9 +3137,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3183,38 +3332,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3259,10 +3402,9 @@ msgstr ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step.\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step.\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk.\n"
@@ -3393,11 +3535,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3456,7 +3598,7 @@ msgstr ""
"instalaciju. Odgovor na neka pitanja moĹže biti vrlo teĹžak ako nemate dobro\n"
"poznavanje GNU/Linuxa, zato nemojte birati ovo sem ako znate ĹĄta radite."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3482,7 +3624,7 @@ msgstr ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3508,7 +3650,7 @@ msgstr ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales click the \"OK\" button to continue."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3535,7 +3677,7 @@ msgstr ""
"are good. If the mouse is not working correctly press the space bar or\n"
"[Return] to \"Cancel\" and choose again."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3543,23 +3685,23 @@ msgstr ""
"Molimo izaberite ispravan port. Na primjer, \"COM1\" port pod MS\n"
"Windowsom se zove \"ttyS0\" pod GNU/Linuxom."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3615,7 +3757,7 @@ msgstr ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3637,7 +3779,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3645,7 +3787,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3713,7 +3855,7 @@ msgstr ""
"it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3735,7 +3877,7 @@ msgstr ""
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3748,29 +3890,28 @@ msgstr ""
"\n"
"Izaberite \"Prvi sektor na disku (MBR)\" sem ako znate tačno šta radite."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3806,7 +3947,7 @@ msgstr ""
"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
"networks."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3831,7 +3972,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sada pronalazi sve IDE uređaje prisutne na vašem računaru. Također\n"
@@ -3863,7 +4004,7 @@ msgstr ""
"sa web stranice proizvođača (ako imate internet pristup) ili iz Microsoft\n"
"Windowsa (ako ga imate na vaĹĄem sistemu)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3873,9 +4014,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3887,7 +4027,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3958,7 +4098,7 @@ msgstr ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3985,9 +4125,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4026,10 +4165,10 @@ msgstr ""
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4037,12 +4176,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4086,7 +4224,7 @@ msgstr ""
"displayed here. You can click on the button to change the parameters\n"
"associated to it."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4098,7 +4236,7 @@ msgstr ""
"biti\n"
"izgubljeni i neće se moći vratiti!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4116,7 +4254,7 @@ msgstr ""
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4124,12 +4262,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Morate također formatirati i %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4154,20 +4292,20 @@ msgstr ""
"\n"
"Da li zaista Ĺželite instalirati ove servere?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4175,7 +4313,7 @@ msgstr ""
"Da koristite ovaj izbor spaĹĄenih paketa, bootajte instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Greška u čitanju datoteke %s"
@@ -4206,7 +4344,7 @@ msgstr "Morate imati swap particiju"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4214,59 +4352,59 @@ msgstr ""
"\n"
"Svejedno nastavi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Koristi postojeću particiju"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nema nijedne postojeće particije za upotrebu"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Koristi Windows particiju za loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju Ĺželite koristiti za Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Izaberite veličine"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Veličina root particije u MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Veličina swap particije u MB:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Koristi slobodan prostor na Windows particiji"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji želite promjeniti veličinu?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Izračunavam granice Windows datotečnog sistema"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4275,13 +4413,16 @@ msgstr ""
"FAT resizer ne moĹže izmjeniti vaĹĄu particiju, \n"
"došlo je do sljedeće greške: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"VaĹĄa Windows particija je previĹĄe fragmentirana, molimo prvo pokrenite "
"``defrag'' "
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4302,55 +4443,55 @@ msgstr ""
"ponovo pokrenite instalaciju. Također biste trebali spasiti sve podatke.\n"
"Kada ste sigurni, kliknite na Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Koju veličinu želite da sačuvate za windows na"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "particiji %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT promjena veličine nije uspjela: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Ne postoji nijedna FAT particija za promjenu veličine ili upotrebu za "
"loopback (ili nije ostalo dovoljno prostora)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Pobriši čitav disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Ukloni Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Imate viĹĄe od jednog hard diska, na koji Ĺželite instalirati linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Ručno particioniranje diska"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4359,11 +4500,11 @@ msgstr ""
"Sada moĹžete particionirati %s.\n"
"Kada zavrĹĄite, ne zaboravite spasiti sa `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemate dovoljno slobodnog prostora na vaĹĄoj Windows particiji"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ne mogu naći dovoljno prostora za instalaciju"
@@ -4371,16 +4512,16 @@ msgstr "Ne mogu naći dovoljno prostora za instalaciju"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Particioni čarobnjak je našao sljedeća rješenja:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje nije uspjelo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Pokrećem mrežu"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Zaustavljam mreĹžu"
@@ -4392,12 +4533,12 @@ msgstr ""
"DoĹĄlo je do greĹĄke, ali ne znam kako da je rijeĹĄim fino.\n"
"Nastavite na vlastiti rizik."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dvostruka tačka montiranja %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4409,12 +4550,12 @@ msgstr ""
"Provjerite cdrom na instaliranom računaru koristeći \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Dobro doĹĄli u %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nema pogodne disketne jedinice"
@@ -4424,9 +4565,9 @@ msgstr "Nema pogodne disketne jedinice"
msgid "Entering step `%s'\n"
msgstr "Prelazim na korak `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4436,198 +4577,152 @@ msgstr ""
"ovo,\n"
"pritisnite `F1' prilikom bootanja na CDROMu, zatim unesite `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Klasa instalacije"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukupna veličina grupa koje ste izabrali je otprilike %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ako želite da instalirate manje od ove veličine,\n"
-"izaberite procenat paketa koje Ĺželite instalirati.\n"
-"\n"
-"Nizak procenat će instalirati samo one najbitnije pakete;\n"
-"procenat 100%% će instalirati sve izabrane pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na disku imate mjesta samo za %d%% ovih paketa.\n"
-"\n"
-"Ako Ĺželite da instalirate manje od ovoga,\n"
-"izaberite procenat paketa koje Ĺželite da instalirate.\n"
-"Nizak procenat će instalirati samo one najbitnije pakete;\n"
-"procenat %d%% će instalirati najveći mogući broj paketa."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Na idućem koraku ćete biti u mogućnosti da ih izaberete nešto preciznije."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procenat paketa za instalaciju"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Izbor grupe paketa"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Izbor pojedinačnih paketa"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veličina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Neispravan paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Verzija: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Veličina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Značaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Ne moĹžete izabrati ovaj paket jer nema dovoljno prostora za njega"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Sljedeći paketi će biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Ne možete izabrati/isključiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ovo je obavezan paket, ne može biti isključen"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ovaj paket mora biti unaprijeđen\n"
"Jeste li sigurni da ga želite isključiti?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne možete isključiti ovaj paket. On mora biti unaprijeđen"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Automatski prikaĹži izabrane pakete"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalacija"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Učitaj/Spasi na disketu"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "OsvjeĹžavam izbor paketa"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Izaberite pakete koje Ĺželite instalirati"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Preostalo vremena "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Molimo sačekajte, pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4643,17 +4738,17 @@ msgstr ""
"Ako ga nemate, pritisnite Odustani da biste izbjegli instaliranje sa ovog CD-"
"ROMa."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Svejedno nastavi?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Došlo je do greške pri naručivanju paketa:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "DoĹĄlo je do greĹĄke kod instaliranja paketa:"
@@ -4725,11 +4820,11 @@ msgstr "DoĹĄlo je do greĹĄke"
msgid "Do you really want to leave the installation?"
msgstr "Da li zaista Ĺželite napustiti instalaciju?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licencni ugovor"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4744,7 +4839,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4862,7 +4957,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4967,109 +5062,113 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatura"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Molimo izaberite izgled vaĹĄe tastature."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ovdje je puna lista svih dostupnih tastatura"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Koju klasu instalacije Ĺželite?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instaliraj/Unaprijedi"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Da li je ovo instalacija ili update?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Preporučeno"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Unaprijedi"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Unaprijedi samo pakete"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Molimo izaberite vrstu vaĹĄeg miĹĄa."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port miĹĄa"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Molimo izaberite na kojem serijskom portu je spojen vaĹĄ miĹĄ."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulacija tipki"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulacija 2 dugmeta"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulacija 3 dugmeta"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PodeĹĄavam PCMCIA kartice..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "PodeĹĄavam IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Pretražujem particije da nađem tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Izaberite tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5081,7 +5180,7 @@ msgstr ""
"\n"
"SlaĹžete li se sa gubitkom svih particija?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5089,7 +5188,7 @@ msgstr ""
"DiskDrake nije uspio ispravno pročitati tabelu particija.\n"
"Nastavljate na vlastiti rizik!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5098,76 +5197,79 @@ msgstr ""
"nastaviti, ali da biste bootali vaĹĄ sistem, morate kreirati bootstrap "
"particiju u DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Nije pronađena nijedna root particija radi unaprjeđivanja"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root particija"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Ĺ ta je root particija (/) vaĹĄeg sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje Ĺželite formatirati"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Provjeri loĹĄe blokove?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreiram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Nemam dovoljno swap prostora da dovrĹĄim instalaciju, molimo dodajte joĹĄ"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "TraĹžim dostupne pakete"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "TraĹžim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Pronalazim pakete za unaprjeđenje"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Vaš sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Potpuna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimalna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Preporučena (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5175,35 +5277,35 @@ msgstr ""
"Molimo izaberite učitaj ili spasi izbor paketa na disketu.\n"
"Format je isti kao i diskete koje generiĹĄe auto_install"
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Vrati sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Vraćam sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Izbor paketa"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Ubacite disketu koja sadrĹži izbor paketa"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Spasi na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća od slobodnog prostora"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Vrsta instalacije"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5212,19 +5314,19 @@ msgstr ""
"Niste izabrali nijednu grupu paketa\n"
"Molimo izaberite minimalnu instalaciju koju Ĺželite"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Sa X-om"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5234,16 +5336,16 @@ msgstr ""
"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
"Ako nedostaju samo neki CDovi, isključite ih, zatim kliknite na Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5252,23 +5354,23 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Post-instalacijsko podeĹĄavanje"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molimo ubacite disketu Update Modula u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5304,7 +5406,7 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5340,13 +5442,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5358,151 +5462,181 @@ msgstr ""
"\n"
"Da li želite instalirati unaprjeđenja ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih mirrora"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Koja je vaĹĄa vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardverski sat podeĹĄen na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nema štampača"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vašu zvučnu "
"karticu"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ukratko"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "MiĹĄ"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Štampač"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podesite root ĹĄifru"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez ĹĄifre"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova ĹĄifra je previĹĄe jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Autentifikacija NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domen"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentikacijski LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Preuzmi fontove iz Windowsa"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP server"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5534,19 +5668,19 @@ msgstr ""
"first\n"
"drive and press \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Prva disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Druga disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5572,7 +5706,7 @@ msgstr ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5586,29 +5720,29 @@ msgstr ""
"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
"raditi, poĹĄto XFS traĹži veoma velik drajver)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Žao mi je, nema dostupne disketne jedinice"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Izaberite disketnu jedinicu koju Ĺželite koristiti da napravite boot disketu"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ubacite disketu u %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Pravim boot disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5620,11 +5754,11 @@ msgstr ""
"Instalacija će se nastaviti, ali ćete\n"
" morati koristiti BootX za bootanje vašeg računara"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Da li Ĺželite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5632,15 +5766,15 @@ msgstr ""
"GreĹĄka u instaliranju aboota, \n"
"da li da pokušam nasilnu instalaciju čak i ako to uništi prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaliram bootloadera"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5658,18 +5792,17 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ubacite praznu disketu u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5679,7 +5812,8 @@ msgstr ""
"\n"
"Da li zaista želite izaći sada?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5690,7 +5824,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5705,17 +5839,22 @@ msgstr ""
"pogledajte Errata koja je dostupna na:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informacije o podeĹĄavanju vaĹĄeg sistema su dostupne u poglavlju\n"
"\"nakon instalacije\" vašeg Zvaničnog Mandrake Linux priručnika za upotrebu."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5729,15 +5868,15 @@ msgstr ""
"\n"
"Možda ćete željeti radije ponoviti instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizovano"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ponovi"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Spasi izbor paketa"
@@ -5764,44 +5903,24 @@ msgstr "nedostaje consolehelper"
msgid "Choose a file"
msgstr "Izaberi datoteku"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Molimo sačekajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ProĹĄiri stablo"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Smanji stablo"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Prekidač između ravnog i grupnog sortiranja"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "PogreĹĄan izbor, pokuĹĄajte ponovo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "VaĹĄ izbor? (podrazumjevano %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5810,31 +5929,35 @@ msgstr ""
"Stavke koje morate popuniti:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "VaĹĄ izbor? (0/1, podrazumjevano %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Dugme '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Da li Ĺželite kliknuti na ovo dugme?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "VaĹĄ izbor? (podrazumjevano '%s' %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Postoji mnogo stvari od kojih moĹžete izabrati (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5844,7 +5967,7 @@ msgstr ""
"ili samo pritisnite Enter za nastavak.\n"
"VaĹĄ izbor?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5853,327 +5976,327 @@ msgstr ""
"=> Primjetite, label je promjenjena:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Ponovo poĹĄalji"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Češka (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Njemačka"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Ĺ panska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "NorveĹĄka"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Ĺ vedska"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK tastatura"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US tastatura"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaća mašina)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "AzerbejdĹžanska (latinica)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Švicarska (Njemački izgled)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Ĺ vicarska (Francuski izgled)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Češka (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Njemačka (bez mrtvih tipki)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (NorveĹĄka)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Ĺ vedska)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" izgled)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latinični\" izgled)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grčka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Mađarska"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelska (Fonetska)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italijanska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanska 106 tipki"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejanska tastatura"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latino-Američka"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litvanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanska AYERTY (nova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvijska"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandska"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadska (Kvebek)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunska (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunska (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenačka"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovačka (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovačka (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srpska (ćirilica)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamilska"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tajlandska tastatura"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadžička tastatura"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderni \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US tastatura (međunarodna)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnamska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinično)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Obje Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control i Shift tipka istovremeno"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl i Alt tipke istovremeno"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt i Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "\"Meni\" tipka"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Desna \"Windows\" tipka"
@@ -6186,7 +6309,31 @@ msgstr "KruĹžno montiranje %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Najprije ukloni logičke volumene\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Broj telefona"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatiranje particija"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6228,10 +6375,6 @@ msgstr "1 dugme"
msgid "Generic 2 Button Mouse"
msgstr "OpĹĄti miĹĄ sa 2 dugmeta"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "OpĹĄti"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Kotač"
@@ -6296,38 +6439,54 @@ msgstr "nijedan"
msgid "No mouse"
msgstr "Bez miĹĄa"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Molimo testirajte miĹĄ"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Da biste aktivirali miĹĄa,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "POMJERITE VAŠ KOTAČ!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Kraj"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Sljedeći ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Prethodni"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "ProĹĄiri stablo"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Smanji stablo"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Prekidač između ravnog i grupnog sortiranja"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
@@ -6374,7 +6533,7 @@ msgstr ""
"Nije pronađen ethernet mrežni adapter na vašem sistemu.\n"
"Ne mogu podesiti ovu vrstu konekcije."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Izaberite mreĹžni interface"
@@ -6388,7 +6547,7 @@ msgstr ""
msgid "no network card found"
msgstr "nije pronađena mrežna kartica"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "PodeĹĄavam mreĹžu"
@@ -6404,15 +6563,15 @@ msgstr ""
"Naziv vašeg računara bi trebao biti puno-kvalifikovani naziv,\n"
"kao ĹĄto je ``mojcomp.mojlab.mojafirma.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Host name"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Čarobnjak za podešavanje mreže"
@@ -6467,7 +6626,7 @@ msgstr "PodeĹĄavanje ISDNa"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Izaberite vaĹĄeg providera.\n"
" Ako nije na listi, izaberite Nije na listi"
@@ -6486,14 +6645,14 @@ msgstr "Protokol za ostatak svijeta"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol za ostatak svijeta \n"
" bez D-kanala (iznajmljene linije)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Koji protokol Ĺželite koristiti?"
#: ../../network/isdn.pm_.c:199
@@ -6517,7 +6676,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ako imate ISA karticu, vrijednosti na idućem ekranu bi trebale biti "
@@ -6534,13 +6694,13 @@ msgid "Continue"
msgstr "Nastavak"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Koja je vaĹĄa ISDN kartica ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Otkrio sam neku ISDN PCI karticu, ali ne znam tip. Molimo izaberite neku PCI "
"karticu na idućem ekranu."
@@ -6559,47 +6719,47 @@ msgstr "Molimo izaberite na koji serijski port je nakačen vaš modem."
msgid "Dialup options"
msgstr "Opcije dialupa"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Naziv konekcije"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Broj telefona"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skripta"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Ime domena"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Prvi DNS server (opcionalno)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS server (opcionalno)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6607,7 +6767,7 @@ msgstr ""
"\n"
"MoĹžete se diskonektovati ili prekonfigurisati vaĹĄu konekciju."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6615,11 +6775,11 @@ msgstr ""
"\n"
"MoĹžete prekonfigurisati vaĹĄu konekciju."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6627,32 +6787,32 @@ msgstr ""
"\n"
"MoĹžete se spojiti na Internet ili prekonfigurisati vaĹĄu konekciju."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Trenutno niste konektovani na Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konektuj me"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Prekini konekciju"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Podesi konekciju"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internet konekcija & podeĹĄavanje"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada ćemo podesiti konekciju %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6671,12 +6831,12 @@ msgstr ""
"\n"
"Pritisnite OK za nastavak."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "PodeĹĄavanje mreĹže"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6687,9 +6847,9 @@ msgstr ""
"Kliknite na Ok da zadrĹžite tu konfiguraciju ili Odustani za podeĹĄavanje vaĹĄe "
"Internet & MreĹžne konekcije.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6699,66 +6859,72 @@ msgstr ""
"Sada ćemo podesiti vašu internet/mrežnu konekciju.\n"
"Ako ne želite da koristite automatsko prepoznavanje, isključite opciju.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Izaberite profil za podeĹĄavanje"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ekspertni mod"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Prepoznajem uređaje..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normalna modemska konekcija"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detektovan na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN konekcija"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detektovan %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL konekcija"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detektovan na interfejsu %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kablovska konekcija"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "otkrivena kablovska konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "prepoznata ethernet kartica(e)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Izaberite konekciju koju Ĺželite podesiti"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6768,23 +6934,23 @@ msgstr ""
"Izaberite jedan od njih koji ćete koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet konekcija"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Da li Ĺželite pokrenuti konekciju prilikom boota?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "PodeĹĄavanje mreĹže"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Potrebno je restartovati mreĹžu"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6795,7 +6961,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6805,7 +6971,7 @@ msgstr ""
"\n"
"Sada će ova konfiguracija biti primjenjena na vaš sistem.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6813,19 +6979,19 @@ msgstr ""
"Nakon što je to gotovo, preporučujemo da restartujete vaš X\n"
"okoliš kako bi se izbjegao problem sa promjenom naziva računara."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"DoĹĄlo je do problema prilikom podeĹĄavanja.\n"
"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
"radi, moĹžete ponovo pokrenuti podeĹĄavanje"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6834,7 +7000,7 @@ msgstr ""
"Samo prihvatite kako bi ovaj uređaj ostao podešen.\n"
"Izmjena polja ispod će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6844,38 +7010,43 @@ msgstr ""
"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
"razdvojenoj tačkama (npr. 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Podešavam mrežni uređaj %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (drajver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatska IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Pokrenut na bootu"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6887,64 +7058,64 @@ msgstr ""
"kao ĹĄto je ``mojcomp.mojlab.mojafirma.com''.\n"
"Možete također unijeti IP adresu gateway-a ako ga imate"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (tj. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfiguracija proxija"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Otkrij id mreĹžne karte (korisno za laptope)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet konfiguracija"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Da li se Ĺželite pokuĹĄati spojiti na Internet sada?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Probavam vaĹĄu konekciju..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sistem je sada spojen na Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Iz sigurnosnih razloga, sada će biti odspojen."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6952,111 +7123,116 @@ msgstr ""
"Izgleda da sistem nije spojen na Internet.\n"
"Probajte promjeniti postavke vaĹĄe konekcije."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "PodeĹĄavanje konekcije"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Molimo ispunite ili provjerite polje ispod"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartice"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memorija kartice (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartice"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartice"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartice"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vaš lični broj telefona"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Naziv provajdera (npr. provajder.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Broj telefona provajdera"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provider dns 1 (opcionalno)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provider dns 2 (opcionalno)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Izaberite vaĹĄu drĹžavu"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Način biranja broja"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Brzina konekcije"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout konekcije (u sek.)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login naloga (korisničko ime)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Ĺ ifra naloga"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Extended particije nisu podrĹžane na ovoj platformi"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Imate rupu u vaĹĄoj tabeli particija li je ja ne mogu upotrijebiti.\n"
"Jedino rjeĹĄenje je da pomjerite vaĹĄe primarne particija kako bi rupa bila "
"pored extended particija"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Povratak iz datoteke %s nije uspio: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "LoĹĄa backup datoteka"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "GreĹĄka u pisanju datoteke: %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7066,186 +7242,186 @@ msgstr ""
"Test integriteta podataka nije uspio. \n"
"To znači će da pisanje bilo čeka na disk rezultirati smećem"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "obavezno"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "vaĹžno"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "vrlo fino"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "fino"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "moĹžda"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokalni štampač"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Udaljeni štampač"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Štampač na udaljenom CUPS serveru"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Štampač na udaljenom lpd serveru"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Mrežni štampač (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Štampač na NetWare serveru"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Unesite URI uređaja štampača"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Spoji zadatak na komandu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Nepoznat model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokalni štampači"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Udaljeni štampači"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB štampač \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", višenamjenski uređaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", višenamjenski uređaj na USBu"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", višenamjenski uređaj na HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", višenamjenski uređaj"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", ĹĄtampa u %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", štampač \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "na Novell serveru \"%s\", štampač \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", koristeći komandu %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Sirovo ĹĄtampanje (Bez drajvera)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na ovom računaru)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na CUPS serveru \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Default)"
@@ -7267,11 +7443,11 @@ msgstr ""
"Ovdje ne morate podešavati štampače na udaljenim CUPS serverima;\n"
"ovi štampači će biti automatski prepoznati."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "PodeĹĄavanje CUPSa"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Navedite CUPS server"
@@ -7313,7 +7489,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba biti u formatu 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Broj porta treba biti cijeli broj!"
@@ -7321,7 +7497,7 @@ msgstr "Broj porta treba biti cijeli broj!"
msgid "CUPS server IP"
msgstr "IP CUPS servera"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7329,20 +7505,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatska konfiguracija CUPSa"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Prepoznajem uređaje ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Testiraj portove"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Dodaj novi štampač"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7365,13 +7533,13 @@ msgstr ""
"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
"konekcije štampača."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokalni štampač"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7404,11 +7572,11 @@ msgstr ""
"želite da podesite štampanje na udaljenom štampaču a printerdrake ga ne "
"izlista automatski."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Automatski prepoznaj štampače"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7432,11 +7600,11 @@ msgstr ""
"štampe...), izaberite opciju \"Štampač\" u \"Hardware\" sekciji Mandrake "
"Kontrolnog centra."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatsko prepoznavanje štampača"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7452,33 +7620,37 @@ msgstr ""
"\n"
"Da li zaista želite da vaši štampači budu prepoznati automatski?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Ručno podesite štampač"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Testiraj portove"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detektovan %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Štampač na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB štampač \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7490,11 +7662,11 @@ msgstr ""
"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB štampač: /dev/"
"usb/lp0, drugi USB štampač: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Morate unijeti naziv uređaja ili datoteke!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7502,7 +7674,7 @@ msgstr ""
"Nije pronađen nijedan lokalni štampač!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7510,7 +7682,7 @@ msgstr ""
"Mrežni štampači mogu biti instalirani samo nakon završetka instalacije. "
"Izaberite \"Hardware\" i zatim \"Štampač\" u Mandrake Kontrolnom centru."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7518,7 +7690,7 @@ msgstr ""
"Da instalirate mrežne štampače, kliknite na \"Odustani\", prebacite na "
"\"Ekspert mod\" i kliknite ponovo na \"Dodaj novi štampač\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7526,7 +7698,7 @@ msgstr ""
"Sljedeći štampač je prepoznat automatski: ako to nije onaj koji želite "
"podesiti, uneiste naziv uređaja / naziv datoteke u ulaznu liniju"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7535,7 +7707,7 @@ msgstr ""
"koji želite podesiti ili unesite naziv uređaja / naziv datoteke na ulaznu "
"liniju"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7546,7 +7718,7 @@ msgstr ""
"potpuno automatski. Ako vaš štampač nije ispravno prepoznat ili ako želite "
"sami podesiti štampač, uključite \"Ručno podešavanje\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7558,7 +7730,7 @@ msgstr ""
"vaš štampač nije ispravno prepoznat ili ako želite sami podesiti štampač, "
"uključite \"Ručno podešavanje\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7566,11 +7738,11 @@ msgstr ""
"Molimo izaberite port na koji je vaš štampač povezan ili unesite naziv "
"uređaja / naziv datoteke na ulaznoj liniji"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Molimo izaberite na koji port je priključen vaš štampač."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7579,52 +7751,65 @@ msgstr ""
"LPT2:, ..., prvi USB štampač: /dev/usb/lp0, drugi USB štampač: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Morate izabrati ili unijeti štampač / uređaj!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Ručno podešavanje"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Da li je vaš štampač višenamjenski uređaj od HPa (OfficeJet, PSC, "
"PhotoSmart, LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instaliram HPOJ paket..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Provjeravam uređaj i podešavam HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instaliram SANE paket..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaliram pakete..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skeniram na vašem HP višenamjenskom uređaju"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skeniram na vašem HP višenamjenskom uređaju"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Omogućujem CUPSu port štampača ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Čitam bazu podataka o štampačima ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcije udaljenog lpd štampača"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7632,27 +7817,27 @@ msgstr ""
"Da biste koristili udaljeni lpd štampač, morate dati ime računara za printer "
"server i ime štampača na tom serveru."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Ime udaljenog računara"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Ime udaljenog štampača"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Ime udaljenog računara nedostaje!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Ime udaljenog štampača nedostaje!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcije SMB (Windows 9x/NT) štampača"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7664,35 +7849,35 @@ msgstr ""
"kao i share naziv štampača kojem želite pristupiti i korisničko ime, šifru i "
"informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB server ime"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB server IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Share naziv"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Naziv samba share-a nedostaje!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7716,7 +7901,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7725,7 +7910,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7733,11 +7918,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcije NetWare štampača"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7749,27 +7934,27 @@ msgstr ""
"naziv reda za štampu na štampaču kojem želite pristupiti i eventualno "
"korisničko ime i šifru."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printer Server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Naziv reda za ĹĄtampu"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP naziv servera nedostaje!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP naziv reda nedostaje!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/socket opcije štampača"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7780,19 +7965,19 @@ msgstr ""
"opcionalno broj porta. Na HP JetDirect serverima broj porta je obično 9100, "
"na ostalim serverima on može varirati. Pogledajte priručnik vašeg hardware-a."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Hostname štampača"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Hostname štampača nedostaje!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI uređaja štampača"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7802,11 +7987,11 @@ msgstr ""
"CUPS ili Foomatic specifikacije. Obratite paĹžnju da nisu svi tipovi URIja "
"podrĹžani od svih spoolera."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Trebate unijeti ispravan URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7814,27 +7999,23 @@ msgstr ""
"Svakom štampaču treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
"nije potrebno popuniti. Oni su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Naziv štampača"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Opis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Pripremam bazu podataka o štampačima..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model vašeg štampača"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7860,24 +8041,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Model je ispravan"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Izaberite model ručno"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Izbor modela štampača"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Koji model štampača imate?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7891,7 +8072,7 @@ msgstr ""
"prepoznavanje modela vašeg štampača. Potražite ispravan model na listi ako "
"kursor stoji na pogrešnom modelu ili na \"Raw štampač\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7899,11 +8080,11 @@ msgstr ""
"Ako štampač nije naveden, izaberite kompatibilan (pogledajte uputstva za "
"štampač) ili sličan."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "PodeĹĄavanje OKI winprinter-a"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7919,11 +8100,11 @@ msgstr ""
"nego što odštampate testnu stranicu. Inače štampač neće raditi. Drajver će "
"ignorisati vaĹĄe podeĹĄenje tipa konekcije."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "PodeĹĄavanje Lexmark inkjet-a"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7935,7 +8116,7 @@ msgstr ""
"Molimo spojite vaš štampač na lokalni port ili ga podesite na računaru na "
"koji je spojen."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7957,7 +8138,7 @@ msgstr ""
"poravnavanje glava sa \"lexmarkmaintain\" i podesite opcije poravnanja glave "
"pomoću ovog programa."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7972,22 +8153,22 @@ msgstr ""
"ispravno podeĹĄeni. Obratite paĹžnju da za voma veliku kvalitetu / rezoluciju "
"ĹĄtampa moĹže postati znatno sporija."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s izvan raspona!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7996,11 +8177,11 @@ msgstr ""
"Da li želite da podesite ovaj štampač (\"%s\")\n"
"kao podrazumjevani štampač?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testna stranica"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8012,39 +8193,39 @@ msgstr ""
"laserskim štampačima sa malo memorije možda neće nikad ni izaći. U većini "
"slučajeva dovoljno je odštampati standardnu testnu stranicu."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Nijedna testna strana"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Ĺ tampaj"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardna testna strana"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna strana (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativna testna strana (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto testna strana"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Nemoj ĹĄtampati testnu stranicu"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Ĺ tampam testnu stranicu..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8059,7 +8240,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8067,15 +8248,15 @@ msgstr ""
"Testna stranica je poslana štampaču.\n"
"Može potrajati određeno vrijeme dok štampač krene.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Da li je radilo ispravno?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Sirovi štampač"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8088,7 +8269,7 @@ msgstr ""
"<datoteka>\" ili \"kprinter <datoteka>\". Grafički alati vam omogućuju da "
"jednostavno odaberete štampač i izmjenite podešenja opcija.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8098,8 +8279,8 @@ msgstr ""
"dijalozima za ĹĄtampu mnogih aplikacija, ali ovdje ne morate navesti ime "
"datoteke jer tu datoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8112,18 +8293,18 @@ msgstr ""
"ĹĄtampe. Jednostavno dodajte Ĺželjena podeĹĄenja na komandnu liniju, npr. \"%s "
"<datoteka>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Za listu opcija koje su dostupne za trenutni štampač ili pročitajte listu "
"koja je data ispod ili kliknite na dugme \"Lista opcija za ĹĄtampu\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8131,7 +8312,7 @@ msgstr ""
"Ovo je lista mogućih opcija za štampu za trenutni štampač:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8140,8 +8321,8 @@ msgstr ""
"Za ĹĄtampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8151,7 +8332,7 @@ msgstr ""
"dijalozima za ĹĄtampu mnogih aplikacija. Ovdje nije potrebno navesti naziv "
"datoteke jer tudatoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8159,7 +8340,7 @@ msgstr ""
"Za listu opcija koje su dostupne za trenutni štampač kliknite na dugme "
"\"Lista opcija za ĹĄtampu\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8168,7 +8349,7 @@ msgstr ""
"Za ĹĄtampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8184,7 +8365,7 @@ msgstr ""
"zaustavlja sve zadatke ĹĄtampe odmah kada kliknete na nju. Ovo je korisno "
"npr. u slučaju zaglavljivanja papira.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8197,38 +8378,49 @@ msgstr ""
"zadatak ĹĄtampe. Jednostavno dodajte Ĺželjena podeĹĄenja na komandnu liniju, "
"npr. \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvori"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ĺ tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ĺ tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ĺ tampam/skeniram na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Štampam na štampač \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zatvori"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Lista opcija za ĹĄtampu"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8242,39 +8434,30 @@ msgstr ""
"\n"
"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
-"skenirati. Sada možete skenirati sa komandne linije pomoću komande \"ptal-hp "
-"%s scan ...\". Skeniranje putem grafičkog interfejsa ili iz GIMPa još nije "
-"podržano za vaš uređaj. Više informacija možete naći u datoteci\"/usr/share/"
-"doc/hpoj-0.8/ptal-hp-scan.html\" na vašem računaru. Ako imate HP LaserJet "
-"1100 ili 1200, moĹžete skenirati samo ako ste instalirali opciju za "
-"skeniranje.\n"
-"\n"
-"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Čitam podatke o štampaču..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Premještanje konfiguracije štamapča"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8289,7 +8472,7 @@ msgstr ""
"zadaci štampe neće biti prebačeni.\n"
"Svi redovi ne mogu biti prebačeni zbog sljedećih razloga:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8297,7 +8480,7 @@ msgstr ""
"CUPS ne podržava štampače na Novell serverima ili štampačekoji šalju podatke "
"u komandama slobodnog oblika.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8305,11 +8488,11 @@ msgstr ""
"PDQ podržava samo lokalne štampače, udaljene LPD štampačei Socket/TCP "
"štampače.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng ne podržavaju IPP štampače.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8317,7 +8500,7 @@ msgstr ""
"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
"configure\" ne mogu biti premjeĹĄteni."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8327,7 +8510,7 @@ msgstr ""
"Također štampači konfigurisani sa PPD datotekama koje su osigurali njihovi "
"proizvođači ili sa vlastitim CUPS drajverima ne mogu biti prebačeni."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8337,15 +8520,15 @@ msgstr ""
"Označite štampače koje ćete prebacivati i kliknite na \n"
"\"Prebaci\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Nemoj prebacivati štampače"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8356,11 +8539,11 @@ msgstr ""
"Kliknite na \"Prebaci\" da to prepiĹĄete.\n"
"Možete također unijeti novo ime ili preskočiti ovaj štampač."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Naziv štampača bi se trebao sastojati od slova, brojeva i donje linije"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8369,16 +8552,16 @@ msgstr ""
"Štampač \"%s\" već postoji,\n"
"da li sigurno Ĺželite prepisati ovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Novo ime štampača"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8387,29 +8570,29 @@ msgstr ""
"Prebacili ste vaš bivši podrazumjevani štampač (\"%s\"),Da li će to također "
"biti podrazumjevani štampač podnovim sistemom štampe %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Osvježavam podatke o štampaču..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Podešavanje udaljenog štampača"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Pokrećem mrežu..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Sada podesite mreĹžu"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "MreĹžna funkcionalnost nije podeĹĄena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8421,11 +8604,11 @@ msgstr ""
"mreže, nećete moći koristiti štampač koji sada podešavate. Kako želite da "
"nastavimo?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Nastavi bez podeĹĄavanja mreĹže"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8440,7 +8623,7 @@ msgstr ""
"\"Mreža i Internet\"/\"Konekcija\", a zatim podesite štampač, ponovo "
"koristeći Mandrake Kontrolni centar, sekcija \"Hardver\"/\"Štampač\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8450,24 +8633,24 @@ msgstr ""
"vaĹĄu konfiguraciju i vaĹĄ hardware. Onda ponovo pokuĹĄajte podesiti udaljeni "
"štampač."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Restartujem sistem za ĹĄtampu ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "visok"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoičan"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaliram sistem za ĹĄtampu na sigurnosnom nivou: %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8491,11 +8674,11 @@ msgstr ""
"\n"
"Da li zaista želite podesiti štampanje na ovom računaru?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Pokrećem sistem za štampu tokom boota"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8515,63 +8698,63 @@ msgstr ""
"\n"
"Da li želite da ponovo uključite automatsko pokretanje sistema za štampu?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Provjeravam instalirani software..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Izaberite spooler štampača"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Koji sistem ĹĄtampanja (spooler) Ĺželite koristiti?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Podešavam štampač \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instaliram Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcije štampača"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Pripremam PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "PodeĹĄavam aplikacije..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Da li Ĺželite podesiti ĹĄtampanje?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Sistem ĹĄtampe: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8583,7 +8766,7 @@ msgstr ""
"njemu; ili da učinite štampač na udaljenom CUPS serveru upotrebljivim iz "
"Star Office/OpenOffice.org-a."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8593,29 +8776,33 @@ msgstr ""
"postavki; ako ga želite učiniti podrazumjevanim štampačem; ili da biste "
"vidjeli informacije o njemu."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Osvježi listu štampača (kako bi bili prikazani svi dostupni CUPS štampači)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Promjenite sistem ĹĄtampe"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Izlaz"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Želite li podesiti još jedan štampač?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Izmjeni konfiguraciju štampača"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8624,102 +8811,102 @@ msgstr ""
"Štampač %s\n"
"Šta želite da izmjenite na ovom štampaču?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Uradi!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tip konekcije štampača"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Naziv štampača, opis, lokacija"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Proizvođač štampača, model, drajver"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Proizvođač štampača, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Podesi štampač kao podrazumjevani"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Dodaj ovaj štampač u Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Ukloni ovaj štampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Ĺ tampaj testnu stranicu"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Saznaj kako koristiti ovaj štampač"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Ukloni štampač"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Uklanjam stari štampač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Podrazumjevani štampač"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Štampač \"%s\" je sada podešen kao podrazumjevani štampač."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Dodajem štampač u Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Štampač \"%s\" je uspješno dodan u Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Nisam uspio dodati štampač \"%s\" u Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Uklanjam štampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Štampač \"%s\" je uspješno uklonjen iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Nisam uspio ukloniti štampač \"%s\" iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Da li želite da uklonite štampač \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Uklanjam štampač \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8803,24 +8990,62 @@ msgstr "Ĺ ifre se ne poklapaju. PokuĹĄajte opet!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne mogu dodati particiju na _formatiran_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ne mogu pisati datoteku %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid nije uspio"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid nije uspio (moĹžda nedostaju raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ovaj nivo treba koristiti pažljivo. On čini vaš sistem lakšim za upotrebu,\n"
+"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
+"druge ili na Internet. Nema pristupa ĹĄifrom."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
+"server.\n"
+"Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
+"prima\n"
+"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
+"Internetu, moĹžda je bolje da izaberete niĹži nivo."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Napredne opcije"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcije"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA zvučni sistem (Advanced Linux Sound Architecture)"
@@ -8877,7 +9102,7 @@ msgstr ""
"HardDrake pokreće probavanje hardware-a i opcionalno konfiguriše\n"
"novi/izmjenjeni hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8952,7 +9177,7 @@ msgstr ""
"Linux Virtuelni Server, koristi se za izgradnju servera visokih performansi\n"
"i dostupnosti."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9029,7 +9254,7 @@ msgstr ""
"su NFS i NIS. Portmap server mora raditi na računarima koje služe kao\n"
"serveri za protokole koji koriste RPC mehanizam."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9124,7 +9349,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistem"
@@ -9254,6 +9479,7 @@ msgstr ""
"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolni centar"
@@ -9374,6 +9600,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instaliram pakete..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Molimo izvrĹĄite logout i zatim koristitite Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9382,6 +9617,160 @@ msgstr ""
"Ne mogu čitati vašu tabelu particija, previše je oštećena za mene :(\n"
"Pokušaću izbrisati loše particije"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Premještanje konfiguracije štamapča"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Server baze podataka"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Server baze podataka"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS server"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Pomoć"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nije konektovan"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "ObriĹĄi"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Sve izabrano"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "PodeĹĄavam..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "rekonfiguriĹĄi"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nema pogodne disketne jedinice"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "GreĹĄka!"
@@ -9434,6 +9823,11 @@ msgstr ""
"Molimo izaberite za svaki korak da li ćete ga ponoviti kao i u vašoj "
"instalaciji ili će se obaviti ručno"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Pravim auto instalacijsku disketu"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9446,12 +9840,12 @@ msgstr ""
"\n"
"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Čestitamo!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9459,28 +9853,19 @@ msgstr ""
"Disketa je uspjeĹĄno napravljena.\n"
"Sada moĹžete ponoviti vaĹĄu instalaciju."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Auto instalacija"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Dodaj stavku"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Ukloniti zadnju stavku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9490,7 +9875,7 @@ msgstr ""
" DrakBackup IzvjeĹĄtaj \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9502,19 +9887,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9526,63 +9899,87 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "ukupno napredak"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Backup-uj sistemske datoteke..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Datoteke backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Backup-uj korisničke datoteke..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Napredak backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"lista datoteka poslana putem FTPa : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
"putem FTPa.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) GreĹĄka tokom slanja poĹĄte. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Izbor datoteka"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9590,25 +9987,25 @@ msgstr ""
"\n"
"Molimo uključite sve potrebne opcije.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu spasiti ili vratiti sve datoteke u vaĹĄem /etc direktoriju.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9616,83 +10013,77 @@ msgstr ""
"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
" verziju vaĹĄeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Molimo izaberite sve korisnike koje želite uključiti u vaš backup."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Ne uključuj spremnik web preglednika"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za backup"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Molimo unesite ime računara ili IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Molimo unesite direktorij za\n"
" smještaj backupa na ovom računaru."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Molimo unesite vaĹĄ login"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Molimo unesite vaĹĄu ĹĄifru"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Zapamti ovu ĹĄifru"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP konekcija"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sigurna konekcija"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za backup"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Molimo izaberite vaĹĄ CD prostor"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9700,7 +10091,7 @@ msgstr ""
"Molim izaberite ako želite uključiti\n"
" instalacijski boot na CDu."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9708,16 +10099,21 @@ msgstr ""
"Molim unesite naziv uređaja vašeg CD Writera\n"
" npr: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9725,51 +10121,57 @@ msgstr ""
"Molim unesite maksimalnu veličinu\n"
" dozvoljenu za Draxbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "MreĹža"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tip"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "svakog sata"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "dnevno"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "sedmično"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "mjesečno"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Koristi demon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9777,7 +10179,7 @@ msgstr ""
"Izaberite vremenski interval\n"
"između svakog backupa"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9785,71 +10187,67 @@ msgstr ""
"Molim izaberite medij\n"
"za backup."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Koristi hard disk sa demonom"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Koristi FTP sa demonom"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+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 "Molim budite sigurni da je cron demon aktiviran u vaĹĄim servisima."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "PoĹĄalji mail izvjeĹĄtaj nakon svakog backupa na :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Ĺ ta"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "ViĹĄe opcija"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "PodeĹĄavanje Drakbackup-a"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Molimo izaberite gdje Ĺželite backupovati"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "na hard disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "preko mreĹže"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Molim izaberite ĹĄta Ĺželite backupovati"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Backup sistema"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Backup korisnika"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Ručno izaberite korisnika"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9857,7 +10255,7 @@ msgstr ""
"\n"
"Izvori backup-a: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9865,7 +10263,7 @@ msgstr ""
"\n"
"- sistemske datoteke:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9873,7 +10271,7 @@ msgstr ""
"\n"
"- korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9881,7 +10279,7 @@ msgstr ""
"\n"
"- ostale datoteke:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9890,16 +10288,45 @@ msgstr ""
"\n"
"- spasi na hard disku u direktoriju : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Uređaj miša: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- spasi na FTPu na računaru : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- spasi na FTPu na računaru : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9908,7 +10335,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u direktoriju: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9916,19 +10343,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNe uključuj sistemske datoteke\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9937,27 +10364,41 @@ msgstr ""
"\n"
"- Demon (%s) uključuje :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Hard disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-MreĹžu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-MreĹžu preko SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-MreĹžu preko FTPa.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-MreĹžu preko FTPa.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9965,7 +10406,7 @@ msgstr ""
"Lista podataka za vraćanje:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9973,131 +10414,134 @@ msgstr ""
"Lista oštećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Molimo isključite ili pobrišite ga idući put."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Svi vaĹĄi izabrani podaci su "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " uspjeĹĄno spaĹĄeni na %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista korisnika za vraćanje (samo najsvježiji datum po korisniku je značajan)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Vrati sistemske datoteke prije:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Koristi hard disk za backup"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Molimo unesite direktorij za spasiti:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP konekcija"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sigurna konekcija"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Molim unesite direktorij gdje su smjeĹĄteni backupi"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij za vraćanje"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Drugi medij"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Vrati sistem"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Pobriši korisničke direktorije prije vraćanja."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Vrati sve backupe"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Ručno vraćanje"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Pomoć"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Prethodni"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Spasi"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Izgradi backup"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Vrati"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Sljedeći"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10105,7 +10549,7 @@ msgstr ""
"Molimo pokrenite Izgradi backup prije vraćanja...\n"
" ili provjerite da li je put za spaĹĄavanje ispravan."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10115,31 +10559,35 @@ msgstr ""
" vaĹĄ mail izvjeĹĄtaj nije poslan\n"
" Molim podesite sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista paketa za instalaciju"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Sljedeći paketi će biti instalirani"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"GreĹĄka tokom slanja datoteke preko FTPa.\n"
" Molimo ispravite vaĹĄu FTP konfiguraciju."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Molim izaberite medij za backup..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Molim izaberite podatke za backup..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10147,75 +10595,75 @@ msgstr ""
"Nije pronađena konfiguraciona datoteka \n"
"molim kliknite na Čarobnjak ili Napredno."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "U izradi ... molim sačekajte."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Backup sistemskih datoteka"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Backup korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Backup ostalih datoteka"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Ukupan napredak"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "slanje datoteka putem FTPa"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Ĺ aljem datoteke..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Lista podataka koji će biti smješteni na CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Molim unesite brzinu cd pisača"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Molim unesite naziv uređaja vašeg CD pisača (ex: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Molim uključite ako želite imati instalacioni boot na vašem CDu."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Pogledaj postavke backupa."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Čarobnjak za podešavanje"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Napredno podeĹĄavanje"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Backup-uj sada"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10275,7 +10723,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10289,7 +10737,7 @@ msgstr ""
" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10367,7 +10815,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10419,13 +10867,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -10455,7 +10908,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10531,7 +10984,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10549,7 +11002,7 @@ msgstr ""
"drive before sending it to the server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10571,7 +11024,7 @@ msgstr ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10650,99 +11103,530 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalacija %sa nije uspjela. Javila se sljedeća greška:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Alati za konzolu"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "na hard disk"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "MiĹĄ"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Udaljeni štampač"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Share naziv"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Čarobnjak za podešavanje mreže"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autentikacija"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Izbor paketa"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Molimo sačekajte"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post Uninstall"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "PodeĹĄavanje mreĹže (%d adaptera)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "BriĹĄi profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil za brisanje:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novi profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
+"postojećeg) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Hostname: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Pristup Internetu"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tip:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interfejs:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Molim sačekajte"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Podesi Internet pristup..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "PodeĹĄavanje LANa"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drajver"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfejs"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Podesi Lokalnu mreĹžu..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Kliknite ovdje za pokretanje čarobnjaka ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Čarobnjak..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Primjeni"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Konektovan"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nije konektovan"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konektuj se..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Prekini konekciju..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Upozorenje, otkrivena je druga Internet konekcija, moĹžda preko vaĹĄe mreĹže"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemate nijedan podeĹĄen interfejs.\n"
+"Podesite ih prvo klikajući na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "PodeĹĄavanje LANa"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Boot protokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Pokrenut na bootu"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "pokreni sada"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "zaustavi sada"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Interfejs joĹĄ nije podeĹĄen.\n"
+"Pokrenite čarobnjak za podešavanje u glavnom prozoru"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemate nijednu Internet konekciju.\n"
+"Napravite jednu klikajući na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "PodeĹĄavanje Internet konekcije"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "PodeĹĄavanje Internet konekcije"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tip konekcije: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametri"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet kartica"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "koristi: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Naziv modula"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Veličina"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Kreiranje boot diskete"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "Podrazumijevano"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy greĹĄka: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Kernel verzija"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Općenito"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ekspert područje"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opcionalni argumenti"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Dodaj modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "prisili"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ako je potrebno"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "izostavi scsi module"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "izostavi raid module"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Ukloni modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ispis"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Napravi disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Provjeri da li je medij prisutan za ovaj uredjaj %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Nema medija za ovaj uredjaj %s.\n"
+"Molim ubacite ga."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne mogu izvrsiti fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "PretraĹži instalirane fontove"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Isključi instalirane fontove"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "obradi sve fontove"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "nije pronađen nijedan font"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "gotovo"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "ne mogu naći nijedan font na montiranim particijama"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Ponovo izaberi ispravne fontove"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "ne mogu naći nijedan font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "PretraĹži fontove na listi instaliranih"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopiranje fontova"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Instalacija True Type fontova"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "molimo sačekajte tokom ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "ZavrĹĄena True Type instalacija"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konverzija fontova"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "type1inst kreiranje"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscript referenciranje"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf fonts konverzija"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm fonts konverzija"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Onemogući privremene datoteke"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Restartuj XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Onemogući datoteke fontova"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "restart xfs-a"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10756,107 +11640,107 @@ msgstr ""
"-Možete instalirati fontove koristeći uobičajen način. U rijetkim "
"slučajevima, neispravni fontovi mogu zaglaviti vaš X Server."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Uvoz fontova"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Preuzmi fontove iz Windowsa"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Deinstaliraj fontove"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Napredne opcije"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Lista fontova"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Izaberite aplikacije koje će podržavati fontove :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Razni štampači"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Izaberite font datoteku ili direktorij i kliknite na 'Dodaj'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Lista instalacije"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "kliknite ovdje ako ste sigurni."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "ovdje ako ne."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "NiĹĄta izabrano"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Sve izabrano"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "PobriĹĄi listu"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Probni inicijali"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopiraj fontove na sistem"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instaliraj i konvertuj fontove"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post Install"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "PobriĹĄi fontove sa mog sistema"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post Uninstall"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet konekcije"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10868,31 +11752,31 @@ msgstr ""
"\n"
"Ĺ ta Ĺželite uraditi?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "isključi"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "otkaĹži"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "rekonfiguriĹĄi"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Isključujem servere..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje Internet konekcije je sada isključeno."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10904,19 +11788,19 @@ msgstr ""
"\n"
"Ĺ ta Ĺželite uraditi?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "uključi"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Uključujem servere..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje Internet konekcije je sada uključeno."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10932,21 +11816,21 @@ msgstr ""
"Napomena: potreban vam je poseban MreĹžni adapter da biste podesili Lokalnu "
"mreĹžu (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfejs %s (koristeći modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfejs %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nema mreĹžnog adaptera na vaĹĄem sistemu!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10954,11 +11838,11 @@ msgstr ""
"Na vašem sistemu nije pronađen nijedan ethernet mrežni adapter. Molimo "
"pokrenite alat za podeĹĄavanje hardware-a."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "MreĹžni interface"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10973,18 +11857,18 @@ msgstr ""
"\n"
"Sada ću podesiti vašu Lokalnu mrežu sa ovim adapterom."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo izaberite koji mrežni adapter će biti spojen na vašu Lokalnu mrežu."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Mrežni interfejs je već podešen"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10999,15 +11883,15 @@ msgstr ""
"\n"
"To možete obaviti ručno, ali morate znati šta radite."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatsko ponovno podeĹĄavanje"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "PrikaĹži postavke trenutnog interfejsa"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11024,7 +11908,7 @@ msgstr ""
"IP atributi: %s\n"
"Drajver: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11043,33 +11927,33 @@ msgstr ""
"Ako ne, mogu ponovo podesiti vaĹĄ interfejs i podesiti DHCP server za vas.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokalna mreĹža C klase"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP adresa (ovog) DHCP servera"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Ponovo podesi interfejs i DHCP server"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalna mreĹža se ne zavrĹĄava sa `.0', izlazim."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Otkrivena konfiguracija firewalla!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11077,20 +11961,20 @@ msgstr ""
"Upozorenje! Pronađena je postojeća konfiguracija firewalla. Možda će biti "
"potrebno neko ručno podešavanje nakon instalacije."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "PodeĹĄavam..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Podešavam skripte, instaliram software, pokrećem servere..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi tokom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11100,23 +11984,23 @@ msgstr ""
"Sada možete dijeliti Internet konekciju sa ostalim računarima na vašoj "
"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Podešavanje je već završeno, ali je trenutno isključeno."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Podešavanje je već završeno i trenutno je uključeno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje Internet konekcije nije nikad podeĹĄeno."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "PodeĹĄavanje dijeljenja Internet konekcije"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11131,215 +12015,6 @@ msgstr ""
"\n"
"Kliknite na Podesi da pokrenete čarobnjak."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "PodeĹĄavanje mreĹže (%d adaptera)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "BriĹĄi profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil za brisanje:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novi profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
-"postojećeg) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Pristup Internetu"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfejs:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Molim sačekajte"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Podesi Internet pristup..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "PodeĹĄavanje LANa"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drajver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfejs"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Podesi Lokalnu mreĹžu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Kliknite ovdje za pokretanje čarobnjaka ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Čarobnjak..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Primjeni"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Konektovan"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nije konektovan"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konektuj se..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Prekini konekciju..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Upozorenje, otkrivena je druga Internet konekcija, moĹžda preko vaĹĄe mreĹže"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijedan podeĹĄen interfejs.\n"
-"Podesite ih prvo klikajući na 'Podesi'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "PodeĹĄavanje LANa"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Pokrenut na bootu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "pokreni sada"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "zaustavi sada"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Interfejs joĹĄ nije podeĹĄen.\n"
-"Pokrenite čarobnjak za podešavanje u glavnom prozoru"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijednu Internet konekciju.\n"
-"Napravite jednu klikajući na 'Podesi'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "PodeĹĄavanje Internet konekcije"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "PodeĹĄavanje Internet konekcije"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip konekcije: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet kartica"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "PodeĹĄavanje nivoa sigurnosti"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolni centar"
@@ -11348,63 +12023,85 @@ msgstr "Kontrolni centar"
msgid "Choose the tool you want to use"
msgstr "Izaberite alat koji Ĺželite koristiti"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kablovska)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "USA (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kablovska)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Kina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japan (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (kablovska)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Istočna Evropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francuska"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irska"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Zapadna Evropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australija"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Novi Zeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "JuĹžna Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11412,27 +12109,44 @@ msgstr ""
"Molim,\n"
"unesite vaĹĄ tv standard i drĹžavu"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV standard :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Oblast :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Pretraga TV kanala je u toku ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "TraĹžim TV kanale"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "DoĹĄlo je do greĹĄke kod instaliranja paketa:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11477,7 +12191,7 @@ msgstr "Ne mogu da pokrenem live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11487,7 +12201,7 @@ msgstr "PrikaĹži samo za izabrani dan"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/File/_New"
+msgstr "/Datoteka/_Nova"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
@@ -11511,7 +12225,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Datoteaka/Sačuvaj _kao"
+msgstr "/_Datoteka/Sačuvaj K_ao"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11525,10 +12239,6 @@ msgstr "/_Opcije"
msgid "/Options/Test"
msgstr "/Opcije/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pomoć"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Pomoć/_O programu..."
@@ -11589,7 +12299,7 @@ msgstr "Kalendar"
msgid "Content of the file"
msgstr "SadrĹžaj datoteke"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Mail/SMS obavijest"
@@ -11598,11 +12308,11 @@ msgstr "Mail/SMS obavijest"
msgid "please wait, parsing file: %s"
msgstr "molim sačekajte, parsiram datoteku: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "PodeĹĄavanje Mail/SMS obavijesti"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11612,65 +12322,97 @@ msgstr ""
"\n"
"Ovdje moĹžete podesiti sistem obavjeĹĄtavanja.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ime domena"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix mail server, Inn news server"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servisi"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printer Server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "postavke servisa"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"MoĹžete primiti obavjeĹĄtenje ako neki od izabranih servisa prestane raditi"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "postavka opterećenja"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
"Primićete upozorenje ako je opterećenje (system load) veće od ove vrijednosti"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "postavka upozorenja"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Podesite način na koji će vas sistem obavijestiti"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Sačuvaj kao..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Molimo izaberite vrstu vaĹĄeg miĹĄa."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nije pronađen serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuliraj treće dugme?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Čitam podatke o štampaču..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Prepoznajem uređaje ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11716,6 +12458,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "PodeĹĄavanje firewalla"
@@ -12120,10 +12874,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedija - Zvuk"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Korisni programi"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentacija"
@@ -12227,10 +12977,6 @@ msgstr ""
"pregledanje Weba"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiviranje, emulatori, nadzor"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Lične finansije"
@@ -12278,59 +13024,207 @@ msgstr "Multimedija - PrĹženje CDa"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
-#~ msgid "About"
-#~ msgstr "O programu"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck nije uspio, izlazni kod %d ili signal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikacija grafičke karte: %s\n"
-#~ msgid " Help "
-#~ msgstr " Pomoć "
+#~ msgid "Choose options for server"
+#~ msgstr "Izaberite opcije za server"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-2,*-r-*"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor nije konfigurisan"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafička karta još uvijek nije konfigurisana"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Rezolucije joĹĄ nisu odabrane"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
+#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Ne mogu pristupiti kernel modulima koji odgovaraju vaĹĄem kernelu "
-#~ "(nedostaje datoteka %s)"
+#~ "\n"
+#~ "probajte izmjeniti neke parametre"
+
+#~ msgid "An error occurred:"
+#~ msgstr "DoĹĄlo je do greĹĄke"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "NapuĹĄtam za %d sekundi"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Da li je ovo ispravna vrijednost?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "DoĹĄlo je do greĹĄke, probajte izmjeniti neke parametre"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "PrikaĹži sve"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pripremam X-Window konfiguraciju"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Šta želite učiniti?"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Change Monitor"
+#~ msgstr "Izmjena Monitora"
-#~ msgid "None"
-#~ msgstr "Nijedan"
+#~ msgid "Change Graphics card"
+#~ msgstr "Izmjena Grafičke kartice"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Izaberite default štampač!"
+#~ msgid "Change Server options"
+#~ msgstr "Izmjena Server opcija"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Izmjena Rezolucije"
+
+#~ msgid "Show information"
+#~ msgstr "PrikaĹži informacije"
+
+#~ msgid "Test again"
+#~ msgstr "Testiraj ponovo"
#~ msgid ""
-#~ "With remote CUPS servers, you do not have to configure any printer here; "
-#~ "CUPS servers inform your machine automatically about their printers. All "
-#~ "printers known to your machine currently are listed in the \"Default "
-#~ "printer\" field. Choose the default printer for your machine there and "
-#~ "click the \"Apply/Re-read printers\" button. Click the same button to "
-#~ "refresh the list (it can take up to 30 seconds after the start of CUPS "
-#~ "until all remote printers are visible). When your CUPS server is in a "
-#~ "different network, you have to give the CUPS server IP address and "
-#~ "optionally the port number to get the printer information from the "
-#~ "server, otherwise leave these fields blank."
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
#~ msgstr ""
-#~ "Sa udaljenim CUPS serverom, ne morate podeĹĄavati nijedan\n"
-#~ "štampač ovdje; CUPS serveri obavještavaju vaš računar automatski\n"
-#~ "o svojim štampačima. Svi štampači koji su trenutno poznati vašem\n"
-#~ "računaru su izlistani u polju \"Podrazumjevani štampač\". Izaberite "
-#~ "podrazumjevani\n"
-#~ "štampač za vaš računar ovdje i kliknite na dugme \"Primjeni/Ponovo\n"
-#~ "pročitaj štampače\". Kliknite na isto dugme za osvježavanje liste (može\n"
-#~ "trajati do 30 sekundi nakon pokretanja CUPSa dok svi udaljeni štampači\n"
-#~ "ne postanu vidljivi). Kada je vaš CUPS server u različitoj mreži, morate "
-#~ "dati\n"
-#~ "IP adresu CUPS servera i eventualno broj porta kako bi se dobavile "
-#~ "informacije\n"
-#~ "o štampačima sa servera, inače ostavite ova polja praznim."
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Primjeni/Ponovo pročitaj štampače"
-
-#~ msgid "Configure printing system"
-#~ msgstr "PodeĹĄavanje sistema ĹĄtampe"
+#~ "Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
+#~ "skenirati. Sada možete skenirati sa komandne linije pomoću komande \"ptal-"
+#~ "hp %s scan ...\". Skeniranje putem grafičkog interfejsa ili iz GIMPa još "
+#~ "nije podržano za vaš uređaj. Više informacija možete naći u datoteci\"/"
+#~ "usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" na vašem računaru. Ako imate "
+#~ "HP LaserJet 1100 ili 1200, moĹžete skenirati samo ako ste instalirali "
+#~ "opciju za skeniranje.\n"
+#~ "\n"
+#~ "Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Koristi hard disk sa demonom"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Koristi FTP sa demonom"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista paketa za instalaciju"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "PodeĹĄavanje nivoa sigurnosti"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafička karta"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Izaberite grafičku kartu"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Izaberite X drajver"
+
+#~ msgid "X driver"
+#~ msgstr "X drajver"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Upozorenje: testiranje ove grafičke karte može zalediti računar"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standardna VGA, 640x480 na 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 na 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Kompatibilna, 1024x768 na 87 Hz sa preplitanjem (bez 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 na 87 Hz sa preplitanjem, 800x600 na 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 na 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor koji može postići 1600x1200 na 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor koji može postići 1600x1200 na 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ukupna veličina grupa koje ste izabrali je otprilike %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Ako želite da instalirate manje od ove veličine,\n"
+#~ "izaberite procenat paketa koje Ĺželite instalirati.\n"
+#~ "\n"
+#~ "Nizak procenat će instalirati samo one najbitnije pakete;\n"
+#~ "procenat 100%% će instalirati sve izabrane pakete."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Na disku imate mjesta samo za %d%% ovih paketa.\n"
+#~ "\n"
+#~ "Ako Ĺželite da instalirate manje od ovoga,\n"
+#~ "izaberite procenat paketa koje Ĺželite da instalirate.\n"
+#~ "Nizak procenat će instalirati samo one najbitnije pakete;\n"
+#~ "procenat %d%% će instalirati najveći mogući broj paketa."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr ""
+#~ "Na idućem koraku ćete biti u mogućnosti da ih izaberete nešto preciznije."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procenat paketa za instalaciju"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Izaberite nivo sigurnosti"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 0663d463f..a28b6db58 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -1,37 +1,67 @@
-# drakX translation to Catalan
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Copyright (c) 1999-2001 Softcatalŕ
+# drakbootdisk translation to Catalan.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Softcatala, linux@softcatala.org, 2000-2001
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-04-10 23:29+0200\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-10-28 01:14+0200\n"
"Last-Translator: Softcatalŕ <traddrake@softcatala.org>\n"
-"Language-Team: Catalan\n"
+"Language-Team: Catalan <info@softcatala.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configura tots els capçals independentment"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Utilitza l'extensió Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configura només la targeta \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB o més"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Escolliu un servidor X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Configuració Multi-head"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,43 +69,44 @@ msgstr ""
"El vostre sistema permet l'ús d'una configuració de múltiples capçals.\n"
"Quč voleu fer?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Targeta grŕfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccioneu la mida de memňria de la vostra targeta grŕfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccioneu una targeta grŕfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuració de l'XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolliu un servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Quina configuració de l'XFree voleu tenir?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configura tots els capçals independentment"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolliu un servidor X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Utilitza l'extensió Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configura només la targeta \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quina configuració de l'XFree voleu tenir?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "Xfree %s amb acceleració 3D de maquinari"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,34 +116,18 @@ msgstr ""
"l'Xfree %s.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "Xfree %s amb acceleració 3D de maquinari"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s,\n"
-"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
-"PENJAR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,31 +140,58 @@ msgstr ""
"PENJAR.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s,\n"
+"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
+"PENJAR."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuració de l'XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccioneu la mida de memňria de la vostra targeta grŕfica"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolliu les opcions per al servidor"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Voleu conservar els canvis?La configuració actual és:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Escolliu un monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalitzada"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "General"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Desfés"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -172,516 +214,328 @@ msgstr ""
"el podríeu fer malbé.\n"
"En cas de dubte, sigueu conservador amb aquest parŕmetre."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Velocitat de refresc horitzontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Velocitat de refresc vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "El monitor no estŕ configurat"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La targeta grŕfica encara no estŕ configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Encara no s'han escollit les resolucions"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Voleu comprovar la configuració?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Avís: la comprovació d'aquesta targeta grŕfica pot penjar-vos l'ordinador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Comprova la configuració"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 colors (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"intenteu canviar alguns parŕmetres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32.768 colors (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "S'ha produďt un error:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65.536 colors (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Sortida en %d segons"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milions de colors (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "És aquest el parŕmetre corrcte?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4.294 milions de colors (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "S'ha produďt un error, intenteu canviar alguns parŕmetres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolucions"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolució"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Escolliu la resolució i la profunditat de color"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Targeta grŕfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor xFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Més"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancelˇla"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "D'acord"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostra'ls tots"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Voleu comprovar la configuració?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolucions"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Comprova la configuració"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Disposició del teclat: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipus de ratolí: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositiu del ratolí: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Sincronització horitzontal del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Refresc vertical del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Targeta grŕfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Targeta grŕfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memňria grŕfica: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profunditat del color: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolució: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador de l'xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "S'estŕ preparant la configuració de l'X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Quč voleu fer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Canvia el monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Canvia la targeta grŕfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Canvia les opcions del servidor"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Canvia la resolució"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostra la informació"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Torna-ho a comprovar"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Surt"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Voleu conservar els canvis?La configuració actual és:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X a l'inici"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Puc configurar el vostre ordinador de manera que executi X automŕticament "
"durant l'arrencada.\n"
"Voleu que X s'iniciď quan torneu a arrencar l'ordinador?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colors (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.768 colors (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.536 colors (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milions de colors (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4.294 milions de colors (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB o més"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estŕndard, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrellaçada (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrellaçada, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA ampliada, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA no entrellaçada, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA d'alta freqüčncia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-freqüčncia que pot fer 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-freqüčncia que pot fer 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-freqüčncia que pot fer 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primer sector de la partició d'arrencada"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalˇlació del SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "On voleu instalˇlar el carregador d'arrencada?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalˇlació del LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO amb menú de text"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO amb menú grŕfic"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrencada des de DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opcions principals del carregador d'arrencada"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Carregador d'arrencada a utilitzar"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalˇlació del carregador d'arrencada"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (no funciona en BIOS antics)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacte"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compacte"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mode de vídeo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Limita les opcions de la línia d'ordres"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "limita"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Buida /tmp en cada arrencada"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Habilita perfils múltiples"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Introduďu la mida de la RAM en Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"L'opció ``Limita les opcions de la línia d'ordres'' no té cap ús sense una "
"contrasenya"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Missatge d'inicialització"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Demora de firmware obert"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Temps mŕxim d'arrencada del nucli"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Voleu habilitar l'arrencada des de CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Voleu habilitar l'arrencada des d'OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS per defecte?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -690,84 +544,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Aquestes són les diferents entrades.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Fet"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Modifica el RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Un altre SO (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imatge"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Arrel"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Afegeix"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lectura-escriptura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "No segur"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Predeterminat"
@@ -802,53 +656,75 @@ msgstr "Aquesta etiqueta ja estŕ en ús"
# #msgid "Found %s %s interfaces"
# #msgstr "S'han trobat interfícies %2$s %1$s"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, fuzzy, c-format
msgid "Found %s %s interfaces"
msgstr "S'han trobat interfícies %2$s %1$s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "En teniu una altra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfície %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Sí"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Mira la informació del maquinari"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "S'estŕ instalˇlant el programa de control per a la targeta %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mňdul %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Ara podeu proporcionar les seves opcions per al mňdul %s.\n"
+"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
+"Per exemple, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcions del mňdul:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quin programa de control %s he de provar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -865,37 +741,15 @@ msgstr ""
"cerqui al vostre ordinador la informació que necessita? Aquesta recerca\n"
"podria blocar l'ordinador, perň aixň no causaria cap dany."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Exploració automŕtica"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ara podeu proporcionar les seves opcions per al mňdul %s.\n"
-"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
-"Per exemple, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcions del mňdul:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,50 +758,55 @@ msgstr ""
"Ha fallat la cŕrrega del mňdul %s.\n"
"Voleu tornar-ho a intentar amb altres parŕmetres?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Aquesta contrasenya és massa senzilla"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Si us plau, introduďu un nom d'usuari"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari només pot contenir lletres en minúscula, números, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Aquest nom d'usuari ja s'ha afegit"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -956,32 +815,32 @@ msgstr ""
"Introduďu un usuari\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nom real"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Entrada automŕtica"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -991,123 +850,103 @@ msgstr ""
"nom d'usuari.\n"
"Si no voleu utilitzar aquesta característica, feu clic al botó Cancelˇla."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per omissió:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 ""
"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
"instalˇlació"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Tots"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalitzada"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "S'estŕ iniciant el CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Quins paquets voleu instalˇlar"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelˇla"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Estŕndard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alt"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alt"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1118,7 +957,7 @@ msgstr ""
"d'utilitzar, perň també molt sensible: no s'ha d'utilitzar en un ordinador\n"
"connectat a d'altres o a Internet. No s'hi accedeix mitjançant contrasenya."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1126,7 +965,7 @@ msgstr ""
"Ara, la contrasenya estŕ habilitada, perň l'ús com a ordinador de xarxa "
"segueix sense ser recomanable."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1136,62 +975,63 @@ msgstr ""
"s'utilitzarŕ per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Amb aquest nivell de seguretat, la utilització d'aquest sistema com a\n"
"servidor esdevé possible.\n"
"La seguretat és ara prou alta com per utilitzar el sistema com a servidor\n"
"que accepti connexions de molts clients. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Assumim les característiques del nivell 4, perň ara el sistema estŕ\n"
"totalment tancat.\n"
"Les característiques de seguretat estan al mŕxim."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escolliu el nivell de seguretat"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "S'estŕ establint el nivell de seguretat"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolliu les opcions per al servidor"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1216,13 +1056,13 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1230,39 +1070,39 @@ 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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar les"
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordres prčvies a l'arrencada, o 'c' per obtenir una línia d'ordres."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La posició ressaltada arrencarŕ automŕticament dintre de %d segons."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Escriptori"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Menú Inici"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "On voleu instalˇlar el carregador d'arrencada?"
@@ -1275,15 +1115,19 @@ msgstr "encara no s'ha implementat cap ajuda.\n"
msgid "Boot Style Configuration"
msgstr "Configuració del tipus d'arrencada"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fitxer"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fitxer/_Surt"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1318,7 +1162,7 @@ msgstr "Mode Yaboot"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Benvingut a la utilitat de compartició de la connexió a Internet!\n"
@@ -1327,8 +1171,8 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuració."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configura"
@@ -1338,7 +1182,7 @@ msgid "System mode"
msgstr "Mode de sistema"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Executa el sistema X-Window en iniciar"
#: ../../bootlook.pm_.c:148
@@ -1349,14 +1193,16 @@ msgstr "No, no vull l'entrada automŕtica"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sí, vull l'entrada automŕtica amb aquest (usuari, escriptori)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "D'acord"
@@ -1407,7 +1253,7 @@ msgstr ""
"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
"instalˇlació"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "França"
@@ -1415,7 +1261,7 @@ msgstr "França"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
@@ -1443,11 +1289,12 @@ msgstr "Noruec"
msgid "Sweden"
msgstr "Consulteu"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italiŕ"
@@ -1457,7 +1304,7 @@ msgstr "Italiŕ"
msgid "Austria"
msgstr "sčrie"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1465,8 +1312,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Si us plau, feu primer una cňpia de seguretat de les vostres dades"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Llegiu-ho atentament!"
@@ -1479,11 +1326,12 @@ msgstr ""
"Si penseu utilitzar aboot, assegureu-vos de deixar espai lliure (amb 2.048\n"
"sectors n'hi ha prou) al començament del disc"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Error"
@@ -1491,11 +1339,11 @@ msgstr "Error"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Trieu una acció"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1507,150 +1355,155 @@ msgstr ""
"Suggereixo que primer en canvieu la mida\n"
"(feu-hi clic i després feu clic a \"Canvia la mida\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Si us plau, feu clic a una partició "
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalls"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "ha fallat el muntatge"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Intercanvia"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Buit"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Altres"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipus"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Utilitzeu ``%s'' al seu lloc"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Suprimeix"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar el tipus de la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Trieu una acció"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Crea una nova partició"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Normal > Expert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Expert > Normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Desfés"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense desar la taula de particions?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Voleu comprovar la configuració?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Assigna automŕticament"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Buida-ho tot"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Més"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Informació del correu"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "S'utilitzen totes les particions primŕries"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "No puc afegir cap més partició"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1658,35 +1511,35 @@ msgstr ""
"Per tenir més particions, suprimiu-ne una per poder crear una partició "
"ampliada"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Escriu la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Muntatge automŕtic del suport extraďble"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1694,11 +1547,11 @@ msgstr ""
"La cňpia de seguretat de la taula de particions no té la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advertčncia"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1706,124 +1559,131 @@ msgstr ""
"Inseriu un disquet a la unitat\n"
"Se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "S'estŕ intentant rescatar la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Informació del correu"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punt de muntatge"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcions"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Canvia la mida"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Mou"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formata"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Munta"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Afegeix al RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Afegeix al LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmunta"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Elimina del RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Elimina del LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifica el RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Utilitza per a loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crea una nova partició"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "sector d'inici: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferčncia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "S'estŕ formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Canvia el tipus de partició"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quin sistema de fitxers voleu?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "On voleu muntar el fitxer de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1831,129 +1691,134 @@ msgstr ""
"No es pot anulˇlar el punt de muntatge, perquč aquesta partició\n"
"s'utilitza per al loopback. Elimineu primer el loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "S'estan calculant els límits del sistema de fitxers de la FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "S'estŕ canviant la mida"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "No es pot canviar la mida d'aquesta partició"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Cal fer una cňpia de seguretat de totes les dades d'aquesta partició"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar la mida de la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Escolliu la nova mida"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "A quin disc us voleu desplaçar?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "A quin sector us voleu desplaçar?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "S'estŕ desplaçant"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "S'estŕ desplaçant la partició..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Escolliu un RAID existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nou"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Escolliu un LVM existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Nom LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Aquesta partició no es pot utilitzar per al loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Nom real"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Un altre loopback ja estŕ utilitzant el fitxer, escolliu-ne un altre"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Opcions del mňdul:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositiu"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivell"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "mida del tros"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operació és perillosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Quin tipus de particionament?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Quins paquets voleu instalˇlar"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1965,7 +1830,7 @@ msgstr ""
"O esteu utilitzant LILO, i no funcionarŕ, o no l'esteu utilitzant i no "
"necessiteu el /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1978,7 +1843,7 @@ msgstr ""
"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
"partició /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1989,138 +1854,138 @@ msgstr ""
"boot.\n"
"Per tant, assegureu-vos d'afegir una partició /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriurŕ al disc!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldrŕ tornar a arrencar per tal que les modificacions tinguin efecte"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "S'estŕ formatant"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "S'estŕ formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "S'estŕ formatant la partició %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "l'mkraid ha fallit"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Resolució: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositiu: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat del DOS: %s (només és una suposició)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipus: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nom: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Mida: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindre %d a cilindre %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Muntat\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Fitxer(s) de loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2128,27 +1993,27 @@ msgstr ""
"La partició s'ha arrencat per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Mida del tros %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2160,7 +2025,7 @@ msgstr ""
"una partició de programa de control;\n"
"és millor que no la toqueu.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2172,65 +2037,65 @@ msgstr ""
"especial és per arrencar\n"
"el vostre sistema en dual.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Mida: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capçals, %s sectors\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informació: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discs LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "al bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya és massa senzilla (ha de tenir com a mínim %d carŕcters)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2241,36 +2106,66 @@ msgstr "Canvia el tipus de partició"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Si us plau, feu clic a una partició "
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autenticació"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nom d'usuari"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nom d'usuari"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domini del NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "servidor DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "no sé com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produďt un error en muntar %s: %s"
@@ -2287,70 +2182,323 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de començar amb una /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No podeu utilitzar un volum lňgic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers de root"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Necessiteu un sistema de fitxers real (ext2, reiserfs) per a aquest punt de "
"muntatge\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "No podeu utilitzar un volum lňgic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "No hi ha prou espai per a l'assignació automŕtica"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "S'ha produďt un error en obrir %s per escriure: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"S'ha produďt un error: no s'han trobat dispositius vŕlids on crear nous "
"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
"problema"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "No teniu cap partició!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Utilitza la detecció automŕtica"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "General"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Targeta de memňria (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "s'estŕ formatant"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Canvia el tipus de partició"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Surt"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ajuda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ajuda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ajuda/_Quant a.."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Mňdul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Targeta de memňria (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancelˇla"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Mňdul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Descripció"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autenticació"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Seleccioneu el fitxer"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositiu de la passarelˇla"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detecció del disc dur"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Mira la informació del maquinari"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostra la informació"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configura el ratolí"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectat al port %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Si us plau, espereu"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segons"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Exploració automŕtica"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2364,7 +2512,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2480,9 +2628,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2678,7 +2825,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2690,9 +2837,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2738,21 +2884,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2768,9 +2913,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Ara és quan heu de decidir en quin lloc del vostre disc dur voleu "
"instalˇlar\n"
@@ -2859,9 +3004,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3005,38 +3149,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3233,11 +3371,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3296,7 +3434,7 @@ msgstr ""
"d'instalˇlació\n"
"tret que sapigueu quč esteu fent."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3311,7 +3449,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3326,7 +3464,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3342,7 +3480,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3350,23 +3488,23 @@ msgstr ""
"Si us plau, seleccioneu el port correcte. Per exemple, el port COM1 en MS\n"
"Windows s'anomena ttyS0 en GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3388,7 +3526,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3410,7 +3548,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3418,7 +3556,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3439,7 +3577,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3463,7 +3601,7 @@ msgstr ""
"operatius; en aquest cas podeu suprimir les entrades corresponents, perň\n"
"aleshores us caldrŕ un disc d'arrencada per poder-los arrencar!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3478,29 +3616,28 @@ msgstr ""
"Tret que sabeu exactament quč esteu fent, escolliu \"Primer sector\n"
"de la unitat (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3509,7 +3646,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3535,7 +3672,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"El DrakX intentarŕ trobar el(s) adaptador(s) SCSI PCI. \n"
@@ -3562,7 +3699,7 @@ msgstr ""
"maquinari, del lloc web del fabricant (si teniu accés a Internet) o del\n"
"Microsoft Windows (si el teniu al sistema)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3573,9 +3710,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3587,7 +3723,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3676,7 +3812,7 @@ msgstr ""
"Aquesta opció també es ressaltarŕ amb un '*' si premeu Tab per veure les\n"
"seleccions d'arrencada."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3704,9 +3840,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3757,10 +3892,10 @@ msgstr ""
" - OS per defecte: podeu seleccionar amb quin OS, per defecte, s'arrencarŕ\n"
"quan la demora de l'Open Firmware venci."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3768,12 +3903,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3789,7 +3923,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3800,7 +3934,7 @@ msgstr ""
"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran "
"recuperar."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3821,7 +3955,7 @@ msgstr ""
"dada\n"
"ni partició d'aquest disc."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3829,12 +3963,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3849,20 +3983,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "No es pot utilitzar l'emissió sense un domini NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Aquest disquet no estŕ formatat en FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3870,7 +4004,7 @@ msgstr ""
"Per utilitzar aquesta selecció de paquets desada, arrenqueu la instalˇlació "
"amb ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produďt un error en llegir el fitxer %s"
@@ -3900,7 +4034,7 @@ msgstr "Heu de tenir una partició d'intercanvi"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3908,60 +4042,60 @@ msgstr ""
"\n"
"Voleu continuar igualment?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Heu de tenir una partició d'intercanvi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Utilitza l'espai lliure"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Utilitza la partició existent"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "No existeix cap partició per utilitzar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Utilitza la particio Windows per al loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Quina partició voleu utilitzar per al Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Escolliu les mides"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Mida de la partició arrel en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Mida de la partició d'intercanvi en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Utilitza l'espai lliure de la partició de Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "A quina partició voleu canviar la mida?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "S'estan calculant els límits del sistema de fitxers de Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3970,13 +4104,16 @@ msgstr ""
"El redimensionador de la FAT no pot gestionar la vostra partició, \n"
"s'ha produďt l'error següent: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"La partició de Windows estŕ massa fragmentada; si us plau, executeu "
"``defrag'' primer"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3999,55 +4136,55 @@ msgstr ""
"vostres dades.\n"
"Quan estigueu segur, premeu D'acord."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Quina mida voleu deixar per a la partició de Windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partició %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ha fallat la redimensió de la FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"No hi ha particions FAT a quč canviar la mida o per utilitzar-les com a "
"loopback (o no queda prou espai)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Esborra el disc complet"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Elimina el Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Teniu més d'un disc dur; en quin voleu instalˇlar el Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionament personalitzat de disc"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Utilitza l'fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4056,11 +4193,11 @@ msgstr ""
"Ara podeu fer les particions a %s.\n"
"Quan acabeu, no oblideu desar-les utiltzant `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "No teniu prou espai lliure a la partició de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "No puc trobar espai per a la instalˇlació"
@@ -4069,16 +4206,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"L'assistent de particionament del DrakX ha trobat les solucions següents:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ha fallat el particionament: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "S'estŕ activant la xarxa"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "S'estŕ desactivant la xarxa"
@@ -4090,12 +4227,12 @@ msgstr ""
"S'ha produďt un error, perň no sé com gestionar-lo correctament.\n"
"Si continueu, és sota la vostra responsabilitat."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplica el punt de muntatge %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4107,12 +4244,12 @@ msgstr ""
"Comproveu el CD-ROM en un ordinador instalˇlat mitjançant \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
@@ -4122,9 +4259,9 @@ msgstr "No hi ha cap unitat de disquet disponible"
msgid "Entering step `%s'\n"
msgstr "S'estŕ introduint el pas `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4135,204 +4272,158 @@ msgstr ""
"mode text. Per fer-ho, premeu `F1' en arrencar des del CD-ROM i escriviu "
"`text'"
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Tipus d'instalˇlació"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'instalˇlació següents:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"La mida total dels grups que heu seleccionat es d'aproximadament %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si no voleu instalˇlar tants MB, seleccioneu el percentatge de paquets\n"
-"que voleu instalˇlar.\n"
-"\n"
-"Un percentatge baix instalˇlarŕ només els paquets més importants;\n"
-"un percentatge del 100%% instalˇlarŕ tots els paquets seleccionats."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Només teniu prou espai al disc per a %d%% d'aquests paquets.\n"
-"\n"
-"Si en voleu instalˇlar menys, seleccioneu el percentatge de paquets\n"
-"que voleu instalˇlar.\n"
-"Un percentatge baix instalˇlarŕ només els paquets més importants;\n"
-"un percentatge del %d%% instalˇlarŕ tants paquets com sigui possible."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Podreu fer una elecció més concreta al pas següent"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentatge de paquets per instalˇlar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Selecció del grup de paquets"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Selecció individual de paquets"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mida total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paquet incorrecte"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nom: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versió: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Mida: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importŕncia: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No podeu seleccionar aquest paquet perquč no queda prou espai per instalˇlar-"
"lo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Ara s'instalˇlaran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Ara s'eliminaran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Aquest paquet és obligatori; no es pot deseleccionar"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "No podeu desseleccionar aquest paquet; ja estŕ instalˇlat"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Aquest paquet s'ha d'actualitzar\n"
"Esteu segur que voleu desseleccionar-lo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Mostra automŕticament els paquets seleccionats"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalˇla"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Desa la selecció de paquets"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Desinstalˇla"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu instalˇlar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "S'estŕ instalˇlant"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "S'estŕ estimant"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Si us plau, espereu, s'estŕ preparant la instalˇlació"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquets"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "S'estŕ instalˇlant el paquet %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Accepta"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rebutja"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4348,17 +4439,17 @@ msgstr ""
"Si no el teniu, premeu Cancelˇla per no fer la instalˇlació des d'aquest CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "S'ha produďt un error en ordenar els paquets"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "S'ha produďt un error en instalˇlar els paquets"
@@ -4435,11 +4526,11 @@ msgstr "S'ha produďt un error"
msgid "Do you really want to leave the installation?"
msgstr "Voleu reiniciar la xarxa"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Acord de llicčncia"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4454,7 +4545,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4663,114 +4754,118 @@ msgstr ""
"Per a qualsevol tema relacionat amb aquest document, poseu-vos en\n"
"contacte amb MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclat"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Aquesta és la llista completa de teclats disponibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Quin tipus d'instalˇlació voleu?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalˇla/Actualitza"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Es tracta d'una instalˇlació o d'una actualització?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomanada"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Actualitza"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Desa la selecció de paquets"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port del ratolí"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Si us plau, seleccioneu el port sčrie a quč estŕ connectat el vostre ratolí."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulació dels botons"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulació del botó 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulació del botó 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "S'estan configurant les targetes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "S'estŕ configurant l'IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "no hi ha particions disponibles"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Escolliu els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4781,7 +4876,7 @@ msgstr ""
"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
"(l'error és %s)\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4789,143 +4884,146 @@ msgstr ""
"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
"Si continueu, és sota la vostra responsabilitat!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "No s'ha trobat cap partició arrel"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partició arrel"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Quina és la partició arrel (/) del vostre sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldrŕ tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Voleu comprovar els blocs incorrectes?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "S'estan formatant les particions"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "S'estŕ creant i formatant el fitxer %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"No hi ha prou intercanvi per completar la instalˇlació; si us plau, afegiu-ne"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "S'estan cercant els paquets disponibles"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "S'estan cercant els paquets a actualitzar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "No podeu desseleccionar aquest paquet; ja estŕ instalˇlat"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Al vostre sistema no li queda prou espai per a la instalˇlació o "
"actualització (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mínima (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomanada (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Restaura des del disquet"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaura des del disquet"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Selecció del grup de paquets"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Escolliu el paquet a instalˇlar"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Espera"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4935,16 +5033,16 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancelˇla.\n"
"Si només falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "S'estŕ preparant la instalˇlació"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4953,23 +5051,23 @@ msgstr ""
"S'estŕ instalˇlant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Publica la configuració de la instalˇlació "
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5034,171 +5132,202 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"S'estŕ contactant amb el mirror per obtenir la llista dels paquets "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu un mirror al qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"S'estŕ contactant amb el mirror per obtenir la llista dels paquets "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "En quina zona horŕria us trobeu?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "El rellotge del vostre ordinador estŕ regulat a GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Cap impressora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "En teniu una altra?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resum"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Ratolí"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Zona horŕria"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Utilitza el NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Elimina el Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Impressora local"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya és massa senzilla (ha de tenir com a mínim %d carŕcters)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticació"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticació"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS d'autenticació"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autenticació"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Domini del NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NIS"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5228,19 +5357,19 @@ msgstr ""
"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
"a la primera unitat i premeu \"D'acord\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5268,7 +5397,7 @@ msgstr ""
"sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5277,30 +5406,30 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
"d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "S'estŕ creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "S'estŕ preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5308,11 +5437,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5321,18 +5450,18 @@ msgstr ""
"voleu intentar igualment la instalˇlació encara que aixň destrueixi la "
"primera partició?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalˇla el LILO"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ha fallat la instalˇlació del carregador d'arrencada. S'ha produďt l'error "
"següent:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5350,18 +5479,17 @@ msgstr ""
" Després, escriviu: shut-down\n"
"En l'arrencada següent heu de veure l'indicador del carregador d'arrencada."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "S'estŕ creant el diquet d'instalˇlació automŕtica"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5371,7 +5499,8 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5382,7 +5511,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5396,18 +5525,22 @@ msgstr ""
"Mandrake Linux a la fe d'errates que hi ha a \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"La informació sobre com configurar el vostre sistema estŕ disponible a\n"
"l'últim capítol d'instalˇlació de la Guia Oficial de l'Usuari del\n"
"Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Genera un disquet per a la instalˇlació automŕtica"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5422,15 +5555,15 @@ msgstr ""
"\n"
"Potser preferireu repetir la instalˇlació.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automŕtica"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Repeteix"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Desa la selecció de paquets"
@@ -5458,421 +5591,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Trieu una acció"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avançat"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Si us plau, espereu"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informació"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandeix l'arbre"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Redueix l'arbre"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Commuta entre pla i ordenat per grups"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Elecció incorrecta, torneu-ho a intentar\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "La vostra elecció? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "La vostra elecció? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcions: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "La vostra elecció? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Txec (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alemany"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espanyol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finčs"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francčs"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noruec"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polončs"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Suec"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Teclat RU"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Teclat EU"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iraniŕ"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeni (antic)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeni (mŕquina d'escriure)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeni (fončtic)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjančs (llatí)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeni (fončtic)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Búlgar"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiler (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorús"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suís (disposició alemanya)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suís (disposició francesa)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Txec (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alemany (sense tecles inoperatives)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dančs"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruec)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniŕ"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiŕ (disposició \"russa\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiŕ (disposició \"llatina\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hongarčs"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israeliŕ"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israeliŕ (fončtic)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraniŕ"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandčs"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiŕ"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japončs de 106 tecles"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Teclat coreŕ"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Espanyol sud-americŕ"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituŕ AZERTY (antic)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituŕ AZERTY (nou)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituŕ \"fila de números\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituŕ \"fončtic\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Ubicació"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedoni"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandčs"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polončs (disposició qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polončs (disposició qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugučs"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadenc (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Eslovč"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslovac (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslovac (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidjančs (cirílˇlic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Taula"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclat tai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclat tai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradicional, model \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (modern, model \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraďnčs"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Teclat EU (internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"fila numčrica\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslau (llatí/cirílˇlic)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5885,7 +6002,31 @@ msgstr "Muntatges circulars %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Elimineu primer els volums lňgics\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Número de telčfon"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formata les particions"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5926,10 +6067,6 @@ msgstr "1 botó"
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "General"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "De bola"
@@ -5994,38 +6131,54 @@ msgstr "cap"
msgid "No mouse"
msgstr "Cap ratolí"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Per activar el ratolí,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finčs"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Següent ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Aixň és correcte?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informació"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandeix l'arbre"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Redueix l'arbre"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Commuta entre pla i ordenat per grups"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Connecta't a internet"
@@ -6072,7 +6225,7 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
"No puc configurar aquest tipus de connexió."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Escolliu la interfície de xarxa"
@@ -6087,7 +6240,7 @@ msgstr ""
msgid "no network card found"
msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "S'estŕ configurant la xarxa"
@@ -6103,15 +6256,15 @@ msgstr ""
"El nom ha de ser complet,\n"
"com ara ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nom de l'ordinador central"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Assistent de configuració de xarxa"
@@ -6159,7 +6312,7 @@ msgstr "Configuració de l'XDSI"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Seleccioneu el vostre proveďdor.\n"
" Si no és a la llista, seleccioneu No és a la llista"
@@ -6182,14 +6335,14 @@ msgstr "Resta del món"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Resta del món \n"
" cap canal D (línies llogades)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Quin protocol voleu utilitzar?"
#: ../../network/isdn.pm_.c:199
@@ -6213,7 +6366,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Si teniu una targeta ISA, els valors de la pantalla següent han de ser "
@@ -6230,13 +6384,13 @@ msgid "Continue"
msgstr "Continua"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Quina targeta XDSI teniu ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"He detectat una targeta PCI XDSI, perň no en conec el tipus. Si us plau, "
"seleccioneu una targeta PCI a la pantalla següent."
@@ -6256,47 +6410,47 @@ msgstr ""
msgid "Dialup options"
msgstr "Opcions de marcatge"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nom de la connexió"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Número de telčfon"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID d'entrada"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Basat en script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Basat en terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nom de domini"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primer servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segon servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6304,7 +6458,7 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6312,11 +6466,11 @@ msgstr ""
"\n"
"Podeu tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Ara mateix esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6324,35 +6478,35 @@ msgstr ""
"\n"
"Podeu connectar-vos a Internet o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Ara mateix no esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Connecta"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Desconnecta"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Configura una connexió per cable"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Connexió i configuració d'Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6366,12 +6520,12 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuració de xarxa"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6383,9 +6537,9 @@ msgstr ""
"Feu clic a D'acord per conservar la configuració, o a Cancelˇla per tornar a "
"configurar la connexió a Internet i xarxa.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6396,93 +6550,99 @@ msgstr ""
"Si no voleu utilitzar la detecció automŕtica, desactiveu el quadre de "
"verificació.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Escolliu el perfil per configurar"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Utilitza la detecció automŕtica"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mode expert"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Connexió normal per mňdem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectat al port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Connexió XDSI"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "s'ha detectat %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Connexió LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectat a la interfície %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Connexió de cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Connexió de cable"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Connexió LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "s'han detectat una o diverses targetes Ethernet"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Escolliu l'eina que voleu utilitzar "
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
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:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Connexió a Internet compartida"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Voleu iniciar la connexió en arrencar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuració de xarxa"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6493,7 +6653,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6503,7 +6663,7 @@ msgstr ""
"\n"
"Ara s'aplicarŕ la configuració al sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6511,16 +6671,16 @@ msgstr ""
"Després d'aixň, és recomanable que reinicieu l'entorn X per\n"
"evitar problemes deguts al canvi de nom de l'ordinador central."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6529,7 +6689,7 @@ msgstr ""
"Només cal que accepteu mantenir-lo configurat.\n"
"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuració."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6539,38 +6699,43 @@ msgstr ""
"S'ha d'introduir cada element com a una adreça IP amb notació decimal amb\n"
"punts (per exemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "S'estŕ configurant el dispositiu de xarxa %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (programa de control %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Adreça IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Submŕscara de la xarxa"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP automŕtic"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciat en l'arrencada"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6582,64 +6747,64 @@ msgstr ""
"``mybox.mylab.myco.com''.\n"
"També podeu introduir l'adreça IP de la passarelˇla, si en teniu una"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositiu de la passarelˇla"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuració dels proxys"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "El proxy ha de ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuració d'Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Voleu intentar connectar-vos a Internet ara?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "S'estŕ comprovant la vostra conexió..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ara, el sistema estŕ connectat a Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Per raons de seguretat, ara es desconnectarŕ."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6647,114 +6812,119 @@ msgstr ""
"No sembla que el sistema estigui connectat a Internet.\n"
"Intenteu tornar a configurar la connexió."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuració de la connexió"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Si us plau, ompliu o marqueu el camp inferior"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Targeta IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Targeta de memňria (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Targeta d'E/S"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Targeta d'E/S_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Targeta d'E/S_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "El vostre telčfon particular"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nom del proveďdor (p.ex. proveidor.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Número de telčfon del proveďdor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 del proveďdor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 del proveďdor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Escolliu el vostre teclat"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Mode de marcatge"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Tipus de connexió: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Tipus de connexió: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Entrada del compte (nom d'usuari)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Contrasenya del compte"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ha fallat el muntatge: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Aquesta plataforma no suporta particions esteses"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Hi ha un forat a la vostra taula de particions, perň no puc utilitzar-lo.\n"
"L'única solució és moure les particions primŕries per fer que el forat quedi "
"contigu a les particions ampliades"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ha fallat la restauració del fitxer %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "S'ha produďt un error en escriure al fitxer %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6764,193 +6934,193 @@ msgstr ""
"Ha fallat una comprovació de la integritat de les dades. \n"
"Aixň vol dir que qualsevol cosa que s'escrigui al disc acabarŕ feta malbé"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "ha de tenir"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "important"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "molt bonic"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bonic"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "potser"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remot"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impressora de xarxa (TCP/sňcol)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servidor de la impressora"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Impressora local"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "S'ha produďt un error en escriure al fitxer %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(mňdul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP del servidor CUPS"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Predeterminat)"
@@ -6973,12 +7143,12 @@ msgstr ""
"impressora; les impressores es detectaran automŕticament.\n"
"En cas de dubte, seleccioneu \"Servidor CUPS remot\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuració de la LAN"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Servidor CUPS remot"
@@ -7009,7 +7179,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "El número de port ha de ser numčric"
@@ -7018,7 +7188,7 @@ msgstr "El número de port ha de ser numčric"
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7027,22 +7197,13 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Configuració del tipus d'arrencada"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "S'estan detectant els dispositius..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ports de comprovació"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7055,14 +7216,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7080,12 +7241,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7099,11 +7260,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7113,35 +7274,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Utilitza la detecció automŕtica"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Ports de comprovació"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "s'ha detectat %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7149,43 +7314,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7193,7 +7358,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7201,74 +7366,84 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Si us plau, seleccioneu el port sčrie al qual teniu connectat el mňdem."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Configuració"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "S'estŕ instalˇlant el paquet %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "S'estŕ instalˇlant el paquet %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "S'estŕ instalˇlant el paquet %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcions de la impressora lpd remota"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7278,31 +7453,31 @@ msgstr ""
"el nom de l'ordinador central del servidor de la impressora i el nom de la\n"
"cua d'aquest servidor on s'hi han de situar les tasques."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7317,35 +7492,35 @@ msgstr ""
"de compartició de la impressora a quč voleu accedir i el nom d'usuari,\n"
"contrasenya i informació de grup si són necessaris."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Ordinador central del servidor SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nom de compartició"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grup de treball"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7369,7 +7544,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7378,7 +7553,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7386,11 +7561,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcions de la impressora NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7405,28 +7580,28 @@ msgstr ""
"la impressora a quč voleu accedir i el nom d'usuari i contrasenya si són\n"
"necessaris."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de la impressora"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nom de la cua d'impressió"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opcions de la impressora de sňcol"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7437,60 +7612,56 @@ msgstr ""
"Per imprimir a una impressora de sňcol, heu d'indicar el nom de l'ordinador\n"
"central de la impressora i, opcionalment, el número de port."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nom de la impressora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descripció"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ubicació"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7505,28 +7676,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Aixň és correcte?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Connexió de la impressora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Quin tipus d'impressora teniu?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7535,18 +7706,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuració del mňdem"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7556,12 +7727,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuració d'Internet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7569,7 +7740,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7582,7 +7753,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7592,34 +7763,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Voleu comprovar la impressió?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Ports de comprovació"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7627,45 +7798,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Sí, imprimeix ambdues pŕgines de prova"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Impressora"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Eines estŕndard"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7681,7 +7852,7 @@ msgstr ""
"\n"
"Funciona correctament?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7691,16 +7862,16 @@ msgstr ""
"Degut a aixň, pot passar un cert temps abans no comenci la impressió.\n"
"Funciona correctament?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7709,15 +7880,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7726,49 +7897,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7778,7 +7949,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7787,30 +7958,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Tanca"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "S'estŕ desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "S'estŕ desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "S'estŕ desactivant la xarxa"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "S'estŕ desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Tanca"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7818,38 +8000,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuració d'Internet"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7859,51 +8041,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7911,64 +8093,64 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nom de la impressora només pot constar de lletres, números i el carŕcter "
"de subratllat"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "S'estŕ comprovant la vostra conexió..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Configura la xarxa"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "El monitor no estŕ configurat"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7976,12 +8158,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "S'estŕ configurant la xarxa"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7991,34 +8173,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Quin sistema d'impressió voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alt"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoic"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8033,12 +8215,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Quin sistema d'impressió voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8052,69 +8234,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Seleccioneu la connexió de la impressora"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Quin sistema d'impressió voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "S'estŕ instalˇlant el paquet %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Voleu configurar una impressora?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8125,7 +8307,7 @@ msgstr ""
"Aquestes són les cues d'impressió següents.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8135,139 +8317,143 @@ msgstr ""
"Aquestes són les cues d'impressió següents.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Configura la xarxa"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Mode normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Surt"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Voleu comprovar la configuració?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuració del mňdem"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Voleu comprovar la configuració?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Connexió a Internet compartida"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Connexió de la impressora"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Voleu comprovar la configuració?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Voleu reiniciar la xarxa"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8351,24 +8537,62 @@ msgstr "Les contrasenyes no coincideixen"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "No es pot afegir una partició a un RAID _formatat_ md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "No es pot escriure al fitxer %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "l'mkraid ha fallit"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "l'mkraid ha fallit (potser manquen eines del RAID?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt més "
+"fŕcil\n"
+"d'utilitzar, perň també molt sensible: no s'ha d'utilitzar en un ordinador\n"
+"connectat a d'altres o a Internet. No s'hi accedeix mitjançant contrasenya."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Amb aquest nivell de seguretat, la utilització d'aquest sistema com a\n"
+"servidor esdevé possible.\n"
+"La seguretat és ara prou alta com per utilitzar el sistema com a servidor\n"
+"que accepti connexions de molts clients. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Configuració de la LAN"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcions"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8424,7 +8648,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8494,7 +8718,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8570,7 +8794,7 @@ msgstr ""
"executant en ordinadors que actuen com a servidors per a protocols que\n"
"utilitzen el mecanisme RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8670,7 +8894,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mode de sistema"
@@ -8793,6 +9017,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Control Center"
@@ -8897,6 +9122,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "S'estŕ instalˇlant el paquet %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8905,6 +9139,161 @@ msgstr ""
"No puc llegir la vostra taula de particions, estŕ massa malmesa per a mi :(\n"
"Intentaré seguir buidant les particions incorrectes"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuració d'Internet"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Afegeix un usuari"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Ajuda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Sense connexió"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Suprimeix"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Seleccioneu el fitxer"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Afegeix un usuari"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "S'estŕ configurant..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "torna a configurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Inseriu un disquet a la unitat %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "No hi ha cap unitat de disquet disponible"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8946,6 +9335,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "S'estŕ creant el diquet d'instalˇlació automŕtica"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8954,47 +9348,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Felicitats!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalˇla"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Afegeix un usuari"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "S'estŕ formatant el fitxer de loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9002,15 +9389,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9018,712 +9397,775 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "S'ha produďt un error en llegir el fitxer %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Selecció del grup de paquets"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Elimina la cua"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Elimina el Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Si us plau, comproveu el ratolí."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Sense contrasenya"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Connexió LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Seleccioneu la connexió de la impressora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Si us plau, feu clic a una partició "
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Xarxa:"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipus"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Voleu utilitzar l'optimització del disc dur?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Voleu utilitzar l'optimització del disc dur?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Espera"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "De bola"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "De bola"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Opcions del mňdul:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuració de xarxa"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr "Xarxa:"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Sistemes de fitxers"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositiu del ratolí: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcions"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr ""
"Si us plau, seleccioneu el port sčrie al qual teniu connectat el mňdem."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuració de xarxa"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Si us plau, comproveu el ratolí."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Connexió LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Seleccioneu la connexió de la impressora"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaura des del disquet"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Altres"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Instalˇla el sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Personalitzada"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Ajuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Estat:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Text"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Paquets a instalˇlar"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ara s'instalˇlaran els paquets següents"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Desa al fitxer"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuració de xarxa"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuració de xarxa"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuració de la LAN"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuració de la LAN"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Sistemes de fitxers"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9755,7 +10197,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9764,7 +10206,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9805,7 +10247,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9833,12 +10275,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -9855,7 +10302,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9895,7 +10342,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9906,7 +10353,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9919,7 +10366,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9963,105 +10410,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Ha fallat la instalˇlació del %s. S'ha produďt l'error següent:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Eines de consola"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Control Center"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "obligatori"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ratolí"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impressora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nom de compartició"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Assistent de configuració de xarxa"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autenticació"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Selecció del grup de paquets"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Si us plau, espereu"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Surt de la instalˇlació"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
+"instalˇlació"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuració de xarxa (%d adaptadors)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Suprimeix el perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil a suprimir:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Perfil nou..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nom de l'ordinador central: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Accés a Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipus:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Passarelˇla:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Intefície:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Estat:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configura l'accés a Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuració de la LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Programa de control"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfície"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocol"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Estat:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configura la xarxa d'ŕrea local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Aplica"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Si us plau, espereu... s'estŕ aplicant la configuració"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Connectat"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Sense connexió"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Connecta..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Desconnecta..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuració de la LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocol d'arrencada"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciat en l'arrencada"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Actiu"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Actiu"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuració de la connexió a Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuració de la connexió a Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipus de connexió: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parŕmetres"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Passarelˇla"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Targeta Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "sintaxi: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nom del mňdul"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Mida"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creació de discs d'arrencada"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "predeterminat"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Error del DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versió del nucli"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "General"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ŕrea d'experts"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "Arguments opcional de l'mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Afegeix un mňdul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "imposa"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "si cal"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omet els mňduls SCSI"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omet els mňduls RAID"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Elimina un mňdul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Sortida"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Munta el disc"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"No hi ha cap suport al dispositiu %s.\n"
+"Si us plau, inseriu-ne un."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "No es pot bifurcar: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"No es pot tancar l'mkbootdisk correctament: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "no s'ha trobat %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Fet"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formata el disquet"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "S'estŕ preparant la instalˇlació"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "limita"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "limita"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10070,123 +10943,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formata les particions"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "S'estan desinstalˇlant els RPM"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Punt de muntatge"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Oficina"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Interromp"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Impressora"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Instalˇla el sistema"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Seleccioneu el fitxer"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Impressora remota"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Missatge d'inicialització"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalˇla"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Surt de la instalˇlació"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Connexió a Internet compartida"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "La connexió a Internet compartida estŕ habilitada"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10198,31 +11070,31 @@ msgstr ""
"\n"
"Quč voleu fer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "inhabilita"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "deixa-ho córrer"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "torna a configurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "S'estan inhabilitant els servidors..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ara, la compartició de la connexió a Internet estŕ inhabilitada."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "La connexió a Internet compartida estŕ inhabilitada"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10234,19 +11106,19 @@ msgstr ""
"\n"
"Quč voleu fer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "habilita"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "S'estan habilitant els servidors..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ara, la connexió compartida a Internet estŕ habilitada."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10263,21 +11135,21 @@ msgstr ""
"Nota: per configurar una xarxa d'ŕrea local (LAN), us cal un adaptador de "
"xarxa dedicat."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfície %s (utilitzant el mňdul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfície %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10285,11 +11157,11 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
"executeu l'eina de configuració de maquinari."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interfície de la xarxa"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10304,7 +11176,7 @@ msgstr ""
"\n"
"Ara configuraré la vostra xarxa d'ŕrea local amb aquest adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10312,12 +11184,12 @@ msgstr ""
"Si us plau, escolliu l'adaptador de xarxa que es connectarŕ\n"
"a la vostra xarxa d'ŕrea local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "El monitor no estŕ configurat"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10327,17 +11199,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuració del tipus d'arrencada"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuració del mňdem"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10348,7 +11220,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10360,35 +11232,35 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP del servidor CUPS"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"S'ha trobat un conflicte potencial d'adreça LAN en la configuració actual de "
"%s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "S'ha detectat la configuració del sistema de tallafocs!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10396,22 +11268,22 @@ msgstr ""
"Atenció! S'ha detectat una configuració existent del sistema de tallafocs. "
"Potser us caldrŕ fer algun ajustament manual després de la instalˇlació."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "S'estŕ configurant..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"S'estan configurant les seqüčncies, instalˇlant el programari, iniciant els "
"servidors..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Hi ha hagut problemes en instalˇlar el paquet %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10422,23 +11294,23 @@ msgstr ""
"vostra xarxa d'ŕrea local utilitzant la configuració automŕtica de xarxa "
"(DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuració ja s'ha realitzat, perň ara estŕ inhabilitada."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuració ja s'ha realitzat i ara estŕ habilitada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No s'ha configurat mai cap connexió compartida a Internet."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configuració de la compartició de la connexió a Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10453,209 +11325,6 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuració."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuració de xarxa (%d adaptadors)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Suprimeix el perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a suprimir:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Perfil nou..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nom de l'ordinador central: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accés a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipus:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Passarelˇla:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Intefície:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estat:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configura l'accés a Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Programa de control"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfície"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Estat:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configura la xarxa d'ŕrea local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplica"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Si us plau, espereu... s'estŕ aplicant la configuració"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connectat"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Sense connexió"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Connecta..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconnecta..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocol d'arrencada"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciat en l'arrencada"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Actiu"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Actiu"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuració de la connexió a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuració de la connexió a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipus de connexió: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parŕmetres"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Passarelˇla"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Targeta Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "S'estŕ establint el nivell de seguretat"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Control Center"
@@ -10664,94 +11333,130 @@ msgstr "Control Center"
msgid "Choose the tool you want to use"
msgstr "Escolliu l'eina que voleu utilitzar "
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Canadenc (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "França"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandčs"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "sčrie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "S'ha produďt un error en instalˇlar els paquets"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10796,7 +11501,7 @@ msgstr "No es pot iniciar l'actualització en directe !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10845,13 +11550,9 @@ msgstr "/_Opcions"
msgid "/Options/Test"
msgstr "/Opcions/Prova"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ajuda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Ajuda/_Quant a..."
+msgstr "/Ajuda/_Quant a.."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10912,7 +11613,7 @@ msgstr "Calendari"
msgid "Content of the file"
msgstr "Contingut del fitxer"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10921,81 +11622,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "si us plau, espereu, s'estŕ analitzant el fitxer: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Configuració de la LAN"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache i Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "ombra"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nom de domini"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "dispositiu"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de la impressora"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interessant"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "s'estŕ formatant"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Configuració"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Anomena i desa..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no s'ha trobat cap serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Voleu emular el tercer botó?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "S'estan detectant els dispositius..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11039,6 +11770,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Configuració del sistema de tallafocs"
@@ -11446,10 +12189,6 @@ msgid "Multimedia - Sound"
msgstr "Multimčdia - So"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitats"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentació"
@@ -11553,10 +12292,6 @@ msgstr ""
"per navegar pel Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arxivament, emuladors, monitorització"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Comptabilitat personal"
@@ -11605,3374 +12340,212 @@ msgstr "Multimčdia - Gravació de CD"
msgid "Scientific Workstation"
msgstr "Estació científica de treball"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Interromp"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Cap"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Escolliu l'usuari per omissió:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Impressora remota"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ara podeu proporcionar les seves opcions per al mňdul %s."
-
-#~ msgid "mount failed"
-#~ msgstr "ha fallat el muntatge"
-
-#~ msgid "Low"
-#~ msgstr "Baix"
-
-#~ msgid "Medium"
-#~ msgstr "Mitjŕ"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Poques millores per a aquest nivell de seguretat; la principal és que hi "
-#~ "ha\n"
-#~ "més avisos i comprovacions de seguretat."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimčdia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Mode d'arrencada"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Expert"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "El GNU/Linux gestiona l'hora en GMT (Hora de Greenwich) i la\n"
-#~ "tradueix a l'hora local segons la zona horŕria seleccionada."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Connecta't a Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Desconnecta't d'Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configura la connexió de xarxa (LAN o Internet)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "A quin disc us voleu desplaçar?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informació"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Estació de treball GNOME"
+#~ msgid "Choose options for server"
+#~ msgstr "Escolliu les opcions per al servidor"
-#~ msgid "authentification"
-#~ msgstr "autenticació"
+#~ msgid "Monitor not configured"
+#~ msgstr "El monitor no estŕ configurat"
-#~ msgid "user"
-#~ msgstr "usuari"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "L'Apache és un servidor de World Wide Web. S'utilitza per servir fitxers\n"
-#~ "HTML i CGI."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "La targeta grŕfica encara no estŕ configurada"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) és un servidor de noms de domini (DNS) que s'utiilitza\n"
-#~ "per convertir noms d'ordinadors centrals en adreces IP."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Encara no s'han escollit les resolucions"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Surt"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Muntatge automŕtic del suport extraďble"
-
-#~ msgid "Active"
-#~ msgstr "Actiu"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "No"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "S'ha detectat una impressora, model \"%s\", a"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Dispositiu de la impressora local"
-
-#~ msgid "Printer Device"
-#~ msgstr "Dispositiu d'impressora"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Servidor CUPS remot"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Servidor CUPS remot"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mode de sistema"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Altres"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Si us plau, feu clic a una partició "
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipus: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Configura l'X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Dispositiu d'impressora"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Cancelˇla"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "D'acord"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Tanca"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "S'estŕ comprovant la vostra conexió..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "S'estŕ tancant la connexió..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "La connexió no estŕ tancada.\n"
-#~ "Intenteu fer-ho manualment executant\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "a root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ara, el sistema estŕ desconnectat."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Escolliu la mida que voleu instalˇlar"
-
-#~ msgid "Total size: "
-#~ msgstr "Mida total: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Si us plau, espereu, "
-
-#~ msgid "Total time "
-#~ msgstr "Temps total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Voleu utilitzar la configuració existent per a X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "A quin dispositiu estŕ connectada la vostra impressora?\n"
-#~ "(tingueu en compte que /dev/lp0 equival a LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Compte, l'adaptador de xarxa ja estŕ configurat. El tornaré a configurar."
-
-#~ msgid "New"
-#~ msgstr "Nou"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Elimina"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Si us plau, feu clic a una partició "
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigüitat (%s), sigueu més precís\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (predeterminat %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "La vostra elecció? (predeterminat %s introduďu `cap' per a cap) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "no es pot obrir /etc/sysconfig/autologin per a lectura: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Voleu reiniciar la xarxa"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Hi esteu d'acord?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ara reiniciaré el dispositiu de xarxa:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ara reiniciaré el dispositiu de xarxa %s. Hi esteu d'acord?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Tret que sapigueu expressament que s'ha d'indicar una altra cosa, "
-#~ "l'elecció\n"
-#~ "habitual és \"/dev/hda\" (el disc IDE mestre primari) o bé \"/dev/sda\"\n"
-#~ "(el primer disc SCSI)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Tipus de connexió: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Escolliu l'usuari per omissió:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Si us plau, comproveu el ratolí."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "Escolliu l'idioma que voleu utilitzar per a la instalˇlació i per a l'ús "
-#~ "del sistema."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Heu d'acceptar els termes de la llicčncia de més amunt per poder "
-#~ "continuar la instalˇlació.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si us plau, feu clic a \"Accepto\" si hi esteu d'acord.\n"
-#~ "\n"
-#~ "\n"
-#~ "Feu clic a \"No accpeto\" si no hi esteu d'acord. La instalˇlació "
-#~ "finalitzarŕ sense modificar la instalˇlació actual."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Escolliu el vostre tipus de teclat de la llista inferior"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Si desitgeu que altres idiomes (a més del que vau triar en\n"
-#~ "iniciar la instalˇlació) estiguin disponibles després de la "
-#~ "instalˇlació,\n"
-#~ "escolliu-los de la llista de més amunt. Si els voleu seleccionar tots,\n"
-#~ "només cal que seleccioneu \"Tots\"."
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Personalitzada: Si esteu familiaritzat amb el Linux, podreu\n"
-#~ "triar l'ús del sistema instalˇlat entre Normal, Desenvolupament o\n"
-#~ "Servidor. Trieu \"Normal\" per a una instalˇlació per a un ús\n"
-#~ "general del vostre ordinador, \"Desenvolupament\" si utilitzareu\n"
-#~ "l'ordinador principalment per a desenvolupament de programari,\n"
-#~ "o \"Servidor\" si voleu instalˇlar un servidor convencional (per\n"
-#~ "a correu, impressions...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
-#~ "instalˇlació totalment personalitzada, aquest és el vostre\n"
-#~ "tipus d'instalˇlació. Podreu seleccionar l'ús del vostre sistema\n"
-#~ "com a \"Personalitzada\"."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ara heu de decidir com utilitzareu l'ordinador. Les opcions són:\n"
-#~ "\n"
-#~ "* Estació de treball: l'elecció ideal si penseu utilitzar l'ordinador "
-#~ "bŕsicament per a l'ús quotidiŕ, a la feina o\n"
-#~ " a casa.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Desenvolupament: si penseu utilitzar l'ordinador bŕsicament per a "
-#~ "desenvolupament de programari, aquesta és l'elecció ideal.\n"
-#~ " Tindreu instalˇlada una completa colˇlecció de programari per poder "
-#~ "compilar, depurar i formatar codi font,\n"
-#~ " o crear paquets de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servidor: si penseu utilitzar l'ordinador com a servidor, aquesta és "
-#~ "l'elecció ideal, ja sigui un servidor de fitxers (NFS o\n"
-#~ " SMB), un servidor d'impressió (tipus Unix o Microsoft Windows), un "
-#~ "servidor d'autenticació (NIS), un servidor\n"
-#~ " de bases de dades, etc. En canvi, no espereu que se us instalˇlin coses "
-#~ "com ara el KDE, el GNOME, etc.)"
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ara podeu seleccionar el grup de paquets que voleu instalˇlar o "
-#~ "actualitzar.\n"
-#~ "\n"
-#~ "\n"
-#~ "El DrakX comprovarŕ si teniu prou espai per instalˇlar-los tots i, si no, "
-#~ "us\n"
-#~ "ho avisarŕ. Si voleu seguir igualment, continuarŕ amb la instalˇlació de "
-#~ "tots\n"
-#~ "els grups seleccionats perň no n'instalˇlarŕ alguns de menys interčs. Al "
-#~ "final\n"
-#~ "de la llista podeu seleccionar l'opció \"Selecció individual de paquets"
-#~ "\", i\n"
-#~ "en aquest cas haureu de navegar per més de 1.000 paquets..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Ara podeu triar individualment tots els paquets que voleu instalˇlar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Podeu expandir o reduir l'arbre fent clic a les opcions del racó esquerre "
-#~ "de la finestra de paquets.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si preferiu veure els paquets ordenats alfabčticament, feu clic a la "
-#~ "icona\n"
-#~ "\"Commuta entre ordenació plana i per grups\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no voleu ser avisat pel que fa a les dependčncies, feu clic a "
-#~ "\"Dependčncies\n"
-#~ "automŕtiques\". Si ho feu, tingueu en compte que el fet de "
-#~ "desseleccionar\n"
-#~ "un paquet pot causar la desselecció d'altres paquets que en depenen, i "
-#~ "no\n"
-#~ "us n'assabentareu."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Si teniu tots els CD de la llista superior, feu clic a D'acord.\n"
-#~ "Si no teniu cap d'aquests CD, feu clic a Cancelˇla.\n"
-#~ "Si només falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Si voleu connectar l'ordinador a Internet o a una xarxa local, "
-#~ "seleccioneu\n"
-#~ "l'opció corresponent, perň abans recordeu engegar el dispositiu per tal "
-#~ "que\n"
-#~ "el DrakX el detecti automŕticament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no teniu connexió a Internet ni a cap xarxa local, escolliu "
-#~ "\"Inhabilita el servei de xarxa\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu configurar la xarxa més endavant, després de la instalˇlació, o "
-#~ "si\n"
-#~ "heu acabat la configuració de la connexió de xarxa, trieu \"Fet\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "No s'ha detectat cap mňdem. Si us plau, seleccioneu el port sčrie on estŕ "
-#~ "connectat.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per a la vostra informació, el primer port sčrie (anomenat \"COM1\" en "
-#~ "Microsoft Windows) s'anomena \"ttyS0\" en Linux."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ara podeu introduir les opcions de marcatge. Si no sabeu quč heu "
-#~ "d'introduir,\n"
-#~ "o si no n'esteu segur, podreu aconseguir la informació necessŕria del "
-#~ "vostre\n"
-#~ "proveďdor d'Internet. Si no introduďu aquí la informació del DNS "
-#~ "(servidor de\n"
-#~ "noms), aquesta informació s'obtindrŕ del proveďdor en el moment de "
-#~ "connectar."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Si el mňdem que teniu és extern, engegueu-lo per tal que el DrakX el "
-#~ "detecti automŕticament."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Si us plau, engegueu el mňdem i trieu-ne el correcte."
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Si no esteu segur de si la informació de més amunt és correcta, si no "
-#~ "sabeu\n"
-#~ "quč introduir o si no n'esteu segur, podreu aconseguir la informació\n"
-#~ "necessŕria del vostre proveďdor d'Internet. Si no introduďu aquí la\n"
-#~ "informació del DNS (servidor de noms), aquesta informació s'obtindrŕ del\n"
-#~ "proveďdor en el moment de connectar."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central. Si no esteu "
-#~ "segur del que hi\n"
-#~ "heu d'introduir, el vostre proveďdor us en donarŕ la informació correcta."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Ara podeu configurar el voste dispositiu de xarxa.\n"
-#~ "\n"
-#~ " * Adreça IP: si no la sabeu, o no n'esteu segur, pregunteu-la a "
-#~ "l'administrador de la xarxa.\n"
-#~ " No heu d'introduir cap adreça IP si més avall seleccioneu l'opció "
-#~ "\"IP automŕtica\".\n"
-#~ "\n"
-#~ " * Mŕscara de la xarxa: Normalment, \"255.255.255.0\" és una bona "
-#~ "elecció. Si no n'esteu segur, consulteu-ho a l'administrador de la "
-#~ "xarxa.\n"
-#~ "\n"
-#~ " * IP automŕtica: si la vostra xarxa utilitza els protocols BOOTP o "
-#~ "DHCP,\n"
-#~ "seleccioneu aquesta opció. Si es selecciona, no cal cap valor per a "
-#~ "\"Adreça IP\". Si no n'esteu segur, consulteu-ho a l'administrador de la "
-#~ "xarxa."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central, si cal. Si no "
-#~ "el\n"
-#~ "sabeu, o no esteu segur de quč heu d'introduir, consulteu a "
-#~ "l'administrador de la xarxa."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central, si cal. Si no\n"
-#~ "el sabeu, o si esteu segur de quč introduir, deixeu-ho en blanc."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Ara podeu introduir les opcions de marcatge. Si no esteu segur del que "
-#~ "hi\n"
-#~ "heu d'introduir, el vostre proveďdor us en donarŕ la informació correcta."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Si teniu previst utilitzar proxys, configureu-los ara. Si no sabeu si\n"
-#~ "n'utilitzareu, consulteu-ho a l'administrador de la xarxa o al vostre\n"
-#~ "proveďdor."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Podeu instalˇlar el paquet criptogrŕfic si la vostra connexió a Internet\n"
-#~ "s'ha configurat correctament. Escolliu primer una rčpilca des de la qual\n"
-#~ "vulgueu descarregar paquets i després seleccioneu els paquets a "
-#~ "instalˇlar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tingueu en compte que heu de seleccionar la rčplica i els paquets\n"
-#~ "criptogrŕfics segons la vostra legislació."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Ara podeu seleccionar la zona horŕria segons el lloc on viviu."
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Podeu configurar una impressora local (connectada al vostre ordinador) o\n"
-#~ "remota (accessible mitjançant una xarxa Unix, Netware o Microsoft "
-#~ "Windows)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Si voleu imprimir, trieu un sistema de impressió entre CUPS i LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "El CUPS és un nou sistema d'impressió, potent i flexible, per a sistemes "
-#~ "Unix\n"
-#~ "(CUPS significa \"Common Unix Printing System\"). És el sistema "
-#~ "d'impressió\n"
-#~ "per defecte en Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "L'LPR és l'antic sistema d'impressió utilitzat en distribucions anteriors "
-#~ "de\n"
-#~ "Mandrake Linux distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no teniu impressora, feu clic a \"Cap\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "El GNU/Linux pot treballar amb molts tipus d'impressores, perň cada un\n"
-#~ "d'aquests tipus requereix una configuració diferent.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si teniu la impressora connectada físicament a l'ordinador, seleccioneu\n"
-#~ "\"Impressora local\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba en un ordinador Unix "
-#~ "remot,\n"
-#~ "seleccioneu \"Impressora remota\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba en un ordinador Microsoft\n"
-#~ "Windows remot (o en un ordinador Unix que utilitza el protocol SMB),\n"
-#~ "seleccioneu \"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Si us plau, engegueu la impressora abans de continuar per tal que el "
-#~ "DrakX\n"
-#~ "la pugui detectar.\n"
-#~ "\n"
-#~ "Aquí heu d'introduir algunes dades.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nom de la impressora: l'spool d'impressió utilitza \"lp\" com a nom "
-#~ "per\n"
-#~ "omissió de la impressora. Per tant, heu de tenir una impressora "
-#~ "anomenada\n"
-#~ "\"lp\".\n"
-#~ " Si només teniu una impressora, podeu donar-li diversos;\n"
-#~ "noms; només cal que els separeu amb el carŕcter \"|\". Per tant,\n"
-#~ "si preferiu un nom més expressiu, l'heu d'indicar en primer lloc\n"
-#~ "(per exemple: \"La meva impressora|lp\").\n"
-#~ " La impressora que contingui \"lp\" al(s) nom(s) serŕ la impressora "
-#~ "per omissió.\n"
#~ "\n"
-#~ "\n"
-#~ " * Descripció: és opcional, perň pot ser útil si teniu diverses\n"
-#~ "impressores connectades a l'ordinador o si permeteu que altres\n"
-#~ "ordinadors accedeixin a aquesta impressora.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ubicació: si voleu incloure informació sobre la ubicació de la\n"
-#~ "impressora, feu-ho aquí (podeu escriure el que vulgueu, (per exemple,\n"
-#~ "\"2n pis\").\n"
+#~ "intenteu canviar alguns parŕmetres"
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Aquí heu d'introduir algunes dades.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nom de la cua: l'spool d'impressió utilitza \"lp\" com a nom per\n"
-#~ "omissió de la impressora. Per tant, heu de tenir una impressora "
-#~ "anomenada\n"
-#~ "\"lp\".\n"
-#~ " Si només teniu una impressora, podeu donar-li diversos;\n"
-#~ "noms; només cal que els separeu amb el carŕcter \"|\". Per tant,\n"
-#~ "si preferiu un nom més expressiu, l'heu d'indicar en primer lloc\n"
-#~ "(per exemple: \"La meva impressora|lp\").\n"
-#~ " La impressora que contingui \"lp\" al(s) nom(s) serŕ la impressora "
-#~ "per omissió.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Directori d'spool: les tasques d'impressió s'emmagatzemen en aquest "
-#~ "directori.Conserveu la opció predeterminada si no sabeu quina utilitzar\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " Si voleu accedir a una impressora que es troba en un ordinador Unix\n"
-#~ "remot, seleccioneu \"Impressora lpd remota\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Si voleu accedir a una impressora que es troba en un ordinador\n"
-#~ "Microsoft Windows remot (o en un ordinador Unix que utilitza el protocol\n"
-#~ "SMB), seleccioneu \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ " Si voleu accedir a una impressora que es troba en una xarxa "
-#~ "NetWare,\n"
-#~ "seleccioneu \"NetWare\".\n"
+#~ msgid "An error occurred:"
+#~ msgstr "S'ha produďt un error:"
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "No s'ha detectat la vostra impressora. Si us plau, introduďu el nom del\n"
-#~ "dispositiu a quč estŕ connectada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per a la vostra informació, la majoria d'impressores estan connectades "
-#~ "al\n"
-#~ "primer port paralˇlel, que s'anomena \"/dev/lp0\" en GNU/Linux i \"LPT1"
-#~ "\"\n"
-#~ "en Microsoft Windows."
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Sortida en %d segons"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Ara heu de seleccionar la vostra impressora a la llista superior."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "És aquest el parŕmetre corrcte?"
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Si us plau, seleccioneu les opcions correctes segons la vostra "
-#~ "impressora;\n"
-#~ "consulteu-ne la documentació si no sabeu quč heu de seleccionar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Podreu comprovar la configuració en el pas següent i modificar-la si no\n"
-#~ "funciona exactament com voleu."
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "S'ha produďt un error, intenteu canviar alguns parŕmetres"
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ara podeu introduir la contrasenya de l'usuari 'root' del vostre\n"
-#~ "sistema Mandrake Linux. Ho heu de fer dos cops per verificar que\n"
-#~ "ambdues introduccions són idčntiques.\n"
-#~ "\n"
-#~ "\n"
-#~ "L'usuari 'root' és l'administrador del sistema, i és l'únic\n"
-#~ "autoritzat per modificar la configuració del sistema; per tant,\n"
-#~ "trieu amb molta cura aquesta contrasenya. L'ús no autoritzat del\n"
-#~ "compte 'root' pot ser extremadament perillós per a la integritat\n"
-#~ "del sistema, per a les seves dades, i per a altres sistema que hi\n"
-#~ "estan connectats.\n"
-#~ "\n"
-#~ "\n"
-#~ "La contrasenya s'ha de crear amb diversos carŕcters alfanumčrics, ha de\n"
-#~ "tenir una llargada mínima de 8 carŕcters, i mai no s'ha d'anotar enlloc.\n"
-#~ "\n"
-#~ "\n"
-#~ "No obstant aixň, no creeu una contrasenya excessivament llarga o\n"
-#~ "complicada: heu de poder recordar-la sense problemes."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servidor xFree86: %s"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Ara podeu crear un o més comptes \"normals\" d'usuari, en\n"
-#~ "contraposició al compte \"privilegiat\", el 'root'. Podeu crear\n"
-#~ "un o més comptes per a cada una de les persones a qui permetreu\n"
-#~ "utilitzar l'ordinador. Tingueu en compte que cada compte d'usuari\n"
-#~ "tindrŕ les seves prňpies preferčncies (entorn grŕfic, parŕmetres\n"
-#~ "del programa. etc.) i el seu propi \"directori inicial\", on\n"
-#~ "s'emmagatzemen aquestes preferčncies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Primer de tot, creeu-vos un compte propi! Encara que sigueu l'únic\n"
-#~ "usuari de l'ordinador, NO us connecteu com a 'root'\n"
-#~ "per a l'ús quotidiŕ del sistema: és un risc de seguretat molt alt.\n"
-#~ "Tot sovint, fer el sistema inutilitzable depčn d'un simple error\n"
-#~ "tipogrŕfic.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per tant, connecteu-vos al sistema amb el compte d'usuari que heu\n"
-#~ "creat, i entreu-hi com a 'root' només per a tasques d'administració\n"
-#~ "i manteniment."
+#~ msgid "Show all"
+#~ msgstr "Mostra'ls tots"
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ "És molt recomanable crear un disc d'arrencada. Si no podeu arrencar "
-#~ "l'ordinador,\n"
-#~ "és l'única manera de solucionar-ho sense haver de reinstalˇlar-ho tot."
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "S'estŕ preparant la configuració de l'X-Window"
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Les opcions principals del LILO i del Grub són:\n"
-#~ " - Dispositiu d'arrencada: Defineix el nom del dispositiu (p.\n"
-#~ "ex., una partició del disc dur) que conté el sector d'arrencada.\n"
-#~ "Tret que sapigueu expressament que s'ha d'indicar una altra cosa,\n"
-#~ "trieu \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
-#~ "temps, en dčcimes de segon, que el carregador d'arrencada ha\n"
-#~ "d'esperar abans de carregar la primera imatge.\n"
-#~ "Aixň és útil en sistemes que arrenquen immediatament des del disc\n"
-#~ "dur després d'habilitar el teclat. El carregador d'arrencada no\n"
-#~ "esperarŕ si s'omet el \"temps d'espera\" o si se li dóna el valor zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mode de vídeo: Amb aixň s'especifica el mode de text VGA que\n"
-#~ "cal seleccionar en arrencar. Es poden utilitzar els valors\n"
-#~ "següents:\n"
-#~ " * normal: selecciona el mode de text 80x25 normal.\n"
-#~ " * <número>: utilitza el mode de text corresponent.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els "
-#~ "fitxers i\n"
-#~ "directoris emmagatzemats a \"/tmp\" en arrencar el sistame, seleccioneu\n"
-#~ "aquesta opció.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Si cal, indicació de la mida exacta de la RAM: malauradament, no hi "
-#~ "cap\n"
-#~ "mčtode estŕndard per preguntar al BIOS la quantitat de RAM que teniu a\n"
-#~ "l'ordinador. Per tant, és possible que el Linux no pugui detectar\n"
-#~ "correctament la quantitat de RAM instalˇlada. Si és aquest el cas, en "
-#~ "podeu\n"
-#~ "indicar aquí la quantitat correcta, perň penseu que una diferčncia de 2 o "
-#~ "4\n"
-#~ "MB entre la memňria detectada i la memňria real és normal."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "El SILO és un carregador d'arrencada per a l'SPARC: pot arrencar el\n"
-#~ "GNU/Linux o qualsevol altre sistema operatiu que tingueu a l'ordinador.\n"
-#~ "Normalment, aquests altres sistemes operatius es detecten i instalˇlen\n"
-#~ "correctament, perň si no és així, podeu afegir-los manualment en aquesta\n"
-#~ "pantalla. Aneu amb compte de triar els parŕmetres correctes.\n"
-#~ "\n"
-#~ "\n"
-#~ "També és possible que no volgueu donar accés a tothom a aquests sistemes\n"
-#~ "operatius; en aquest cas podeu suprimir les entrades corresponents, perň\n"
-#~ "aleshores us caldrŕ un disc d'arrencada per poder-los arrencar!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Les opcions principals del SILO són:\n"
-#~ " - Instalˇlació del carregador d'arrencada: indica on voleu situar la\n"
-#~ "informació necessŕria per arrencar el GNU/Linux. Tret que sapigueu\n"
-#~ "exactament quč esteu fent, seleccioneu \"Primer sector de la unitat\n"
-#~ "(MBR)\".\n"
-#~ " \n"
-#~ "\n"
-#~ " - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
-#~ "temps, en dčcimes de segon, que el carregador d'arrencada ha\n"
-#~ "d'esperar abans de carregar la primera imatge.\n"
-#~ "Aixň és útil en sistemes que arrenquen immediatament des del disc\n"
-#~ "dur després d'habilitar el teclat. El carregador d'arrencada no\n"
-#~ "esperarŕ si s'omet el \"temps d'espera\" o si se li dóna el valor zero."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ara cal configurar el sistema X Window, que és el nucli del GUI\n"
-#~ "(Interfície grŕfica d'usuari) del GNU/Linux. Per a aixň, heu de\n"
-#~ "configurar la vostra targeta grŕfica i el monitor. No obstant\n"
-#~ "aixň, la majoria d'aquests passos estan automatitzats, així que pot\n"
-#~ "ser que la vostra feina es limiti a verificar quč s'ha fet i a\n"
-#~ "acceptar els parŕmetres :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Quan la configuració hagi acabat s'iniciarŕ X (tret que demaneu al\n"
-#~ "Drakx que no ho faci), i podreu verificar si els parŕmetres us\n"
-#~ "convenen. Si no, podreu tornar enrere i canviar-los tantes vegades\n"
-#~ "com calgui."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Si hi ha algun problema a la configuració X, utilitzeu aquestes opcions\n"
-#~ "per configurar correctament l'X Window System."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Si preferiu utilitzar una entrada grŕfica, seleccioneu \"Sí\". En cas\n"
-#~ "contrari, seleccioneu \"No\"."
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Podeu triar un nivell de seguretat per al vostre sistema. Si us plau,\n"
-#~ "consulteu el manual per obtenir informació completa. Bŕsicament, si no\n"
-#~ "sabeu quč triar, conserveu l'opció per defecte.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Ara, el sistema es tornarŕ a arrencar.\n"
-#~ "\n"
-#~ "Després d'aixň, el sistema Mandrake Linux es carregarŕ\n"
-#~ "automŕticament. Si voleu arrencar un altre sistema operatiu existent,\n"
-#~ "llegiu les instruccions addicionals."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Txec (Programadors)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Eslovac (Programadors)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Nom del perfil a crear:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Escriu a /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formata-ho tot"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Després de formatar totes les particions,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "totes les dades d'aquestes particions s'hauran perdut"
-
-#~ msgid "Reload"
-#~ msgstr "Torna a carregar"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Voleu generar un disquet d'instalˇlació automŕtica per fer cňpies del "
-#~ "Linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Configuració de l'ADSL"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Amb un servidor CUPS remot, aquí no us cal configurar cap\n"
-#~ "impressora; les impressores es detectaran automŕticament,\n"
-#~ "tret que tingueu un servidor en una altra xarxa; en aquest\n"
-#~ "cas, heu d'indicar l'adreça IP, i opcionalment el número de\n"
-#~ "port, al servidor CUPS."
-
-#~ msgid "Remote queue"
-#~ msgstr "Cua remota"
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Cua remota"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Nom de domini"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Cap impressora"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Monitorització de la xarxa"
-
-#~ msgid "Profile "
-#~ msgstr "Perfil "
-
-#~ msgid "Statistics"
-#~ msgstr "Estadístiques"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "S'estŕ enviant la velocitat: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "S'estŕ rebent la velocitat: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Tipus de connexió: "
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "S'estŕ establint la connexió a Internet"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "S'estŕ realitzant la desconnexió d'Internet"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "No s'ha pogut realitzar la desconnexió d'Internet"
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "La desconnexió d'Internet ha finalitzat"
-
-#~ msgid "Connection complete."
-#~ msgstr "La connexió ha finalitzat."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "No s'ha pogut establir la connexió.\n"
-#~ "Comproveu la configuració al Centre de control de Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr "enviat: "
-
-#~ msgid "received: "
-#~ msgstr "rebut: "
-
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "escombraries"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Predeterminat"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "No s'ha pogut interpretar el contingut del fitxer de configuració."
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Fitxer de configuració no reconegut"
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptador"
-
-#~ msgid "Disable network"
-#~ msgstr "Inhabilita el sistema de xarxa"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Inhabilita el sistema de xarxa"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "Ara podeu provar el ratolí. Utilitzeu els botons i la bola per comprovar "
-#~ "que\n"
-#~ "els parŕmetres són correctes; si no ho són, feu clic a \"Cancelˇla\" per\n"
-#~ "seleccionar un altre controlador."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Connexió per DSL (o ADSL)"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Tanca"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Podeu indicar directament l'URI per accedir a la impressora amb CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Sí, imprimeix una pŕgina ASCII de prova"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Sí, imprimeix una pŕgina PostScript de prova"
-
-#~ msgid "Paper Size"
-#~ msgstr "Mida del paper"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Voleu expulsar la pŕgina després de la tasca?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opcions del programa de control Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Opcions de profunditat del color"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Voleu imprimir el text com a PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Voleu ajustar el text 'stair-stepping'?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Nombre de pŕgines per pŕgines de sortida"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Marges dret/esquerra en punts (1/72 de polzada)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Marges superior/inferior en punts (1/72 de polzada)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "opcions addicionals del GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Opcions addicionals per al text"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inverteix l'ordre de les pŕgines"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Seleccioneu la connexió de la impressora remota"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Cada impressora necessita un nom (p.ex. lp).\n"
-#~ "Es poden definir altres parŕmetres, com ara la descripció de la "
-#~ "impressora\n"
-#~ "o la seva ubicació. Quin nom cal utilitzar per a aquesta impressora, i "
-#~ "com\n"
-#~ "estŕ connectada?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Cada cua d'impressió (a quč s'adrecen les tasques d'impressió) necessita\n"
-#~ "un nom (sovint lp) i un directori d'spool associada amb ell. Quin nom i\n"
-#~ "directori cal utilitzar per a aquesta cua, i com estŕ connectada la "
-#~ "impressora?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nom de la cua"
-
-#~ msgid "Spool directory"
-#~ msgstr "Directori d'spool"
-
-#~ msgid "Disable"
-#~ msgstr "Inhabilita"
-
-#~ msgid "Enable"
-#~ msgstr "Habilita"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Per habilitar un sistema més segur, seleccioneu \"Utilitza el\n"
-#~ "fitxer d'ombra\" i \"Utilitza les contrasenyes MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Si la vostra xarxa utilitza NIS, seleccioneu \"Utilitza NIS\". Si no ho\n"
-#~ "sabeu, consulteu a l'administrador de la xarxa."
-
-#~ msgid "yellow pages"
-#~ msgstr "pŕgines grogues"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Configuració de la LAN"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1 del proveďdor"
+#~ msgid "What do you want to do?"
+#~ msgstr "Quč voleu fer?"
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2 del proveďdor"
+#~ msgid "Change Monitor"
+#~ msgstr "Canvia el monitor"
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Com us voleu connectar a Internet?"
+#~ msgid "Change Graphics card"
+#~ msgstr "Canvia la targeta grŕfica"
-#~ msgid "cannot fork: "
-#~ msgstr "no es pot bifurcar: "
+#~ msgid "Change Server options"
+#~ msgstr "Canvia les opcions del servidor"
-#~ msgid "Configure..."
-#~ msgstr "Configura..."
+#~ msgid "Change Resolution"
+#~ msgstr "Canvia la resolució"
-#~ msgid "Selected size %d%s"
-#~ msgstr "S'ha seleccionat la mida %d%s"
+#~ msgid "Show information"
+#~ msgstr "Mostra la informació"
-#~ msgid "Opening your connection..."
-#~ msgstr "S'estŕ obrint la connexió..."
+#~ msgid "Test again"
+#~ msgstr "Torna-ho a comprovar"
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Aquest script d'inici intenta carregar els mňduls del ratolí USB."
+#~ msgid "Setting security level"
+#~ msgstr "S'estŕ establint el nivell de seguretat"
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Configuració del LILO/Grub"
+#~ msgid "Graphics card"
+#~ msgstr "Targeta grŕfica"
-#~ msgid "Boot style configuration"
-#~ msgstr "Configuració del tipus d'arrencada"
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccioneu una targeta grŕfica"
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "Ara que ja teniu configurada la connexió a Internet,\n"
-#~ "podeu configurar l'ordinador per tal que la comparteixi.\n"
-#~ "Nota: per configurar una xarxa d'ŕrea local (LAN), us cal un adaptador de "
-#~ "xarxa dedicat.\n"
-#~ "\n"
-#~ "Voleu configurar la connexió a Internet compartida?\n"
-
-#~ msgid "Welcome to the Internet Connection Sharing utility!"
-#~ msgstr "Benvingut a la utilitat de compartició de la connexió a Internet!"
+#~ "Avís: la comprovació d'aquesta targeta grŕfica pot penjar-vos l'ordinador"
-#~ msgid "Automatic dependencies"
-#~ msgstr "Dependčncies automŕtiques"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA estŕndard, 640x480 a 60 Hz"
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Configura el LILO/GRUB"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 60 Hz"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Crea un disquet d'arrencada"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrellaçada (no 800x600)"
-#~ msgid "Choice"
-#~ msgstr "Elecció"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrellaçada, 800x600 a 56 Hz"
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "aurora horitzontal amb bon aspecte"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA ampliada, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#~ msgid "vertical traditional aurora"
-#~ msgstr "aurora vertical tradicional"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "Ara podeu seleccionar diverses opcions per al vostre sistema.\n"
-#~ "\n"
-#~ "* Utilització de l'optimització del disc dur: Aquesta opció pot millorar "
-#~ "el\n"
-#~ "rendiment del disc dur, perň és només per a usuaris avançats. Alguns "
-#~ "xips\n"
-#~ "amb errors poden fer malbé les vostres dades, així que aneu amb compte. "
-#~ "El\n"
-#~ "nucli inclou una \"llista negra\" d'unitats i jocs de xips, perň, si "
-#~ "voleu\n"
-#~ "evitar-vos sorpreses desagradables, no activeu aquesta opció.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Selecció d'un nivell de seguretat: Podeu escollir un nivell de\n"
-#~ "seguretat per al sistema. Si us plau, consulteu el manual per a més\n"
-#~ "informació. Bŕsicament, si no n'esteu segur, trieu l'opció "
-#~ "predeterminada.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Si cal, indicació de la mida exacta de la RAM: malauradament, no hi "
-#~ "cap\n"
-#~ "mčtode estŕndard per preguntar al BIOS la quantitat de RAM que hi ha a\n"
-#~ "l'ordinador. Per tant, és possible que el Linux no pugui detectar\n"
-#~ "correctament la quantitat de RAM instalˇlada. Si és aquest el cas, en "
-#~ "podeu\n"
-#~ "indicar aquí la quantitat correcta, perň penseu que una diferčncia de 2 o "
-#~ "4\n"
-#~ "MB entre la memňria detectada i la memňria real és normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Muntatge automŕtic de suports extraďbles: Si preferiu no haver\n"
-#~ "de muntar manualment les unitats extraďbles (CD-ROM, disquet, Zip)\n"
-#~ "escrivint \"mount\" i \"umount\", seleccioneu aquesta opció.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els "
-#~ "fitxers\n"
-#~ "i directoris que hi ha emmagatzemats a \"/tmp\" quan arranqueu el "
-#~ "sistema,\n"
-#~ "seleccioneu aquesta opció.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Habilitació de BlocNum a l'inici: Si voleu que BlocNum s'habiliti "
-#~ "després\n"
-#~ "de l'arrencada, seleccioneu aquesta opció. Tingueu en compte que no heu\n"
-#~ "d'habilitar aquesta opció en portŕtils i que BlocNum pot funcionar o pot "
-#~ "no\n"
-#~ "funcionar sota X."
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Si us plau, tingueu pacičncia; la configuració del correu encara no estŕ "
-#~ "implementada."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA no entrellaçada, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Benvingut a l'Auxiliar de configuració de la xarxa.\n"
-#~ "Quins components voleu configurar?\n"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA d'alta freqüčncia, 1024x768 a 70 Hz"
-#~ msgid "Internet/Network access"
-#~ msgstr "Accés a Internet/xarxa"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-freqüčncia que pot fer 1280x1024 a 60 Hz"
-#~ msgid "Miscellaneous"
-#~ msgstr "Miscelˇlŕnia"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-freqüčncia que pot fer 1280x1024 a 74 Hz"
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Preguntes diverses"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-freqüčncia que pot fer 1280x1024 a 76 Hz"
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "No es pot utilitzar supermount en un nivell d'alta seguretat"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "Atenció: EN AQUEST NIVELL DE SEGURETAT NO ES POT ENTRAR COM A ROOT A LA "
-#~ "CONSOLA!\n"
-#~ "Si voleu ser root, heu d'entrar com a usuari i aleshores utilitzar \"su"
-#~ "\".\n"
-#~ "En general, no espereu utilitzar l'ordinador per a altre cosa que com a "
-#~ "servidor.\n"
-#~ "Esteu avisat."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
-#~ "Aneu amb compte; si teniu BlocNúm habilitat, moltes tecles donaran\n"
-#~ "números en comptes de lletres (p.ex., si premeu la `p' obtindreu un `6')"
-
-#~ msgid "not connected"
-#~ msgstr "sense connexió"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Aplicacions científiques"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Servidor, Fitxer/Impressió/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Servidor, DNS/DHCP "
-
-#~ msgid "First DNS Server"
-#~ msgstr "Servidor DNS primari"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Servidor DNS secundari"
-
-#~ msgid "using module"
-#~ msgstr "s'estŕ utilitzant el mňdul"
-
-#~ msgid "Development, Database"
-#~ msgstr "Desenvolupament, base de dades"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Desenvolupament, entorn integrat"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Desenvolupament, eines estŕndard"
+#~ "La mida total dels grups que heu seleccionat es d'aproximadament %d MB.\n"
#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
+#~ "Si no voleu instalˇlar tants MB, seleccioneu el percentatge de paquets\n"
+#~ "que voleu instalˇlar.\n"
#~ "\n"
-#~ "Avís:\n"
-#~ "Si apliquu els canvis durant l'execució, és possible que l'entorn X "
-#~ "caigui."
+#~ "Un percentatge baix instalˇlarŕ només els paquets més importants;\n"
+#~ "un percentatge del 100%% instalˇlarŕ tots els paquets seleccionats."
#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
+#~ "Només teniu prou espai al disc per a %d%% d'aquests paquets.\n"
#~ "\n"
-#~ "Si continueu, tancaré l'entorn %s"
+#~ "Si en voleu instalˇlar menys, seleccioneu el percentatge de paquets\n"
+#~ "que voleu instalˇlar.\n"
+#~ "Un percentatge baix instalˇlarŕ només els paquets més importants;\n"
+#~ "un percentatge del %d%% instalˇlarŕ tants paquets com sigui possible."
-#~ msgid "loopback"
-#~ msgstr "loopback"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Podreu fer una elecció més concreta al pas següent"
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Quin(s) carregador(s) d'arrencada voleu utilitzar?"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Percentatge de paquets per instalˇlar"
-#~ msgid "Auto install floppy"
-#~ msgstr "Disquet d'instalˇlació automŕtica"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Escolliu el nivell de seguretat"
-#~ msgid "Try to find a modem?"
-#~ msgstr "Voleu que intenti trobar un mňdem?"
+#~ msgid "hide expert mode"
+#~ msgstr "oculta el mode expert"
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "Configura una connexió per XDSI"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Inhabilita la connexió a Internet"
-
-#~ msgid "Configure local network"
-#~ msgstr "Configura la xarxa local"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Configura la connexió a Internet / Configura la xarxa local"
+#~ msgid "show expert mode"
+#~ msgstr "mostra el mode expert"
#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "La xarxa local ja s'ha configurat.\n"
-#~ "Voleu:"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Manipulació de grŕfics"
-
-#~ msgid "Sciences"
-#~ msgstr "Cičncies"
+#~ "Si '%s' és un perifčric extraďble,\n"
+#~ " comproveu que hi ha un suport present."
#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
#~ msgstr ""
-#~ "Programes de xat (IRC o missatgeria instantŕnia) com ara xchat, licq, "
-#~ "gaim, i eines de transferčncia de fitxers"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Instalˇlacions de comunicació"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Eines d'Internet"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Clients de bases de dades i servidors (mysql i postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Desenvolupament C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Zona horŕria"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(pot malmetre les dades)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Habilita la tecla Bloc Num en iniciar"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Confirmeu la contrasenya"
+#~ "ATENCIÓ! Amb aixň formatareu '%s'.\n"
+#~ "S'esborraran totes les dades del perifčric '%s'.\n"
+#~ "Si voleu continuar, premeu D'acord. "
-#~ msgid "default"
-#~ msgstr "predeterminat"
+#~ msgid "unknown"
+#~ msgstr "desconegut"
-#~ msgid "What is your system used for?"
-#~ msgstr "Amb quina finalitat utilitzeu el sistema?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Seleccioneu la mida que voleu instalˇlar"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Utilitza el diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Personalitzada"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "Esteu segur que sou un expert? \n"
-#~ "Aquí podreu fer coses molt potents, perň també perilloses.\n"
-#~ "\n"
-#~ "Us preguntaran coses com: ``Voleu utilitzar un fitxer d'ombres per a les "
-#~ "contrasenyes?'',\n"
-#~ "Sou capaç de respondre aquest tipus de preguntes?"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Utilitza el fitxer d'ombra"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Utilitza les contrasenyes MD5"
-
-#~ msgid "Search"
-#~ msgstr "Cerca"
-
-#~ msgid "Package"
-#~ msgstr "Paquet"
-
-#~ msgid "Tree"
-#~ msgstr "Arbre"
-
-#~ msgid "Sort by"
-#~ msgstr "Ordena per"
+#~ msgid "Select a module or write his name:"
+#~ msgstr "Seleccioneu un mňdul o escriviu-ne el nom:"
#~ msgid "Category"
#~ msgstr "Categoria"
-#~ msgid "Installed packages"
-#~ msgstr "Paquets instalˇlats"
-
-#~ msgid "Available packages"
-#~ msgstr "Paquets disponibles"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Mostra només les fulles"
-
-#~ msgid "Expand all"
-#~ msgstr "Expandeix-ho tot"
-
-#~ msgid "Collapse all"
-#~ msgstr "Redueix-ho tot"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Afegeix la ubicació dels paquets"
-
-#~ msgid "Update location"
-#~ msgstr "Actualitza la ubicació"
-
-#~ msgid "Find Package"
-#~ msgstr "Cerca el paquet"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Cerca el paquet que conté el fitxer"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Commuta entre Instalˇlats i Disponibles"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "S'estan comprovant les dependčncies"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Ara es desinstalˇlaran els paquets següents"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Quin paquet esteu cercant"
-
-#~ msgid "No match"
-#~ msgstr "Cap coincidčncia"
-
-#~ msgid "No more match"
-#~ msgstr "Cap altra coincidčncia"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "Actualment, l'rpmdrake estŕ en el mode ``poca memňria''.\n"
-#~ "Ara tornaré a reiniciar l'rpmdrake per permetre la recerca de fitxers"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Quin fitxer esteu cercant?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Quč esteu cercant?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Introduďu un nom (p.ex. `extra', `comercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Directori"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "No hi ha cap CD-ROM disponible (no hi ha res a /mnt/cdrom)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "L'URL del directori que conté els RPM"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Per a FTP i HTTP, us cal introduir la ubicació de hdlist\n"
-#~ "Ha de ser relativa a l'URL superior"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Si us plau, trameteu la informació següent"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s ja és en ús"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "S'estŕ actualitzant la base dels RPM"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ara s'eliminarŕ l'entrada %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "S'estan cercant les fulles"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Cal una mica de temps per cercar les fulles"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "He trobat una targeta XDSI:\n"
-
-#~ msgid "Other countries"
-#~ msgstr "Altres paďsos"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "A quin país us trobeu?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Mňdem Alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "Mňdem ECI"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Si el vostre mňdem adsl és un mňdem Alcatel, seleccioneu Alcatel. Si no, "
-#~ "ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "no utilitzis pppoe"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (important)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (molt bonic)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (bonic)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "A quin port sčrie estŕ connectat el vostre ratolí?"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, biblioteques, eines"
-
-#~ msgid "Czech"
-#~ msgstr "Txec"
-
-#~ msgid "Slovakian"
-#~ msgstr "Eslovac"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM d'ipchains amb l'urpmi."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de dhcp amb l'urpmi."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de linuxconf amb l'urpmi."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de bind amb l'urpmi."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de caching-nameserver amb l'urpmi"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Torna a configurar la xarxa local"
-
-#~ msgid ""
-#~ " Introduction\n"
-#~ "\n"
-#~ "The operating system and the different components available in the "
-#~ "Mandrake Linux distribution \n"
-#~ "shall be called the \"Software Products\" hereafter. The Software "
-#~ "Products include, but are not \n"
-#~ "restricted to, the set of programs, methods, rules and documentation "
-#~ "related to the operating \n"
-#~ "system and the different components of the Mandrake Linux distribution.\n"
-#~ "\n"
-#~ "\n"
-#~ "1. License Agreement\n"
-#~ "\n"
-#~ "Please read carefully this document. This document is a license agreement "
-#~ "between you and \n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Paris - France, which applies "
-#~ "to the Software Products.\n"
-#~ "By installing, duplicating or using the Software Products in any manner, "
-#~ "you explicitly \n"
-#~ "accept and fully agree to conform to the terms and conditions of this "
-#~ "License. \n"
-#~ "If you disagree with any portion of the License, you are not allowed to "
-#~ "install, duplicate or use \n"
-#~ "the Software Products. \n"
-#~ "Any attempt to install, duplicate or use the Software Products in a "
-#~ "manner which does not comply \n"
-#~ "with the terms and conditions of this License is void and will terminate "
-#~ "your rights under this \n"
-#~ "License. Upon termination of the License, you must immediately destroy "
-#~ "all copies of the \n"
-#~ "Software Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "2. The GPL License and Related Licenses\n"
-#~ "\n"
-#~ "The Software Products consist of components created by different persons "
-#~ "or entities. Most \n"
-#~ "of these components are governed under the terms and conditions of the "
-#~ "GNU General Public \n"
-#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-#~ "licenses allow you to use, \n"
-#~ "duplicate, adapt or redistribute the components which they cover. Please "
-#~ "read carefully the terms \n"
-#~ "and conditions of the license agreement for each component before using "
-#~ "any component. Any question \n"
-#~ "on a component license should be addressed to the component author and "
-#~ "not to MandrakeSoft.\n"
-#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
-#~ "License. Documentation written \n"
-#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
-#~ "the documentation for \n"
-#~ "further details.\n"
-#~ "Some versions of the Software Products may contain components which are "
-#~ "not governed by the GPL \n"
-#~ "License or similar agreements. Each such component is then governed by "
-#~ "the terms and conditions \n"
-#~ "of its own specific license. Please read carefully and comply with such "
-#~ "specific licenses before \n"
-#~ "you install, use or redistribute the said components. Such licenses will "
-#~ "in general prevent the \n"
-#~ "transfer, duplication (except for backup purposes), redistribution, "
-#~ "reverse engineering, \n"
-#~ "de-assembly, \n"
-#~ "de-compilation or modification of the component. Any breach of agreement "
-#~ "will immediately terminate \n"
-#~ "your rights under the specific license. Unless the specific license terms "
-#~ "grant you such rights, \n"
-#~ "you usually cannot install the programs on more than one system, or adapt "
-#~ "it to be used on a \n"
-#~ "network. \n"
-#~ "In doubt, please contact directly the distributor or editor of the "
-#~ "component. Transfer to third \n"
-#~ "parties or copying of such components including the documentation is "
-#~ "usually forbidden.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. Intellectual Property Rights\n"
-#~ "\n"
-#~ "All rights to the components of the Software Products belong to their "
-#~ "respective authors and are \n"
-#~ "protected by intellectual property and copyright laws applicable to "
-#~ "software programs.\n"
-#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
-#~ "Products, as a whole or in \n"
-#~ "parts,\n"
-#~ "by all means and for all purposes.\n"
-#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
-#~ "MandrakeSoft S.A. All rights \n"
-#~ "are \n"
-#~ "reserved. The duplication is forbidden without prior written consent by "
-#~ "MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Limited Warranty\n"
-#~ "\n"
-#~ "The Software Products and attached documentation are provided \"as is\", "
-#~ "with no warranty, to the \n"
-#~ "extent permitted by law. Should the Software Products be defective, "
-#~ "MandrakeSoft S.A. will at its \n"
-#~ "own will either replace the Software Products, or reimburse the paid "
-#~ "fee.\n"
-#~ "This limited warranty is void if you fail to comply to the "
-#~ "recommendations, instructions and \n"
-#~ "conditions \n"
-#~ "of use listed in the documentation or license agreements of the Software "
-#~ "Products.\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. will in no "
-#~ "circumstances be liable for any \n"
-#~ "special, \n"
-#~ "incidental, direct or indirect damages whatsoever (including without "
-#~ "limitation damages for loss of \n"
-#~ "business, interruption of business, financial loss, legal fees and "
-#~ "penalties resulting from a court \n"
-#~ "judgement, or any other consequential loss) arising out of the use or "
-#~ "inability to use the \n"
-#~ "Software \n"
-#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
-#~ "or occurance of such \n"
-#~ "damages.\n"
-#~ "\n"
-#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
-#~ "SOME COUNTRIES\n"
-#~ "\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
-#~ "will, in no circumstances, be \n"
-#~ "liable for any special, incidental, direct or indirect damages whatsoever "
-#~ "(including without \n"
-#~ "limitation \n"
-#~ "damages for loss of business, interruption of business, financial loss, "
-#~ "legal fees and penalties \n"
-#~ "resulting from a court judgement, or any other consequential loss) "
-#~ "arising out of the possession \n"
-#~ "and \n"
-#~ "use of software components or arising out of downloading software "
-#~ "components from one of \n"
-#~ "Mandrake Linux \n"
-#~ "sites which are prohibited or restricted in some countries by local "
-#~ "laws. This limited liability \n"
-#~ "applies to, but is not restricted to, the strong cryptography components "
-#~ "included in the Software \n"
-#~ "Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Governing Laws \n"
-#~ "\n"
-#~ "If any portion of this agreement is held void, illegal or inapplicable by "
-#~ "a court judgement, this \n"
-#~ "portion is excluded from this contract. You remain bound by the other "
-#~ "applicable sections of the \n"
-#~ "agreement.\n"
-#~ "The terms and conditions of this License are governed by the Laws of "
-#~ "France.\n"
-#~ "All disputes on the terms of this license will preferably be settled out "
-#~ "of court. As a last \n"
-#~ "resort, \n"
-#~ "the dispute will be referred to the appropriate Courts of Law of Paris - "
-#~ "France.\n"
-#~ "For any question on this document, please contact MandrakeSoft S.A., \n"
-#~ "43, rue d'Aboukir, 75002 Paris - France\n"
-#~ msgstr ""
-#~ " Introducció\n"
-#~ "\n"
-#~ "D'ara endavant, el sistema operatiu i els diferents components que "
-#~ "s'inclouen\n"
-#~ "a la distribució Mandrake Linux s'anomenaran els \"Productes de programari"
-#~ "\".\n"
-#~ "Els Productes de programari inclouen, perň no es limiten a, el conjunt "
-#~ "de\n"
-#~ "programes, mčtodes, regles i documentació relativa al sistema operatiu i "
-#~ "als\n"
-#~ "diferents components de la distribució Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "1. Acord de Llicčncia\n"
-#~ "\n"
-#~ "Si us plau, llegiu aquest document atentament. Aquest document és un "
-#~ "acord\n"
-#~ "de llicčncia entre vós i MandrakeSoft S.A., 43, rue d'Aboukir, 75002 "
-#~ "París,\n"
-#~ "França, que s'aplica als Productes de programari.\n"
-#~ "Pel fet d'instalˇlar, duplicar o utilitzar els Productes de programari, "
-#~ "en \n"
-#~ "qualsevol manera, accepteu i esteu totalment d'acord, de manera "
-#~ "explícita, en\n"
-#~ "sometre-us als termes i condicions d'aquesta Llicčncia. Si no esteu "
-#~ "d'acord amb\n"
-#~ "qualsevol part d'aquesta Llicčncia, no esteu autoritzat a instalˇlar, "
-#~ "duplicar\n"
-#~ "ni utilitzar els Productes de programari. Qualsevol intent d'instalˇlar,\n"
-#~ "duplicar o utilitzar els Productes de programari d'una manera no conforme "
-#~ "als\n"
-#~ "termes i condicions d'aquesta Llicčncia és invŕlid i conclourŕ els "
-#~ "vostres\n"
-#~ "drets sota aquesta Llicčncia. En concloure la Llicčncia, heu de destruir\n"
-#~ "immediatament totes les cňpies dels Productes de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "2. la Llicčncia GPL i Llicčncies relacionades\n"
-#~ "\n"
-#~ "Els Productes de programari són components creats per diferents persones "
-#~ "o\n"
-#~ "entitats. La majoria d'aquests components estan coberts pels termes i\n"
-#~ "condicions de la Llicčncia General Pública de GNU (d'ara endavant \"GPL"
-#~ "\"), o\n"
-#~ "de llicčncies similars. La majoria d'aquestes llicčncies us permeten "
-#~ "utilitzar,\n"
-#~ "duplicar, adaptar o redistribuir els components que cobreixen. Si us "
-#~ "plau,\n"
-#~ "llegiu atentament els termes i condicions de l'acord de llicčncia de "
-#~ "cada\n"
-#~ "component abans d'utilitzar-lo. Qualsevol pregunta sobre un component "
-#~ "s'ha\n"
-#~ "d'adreçar al seu autor i no a MandrakeSoft. Els programes desenvolupats "
-#~ "per\n"
-#~ "MandrakeSoft S.A. estan coberts per la Llicčncia GPL. La documentació "
-#~ "escrita\n"
-#~ "per MandrakeSoft S.A. estŕ coberta per una llicčncia específica. Si us "
-#~ "plau,\n"
-#~ "consulteu la documentació per a més informació. Algunes versions dels "
-#~ "Productes\n"
-#~ "de programari poden incloure components que no estiguin coberts per la\n"
-#~ "Llicčncia GPL o llicčncies similars; en aquest cas, cada un d'aquests\n"
-#~ "components estarŕ cobert pels termes i condicions de la seva prňpia "
-#~ "llicčncia\n"
-#~ "específica. Si us plau, llegiu atentament i respecteu aquestes "
-#~ "llicčncies\n"
-#~ "específiques abans d'instalˇlar, utilitzar o redistribuir els components\n"
-#~ "esmentats. En general, aquestes llicčncies impediran la transferčncia,\n"
-#~ "duplicació (excepte amb la finalitat de fer cňpies de seguretat),\n"
-#~ "redistribució, enginyeria inversa, desensamblatge, decompilació o "
-#~ "modificació\n"
-#~ "del component. Qualsevol ruptura de l'acord conclourŕ immediatament els "
-#~ "vostres\n"
-#~ "drets sota la llicčncia específica. Tret que els termes de la llicčncia\n"
-#~ "específica us ho autoritzin, normalment no podreu instalˇlar els "
-#~ "programes en\n"
-#~ "més d'un sistema ni adaptar-lo per al seu ús en xarxa. Si hi teniu "
-#~ "dubtes,\n"
-#~ "poseu-vos en contacte directament amb el distribuďdor o editor del "
-#~ "component.\n"
-#~ "Normalment, estŕ prohibida la transferčncia a terceres parts i la cňpia\n"
-#~ "d'aquests components, incloent la documentació.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. Drets de propietat intelˇlectual\n"
-#~ "\n"
-#~ "Tots els drets dels components dels Productes de programari pertanyen als "
-#~ "seus\n"
-#~ "autors respectius i estan protegits per la propietat intelˇlectual i les "
-#~ "lleis\n"
-#~ "de copyright aplicables al programari. MandrakeSoft S.A. es reserva els "
-#~ "drets\n"
-#~ "de modificar o adaptar els Productes de programari, ja sigui parcialment "
-#~ "o\n"
-#~ "totalment, per tots els mitjans i per a totes les finalitats. \"Mandrake"
-#~ "\",\n"
-#~ "\"Mandrake Linux\" i els logotips associats son marques registrades de\n"
-#~ "MandrakeSoft S.A. Tots els drets reservats. Es prohibeix la duplicació "
-#~ "sense\n"
-#~ "consentiment previ per escrit de MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Garantia limitada\n"
-#~ "\n"
-#~ "Els Productes de programari i la documentació que s'hi adjunta es "
-#~ "subministren\n"
-#~ "\"tal com són\", sense cap garantia, fins al punt permčs per la llei. En "
-#~ "cas\n"
-#~ "que els Productes de programari siguin defectuosos, MandrakeSoft S.A., a\n"
-#~ "criteri seu, decidirŕ si reemplaça els Productes de programari o si en\n"
-#~ "reemborsa el preu pagat. Aquesta garantia limitada és nulˇla si no "
-#~ "compliu les\n"
-#~ "recomanacions, instruccions i condicions d'ús que s'indiquen a la "
-#~ "documentació\n"
-#~ "o als acords de llicčncia dels Productes de programari. Fins al punt "
-#~ "permčs per\n"
-#~ "la llei, MandrakeSoft S.A. no serŕ, en cap circumstŕncia, responsable de "
-#~ "cap\n"
-#~ "dany especial, incidental, directe o indirecte (incloent, perň sense "
-#~ "limitar-se\n"
-#~ "a, danys per pčrdua de negocis, interrupció de negocis, pčrdues "
-#~ "financeres,\n"
-#~ "honoraris i multes legals que resultin per un judici i qualsevol altre "
-#~ "pčrdua\n"
-#~ "important) que resulti de l'ús o impossibilitat d'utilitzar els Productes "
-#~ "de\n"
-#~ "programari, fins i tot si s'ha notificat a MandrakeSoft S.A. la "
-#~ "possibilitat de\n"
-#~ "que es produeixin aquests danys.\n"
-#~ "\n"
-#~ "RESPONSABILITAT LIMITADA LLIGADA A LA POSESSIÓ O UTILITZACIÓ DE "
-#~ "PROGRAMARI PROHIBIT EN ALGUNES PAĎSOS\n"
-#~ "\n"
-#~ "Fins al put permčs per la llei, MandrakeSoft S.A. i els seus "
-#~ "distribuďdors no\n"
-#~ "seran, sota cap circumstŕncia, responsables de cap dany especial, "
-#~ "incidental,\n"
-#~ "directe o indirecte (incloent, perň sense limitar-se a, danys per pčrdua "
-#~ "de\n"
-#~ "negocis, interrupció de negocis, pčrdues financeres, honoraris i multes "
-#~ "legals\n"
-#~ "que resultin per un judici i qualsevol altre pčrdua important) que "
-#~ "resultin de\n"
-#~ "la possessió i ús de components de programari o de la descŕrrega de "
-#~ "components\n"
-#~ "de programari d'algun dels llocs web de Mandrake Linux que estiguin "
-#~ "prohibits o\n"
-#~ "restringits en alguns paďsos per lleis locals. Aquesta responsabilitat "
-#~ "limitada\n"
-#~ "s'aplica, perň no estŕ restringida a, els potents components de "
-#~ "criptografia\n"
-#~ "inclosos en els Productes de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Lleis aplicables \n"
-#~ "\n"
-#~ "Si qualsevol part d'aquest acord és declarat nul, ilˇlegal o inaplicable "
-#~ "en un\n"
-#~ "judici, aquesta part s'exclou del contracte, perň seguiu obligat per les "
-#~ "altres\n"
-#~ "seccions aplicables de l'acord. Els termes i condicions d'aquesta "
-#~ "Llicčncia\n"
-#~ "estan coberts per les lleis de França. Preferiblement, tots els desacords "
-#~ "sobre\n"
-#~ "els termes d'aquesta Llicčncia es resoldran fora dels tribunals. Com a "
-#~ "últim\n"
-#~ "recurs, el plet es dirimirŕ en els tribunals de París, França.\n"
-#~ "Per a qualsevol pregunta sobre aquest document, poseu-vos en contacte "
-#~ "amb\n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 París, França.\n"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Es pot configurar el vostre ordinador per tal que comparteixi la connexió "
-#~ "a Internet.\n"
-#~ "\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "S'ha configurat tot.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Connecta't a Internet amb un mňdem normal"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Connecta't a Internet mitjançant XDSI"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Connecta't a Internet mitjançant DSL (o ADSL)"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Connecta't a Internet mitjançant cable"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Temps (en segons) d'inactivitat després del qual\n"
-#~ "penjarŕ (deixeu-ho en blanc per inhabilitar-ho)."
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Alemanya (1TR6)"
-
-#~ msgid "What do you wish to do?"
-#~ msgstr "Quč voleu fer?"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Instalˇla/Rescata"
-
-#~ msgid "Rescue"
-#~ msgstr "Rescata"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Quin tipus de partició voleu?"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Escolliu \"Instalˇlació\" si no hi ha instalˇlada cap versió anterior de "
-#~ "GNU/Linux,\n"
-#~ "o si voleu utilitzar diverses distribucions o versions.\n"
-#~ "\n"
-#~ "Escolliu \"Rescat\" si voleu rescatar una versió anterior de\n"
-#~ "Mandrake Linux ja instalˇlada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Recomanada: Si mai no heu instalˇlat el GNU/Linux,\n"
-#~ " escolliu aquesta opció.\n"
-#~ " - Personalitzada: Si esteu prou familiaritzat amb el GNU/Linux, podeu\n"
-#~ " triar l'ús principal del vostre ordinador. Consulteu-ne els detalls\n"
-#~ " més avall.\n"
-#~ "\n"
-#~ " - Per a experts: S'assumeix que domineu el GNU/Linux i voleu realitzar "
-#~ "una\n"
-#~ " instalˇlació altament personalitzada. Com en el cas del tipus\n"
-#~ " d'instalˇlació \"Personalitzada\", podreu seleccionar l'ús del "
-#~ "vostre\n"
-#~ " sistema.\n"
-#~ " Perň, si us plau, sobretot NO TRIEU AQUESTA OPCIÓ TRET QUE SAPIGUEU "
-#~ "QUČ ESTEU FENT!\n"
-
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In "
-#~ "other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, "
-#~ "partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
-#~ "\n"
-#~ "- Ctrl-c to create a new partition (when an empty partition is "
-#~ "selected)\n"
-#~ "\n"
-#~ "- Ctrl-d to delete a partition\n"
-#~ "\n"
-#~ "- Ctrl-m to set the mount point\n"
-#~ msgstr ""
-#~ "En aquest moment podeu decidir quina(es) partició(ns) voleu utilitzar\n"
-#~ "per instalˇlar el sistema Mandrake Linux, si és que ja es va(n)\n"
-#~ "definir (en una instalˇlació anterior del GNU/Linux o mitjançant una\n"
-#~ "altra eina de partició). En altres casos, s'han de definir les\n"
-#~ "particions del disc dur: aquesta operació consisteix en dividir el\n"
-#~ "disc dur de l'ordinador en ŕrees lňgiques separades.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si heu de crear noves particions, utilitzeu \"Assignació\n"
-#~ "automŕtica\" per crear particions per al GNU/Linux de manera automŕtica.\n"
-#~ "Podeu triar el disc on s'hi han de fer les particions fent clic a\n"
-#~ "\"hda\" per a la primera unitat IDE, \"hdb\" per a la segona, o\n"
-#~ "\"sda\" per a la primera unitat SCSI, i així successivament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dues particions habituals són: la partició root (/), que és el punt\n"
-#~ "d'inici de la jerarquia de directoris del sistema de fitxers, i\n"
-#~ "/boot, que conté tots els fitxers necessaris per iniciar el sistema\n"
-#~ "operatiu quan s'arrenca l'ordinador per primer cop.\n"
-#~ "\n"
-#~ "\n"
-#~ "Donat que aquest procés sol ser irreversible, la partició d'un disc\n"
-#~ "és sovint un procés que espanta als usuaris sense experičncia, perň\n"
-#~ "el DiskDrake simplifica molt aquest procés. Consulteu la documentació\n"
-#~ "i preneu-vos tant temps com sigui necessari abans de realitzar la\n"
-#~ "partició.\n"
-#~ "\n"
-#~ "Podeu accedir a qualsevol opció mitjançant el teclat: desplaceu-vos per "
-#~ "les particions amb el tabulador i les fletxes amunt i avall. Quan se "
-#~ "selecciona una partició, podeu utilitzar:\n"
-#~ "\n"
-#~ "- Ctrl-c per crear una nova partició (quan se selecciona una partició "
-#~ "buida)\n"
-#~ "\n"
-#~ "- Ctrl-d per suprimir una partició\n"
-#~ "\n"
-#~ "- Ctrl-m per definir el punt de muntatge\n"
-
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "Cal formatar les particions que s'acaben de definir per poder-les\n"
-#~ "utilitzar ('formatar' significa 'crear un sistema de fitxers').\n"
-#~ "En aquest punt podeu, si voleu, tornar a formatar particions\n"
-#~ "existents per eliminar les dades que contenen. Nota: no és\n"
-#~ "necessari tornar a formatar les particions existents, especialment\n"
-#~ "si contenen fitxers o dades que voleu conservar.\n"
-#~ "Els directoris que es solen conservar són /home i /usr/local."
-
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Ara s'estan instalˇlant els paquets seleccionats. Aquesta operació\n"
-#~ "trigarŕ pocs minuts, tret que hagueu escollit actualitzar un\n"
-#~ "sistema existent; en aquest cas trigarŕ més temps, fins i tot\n"
-#~ "abans que s'iniciď la instalˇlació."
-
-#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Si el DrakX no ha pogut trobar el ratolí, o si voleu comprovar quč\n"
-#~ "ha fet, a la part superior apareixerŕ la llista de ratolins.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si esteu d'acord amb els parŕmetres del DrakX, feu clic a 'D'acord'.\n"
-#~ "Si no, escolliu, al menú superior, el tipus de ratolí que us sembli més "
-#~ "semblant al vostre.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si es tracta d'un ratolí sčrie, també us caldrŕ indicar al DrakX a\n"
-#~ "quin port sčrie estŕ connectat."
-
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear "
-#~ "then.\n"
-#~ "\n"
-#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you install a Mandrake Linux system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "Aquesta secció estŕ dedicada a la configuració d'una xarxa local\n"
-#~ "(LAN) o d'un mňdem.\n"
-#~ "\n"
-#~ "Escolliu \"LAN local\" i el DrakX intentarŕ trobar un adaptador\n"
-#~ "Ethernet al vostre ordinador. El sistema trobarŕ i inicialitzarŕ\n"
-#~ "automŕticament els adaptadors PCI.\n"
-#~ "No obstant aixň, si el vostre perifčric és ISA, la detecció\n"
-#~ "no funcionarŕ, i us caldrŕ escollir un programa de control a la\n"
-#~ "llista que apareixerŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Com en el cas dels adaptadors SCSI, podeu deixar que, d'entrada,\n"
-#~ "el programa de control comprovi l'adaptador; si no ho feu així, us\n"
-#~ "caldrŕ especificar les opcions del programa de control que haureu\n"
-#~ "d'anar a buscar a la documentació del vostre maquinari.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si instalˇleu un sistema Mandrake Linux en un ordinador que forma\n"
-#~ "part d'una xarxa existent, l'administrador de la xarxa us haurŕ de\n"
-#~ "facilitar la informació necessŕria (l'adreça IP, la submŕscara de\n"
-#~ "xarxa i el nom de l'ordinador central). Si esteu configurant una\n"
-#~ "xarxa privada, com ara a casa, haureu d'escollir les adreces.\n"
-#~ "\n"
-#~ "\n"
-#~ "Escolliu \"Marcatge amb mňdem\" i es configurarŕ la connexió a\n"
-#~ "Internet amb un mňdem. El DrakX intentarŕ trobar el mňdem, perň,\n"
-#~ "si no se'n surt, us caldrŕ seleccionar el port sčrie al qual estŕ\n"
-#~ "connectat."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "El GNU/Linux pot treballar amb molts tipus d'impressores. Per a cada\n"
-#~ "un d'aquests tipus, perň, cal una configuració diferent. Tingueu\n"
-#~ "en compte, perň, que l'spooler utilitza 'lp' com a nom d'impressora\n"
-#~ "per defecte, de manera que heu de tenir una impressora amb aquest nom.\n"
-#~ "No obstant aixň, podeu donar diferents noms a una impressora, separant-\n"
-#~ "los amb el carŕcter '|'. D'aquesta manera, si voleu donar-li un nom més\n"
-#~ "aclaridor només us caldrŕ indicar-lo en primer lloc, p.ex. \"La meva\n"
-#~ "impressora|lp\".\n"
-#~ "La impressora que contingui \"lp\" al(s) nom(s) serŕ la impressora per\n"
-#~ "defecte\n"
-#~ "\n"
-#~ "\n"
-#~ "Si la vostra impressora estŕ connectada directament a l'ordinador,\n"
-#~ "seleccioneu \"Impressora local\". Haureu d'indicar a quin port\n"
-#~ "estŕ connectada i seleccionar-ne el filtre corresponent.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba a un ordinador Unix\n"
-#~ "remot, seleccioneu \"lpd remot\". Per poder-la fer funcionar no\n"
-#~ "cal cap nom d'usuari ni contrasenya, perň us caldrŕ saber el nom\n"
-#~ "de la cua d'impressió del servidor remot.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora SMB (és a dir, una impressora\n"
-#~ "que es troba a un ordinador remot amb Windows 9x/NT), per poder-ho\n"
-#~ "fer haureu d'indicar el seu nom SMB (que no és el seu nom TCP/IP)\n"
-#~ "i possiblement la seva adreça IP, nom d'usuari, grup de treball,\n"
-#~ "contrasenya, i, evidentment, el nom de la impressora. El mateix\n"
-#~ "per a una impressora NetWare, perň en aquest cas no us caldrŕ la\n"
-#~ "informació del grup de treball."
-
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "És molt recomanable que respongueu \"Sí\" aquí. Si més endavant\n"
-#~ "instalˇleu Microsoft Windows, sobreescriurŕ el sector d'arrencada.\n"
-#~ "Tret que hagueu fet el disc d'arrencada com es\n"
-#~ "recomana, ja no podreu tornar a arrencar el GNU/Linux."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Moveu la bola!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Voleu descartar els canvis?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "De quin tipus és el vostre ratolí?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Resolucions automŕtiques"
-
-#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
-#~ msgstr ""
-#~ "Per saber quines resolucions estan disponibles, en provaré algunes.\n"
-#~ "La pantalla parpellejarŕ...\n"
-#~ "Ho podeu desactivar si voleu; sentireu un avís sonor quan estigui llest"
-
-#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
-#~ msgstr ""
-#~ "Puc mirar de trobar les resolucions disponibles (p.ex. 800x600).\n"
-#~ "De vegades, perň, aixň pot penjar l'ordinador.\n"
-#~ "Us hi voleu arriscar?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "No s'han trobat modes vŕlids\n"
-#~ "Intenteu-ho amb una altra targeta de vídeo o monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Recerca automŕtica de resolucions"
-
-#~ msgid "dhcpd"
-#~ msgstr "dhcpd"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB Mouse"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB Mouse (2 botons)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB Mouse (3 o més botons)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB Mouse"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB Mouse (2 botons)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB Mouse (3 o més botons)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Bus Mouse"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft Bus Mouse"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech Bus Mouse"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Mouse (3 o més botons)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A o superior (sčrie)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (sčrie)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (sčrie)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (sčrie)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Generic Mouse (sčrie)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Compatible Microsoft (sčrie)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Ratolí Generic de 3 botons (sčrie)"
-
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Ratolí Kensington Thinking (sčrie)"
-
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Necessito configurar el vostre adaptador de xarxa por poder connectar a "
-#~ "Internet."
-
-#~ msgid "nfs mount failed"
-#~ msgstr "ha fallat el muntatge de l'nfs"
-
-#~ msgid "Socket"
-#~ msgstr "Sňcol"
-
-#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
-#~ msgstr ""
-#~ "El DrakX generarŕ els fitxers de configuració tant per a l'XFree 3.3 com "
-#~ "per a l'Xfree 4.0.\n"
-#~ "Per defecte, s'utilitza el servidor 4.0, tret que no funcioni per a la "
-#~ "vostra targeta.\n"
-#~ "\n"
-#~ "Voleu conservar l'Xfree 3.3?"
-
-#~ msgid "tie"
-#~ msgstr "llaç"
-
-#~ msgid "brunette"
-#~ msgstr "morena"
-
-#~ msgid "girl"
-#~ msgstr "noia"
-
-#~ msgid "woman-blond"
-#~ msgstr "dona-rossa"
-
-#~ msgid "automagic"
-#~ msgstr "automagic"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Criptogrŕfic"
-
-#~ msgid "Take over the hard drive"
-#~ msgstr "Encarrega't del disc dur"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "No configuris la xarxa"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Voleu configurar la xarxa local per al vostre sistema?"
-
-#~ msgid "Have you been provided with a hostname?"
-#~ msgstr "Us han donat un nom d'ordinador central?"
-
-#~ msgid "Show less"
-#~ msgstr "Mostra'n menys"
-
-#~ msgid "Show more"
-#~ msgstr "Mostra'n més"
-
-#~ msgid "URI for Local printer"
-#~ msgstr "URI per a la impressora local"
-
-#~ msgid "URI for Network printer"
-#~ msgstr "URI per a la impressora de xarxa"
-
-#~ msgid "Local Printer Device (URI)"
-#~ msgstr "Dispositiu de la impressora local (URI)"
-
-#~ msgid ""
-#~ "What URI device is your printer connected to\n"
-#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
-#~ msgstr ""
-#~ "A quin dispositiu URI estŕ connectada la vostra impressora?\n"
-#~ "(tingueu en compte que parallel:/dev/lp0 equival a LPT1:)"
-
-#~ msgid "Network Printer Options (URI)"
-#~ msgstr "Opcions de la impressora de xarxa (URI)"
-
-#~ msgid ""
-#~ "Choose the right Device URI for a network printer or a local file. "
-#~ "Examples:\n"
-#~ " file:/path/to/filename.prn\n"
-#~ " http://hostname:631/ipp/port1\n"
-#~ " ipp://hostname/ipp/port1\n"
-#~ " lpq://hostname/queue\n"
-#~ " socket://hostname\n"
-#~ " socket://hostname:9100"
-#~ msgstr ""
-#~ "Seleccioneu l'URI de dispositiu correcte per a una impressora de xarxa o "
-#~ "un fitxer local. Exemples:\n"
-#~ " file:/camí/al/nomdefitxer.prn\n"
-#~ " http://ordinadorcentral:631/ipp/port1\n"
-#~ " ipp://ordinadorcentral/ipp/port1\n"
-#~ " lpq://ordinadorcentral/cua\n"
-#~ " socket://ordinadorcentral\n"
-#~ " socket://ordinadorcentral:9100"
-
-#~ msgid "Local Area Network specification"
-#~ msgstr "Especificació de la xarxa d'ŕrea local"
-
-#~ msgid "You may now decide which class C network to use.\n"
-#~ msgstr "Ara podeu decidir quina xarxa de classe C voleu utilitzar.\n"
-
-#~ msgid "Internet Connection Sharing - setup of %s"
-#~ msgstr "Connexió a Internet compartida: configuració de %s"
-
-#~ msgid ""
-#~ "The following interface is about to be configured:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Ara es configurarŕ la interfície següent:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-
-#~ msgid "Everything configured!"
-#~ msgstr "S'ha configurat tot!"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Quina és la disposició del vostre teclat?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Voleu que intenti trobar targetes PCMCIA?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Voleu que intenti trobar els dispositius %s?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr ""
-#~ "Voleu configurar el marcatge amb xarxa per mňdem per al vostre sistema?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Voleu que intenti trobar dispositius PCI?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "S'estŕ cercant la partició arrel."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr ""
-#~ "%s: Aquesta partició no és arrel; si us plau, seleccioneu-ne una altra."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Si us plau, seleccioneu una partició per utilitzar-la com a arrel."
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "No teniu cap partició de Windows!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "No teniu prou espai per al Lnx4win"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds "
-#~ "for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Benvingut al LILO, la utilitat que us permet triar el sistema operatiu!\n"
-#~ "\n"
-#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-#~ "\n"
-#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-#~ "segons\n"
-#~ "fins a l'arrencada predeterminada.\n"
-
-# NOTE: this message will be displayed by SILO at boot time; that is
-# only the ascii charset will be available
-# so use only 7bit for this message
-#
-#~ msgid ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Benvingut al SILO, la utilitat que us permet triar el sistema operatiu!\n"
-#~ "\n"
-#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-#~ "\n"
-#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-#~ "segons\n"
-#~ "fins a l'arrencada predeterminada.\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "Opcions principals del SILO"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Aquestes són les entrades següents del SILO.\n"
-#~ "Podeu afegir-ne algunes més o canviar-ne les existents."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Aquesta etiqueta ja estŕ en ús"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Ha fallat la instalˇlació del SILO. S'ha produďt l'error següent:"
-
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "En primer lloc, el DrakX intentarŕ trobar un o més adaptadors SCSI\n"
-#~ "PCI. Si en troba, i sap quin(s) programa(es) de control utilitzar,\n"
-#~ "l'inserirŕ o els inserirŕ automŕticament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si el vostre adaptador SCSI és una targeta ISA, o si és PCI perň\n"
-#~ "el DrakX no sap amb quin programa de control ha d'utilitzar-la, o\n"
-#~ "si no teniu cap adaptador SCSI, se us preguntarŕ si en teniu un o\n"
-#~ "no. Si no en teniu cap, respongueu \"No\". Si en teniu un o més,\n"
-#~ "respongueu \"Sí\". Apareixerŕ una llista de programes de control,\n"
-#~ "de la qual n'haureu de triar un.\n"
-#~ "\n"
-#~ "\n"
-#~ "Un cop hagueu triat el programa de control, el DrakX us preguntarŕ\n"
-#~ "si voleu establir-ne les opcions. Primer, perň, deixeu que el\n"
-#~ "programa de control explori el maquinari: normalment funciona bé.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no, no oblideu la informació sobre el vostre maquinari que\n"
-#~ "pugueu aconseguir a la documentació o al Windows (si el teniu al\n"
-#~ "sistema), com aconsella la guia d'instalˇlació. Aquestes són les\n"
-#~ "opcions que haureu de proporcionar al programa de control."
-
-#~ msgid "Shutting down"
-#~ msgstr "S'estŕ tancant l'ordinador"
-
-#~ msgid ""
-#~ "Some true type fonts from windows have been found on your computer.\n"
-#~ "Do you want to use them? Be sure you have the right to use them under "
-#~ "Linux."
-#~ msgstr ""
-#~ "S'han trobat alguns tipus de lletra \"true type\" del Windows a "
-#~ "l'ordinador.\n"
-#~ "Voleu utilitzar-les? Assegureu-vos que esteu autoritzat a utilitzar-les "
-#~ "sota Linux."
-
-#~ msgid "useless"
-#~ msgstr "inútil"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-#~ "Linux:\n"
-#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-#~ "2000\n"
-#~ "or 7.0 (Air)."
-#~ msgstr ""
-#~ "Escolliu \"Instalˇla\" si no hi ha instalˇlada cap versió anterior de "
-#~ "Linux,\n"
-#~ "o si voleu utilitzar diverses distribucions o versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Escolliu \"Actualització\" si voleu actualitzar una versió anterior de\n"
-#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen) 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000 o 7.0 (Air)."
+#~ msgid "preload module"
+#~ msgstr "mňdul de pre-cŕrrega"
-#~ msgid ""
-#~ "(a user ``mandrake'' with password ``mandrake'' has been automatically "
-#~ "added)"
-#~ msgstr ""
-#~ "(s'ha afegit automŕticament un usuari ``mandrake'' amb contrasenya "
-#~ "``mandrake'')"
+#~ msgid "click on a category"
+#~ msgstr "feu clic a una categoria"
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Voleu utilitzar el LILO?"
-
-#~ msgid ""
-#~ "You may now select the packages you wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "First you can select group of package to install or upgrade. After that\n"
-#~ "you can select more packages according to the total size you wish to\n"
-#~ "select.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are in expert mode, you can select packages individually.\n"
-#~ "Please note that some packages require the installation of others.\n"
-#~ "These are referred to as package dependencies. The packages you select,\n"
-#~ "and the packages they require will be automatically selected for\n"
-#~ "install. It is impossible to install a package without installing all\n"
-#~ "of its dependencies."
-#~ msgstr ""
-#~ "Ara podeu seleccionar els paquets que voleu instalˇlar.\n"
-#~ "\n"
-#~ "\n"
-#~ "En primer lloc, podeu seleccionar el grup del paquet a instalˇlar\n"
-#~ "o actualitzar. Després, podeu seleccionar més paquets segons la\n"
-#~ "mida total que voleu seleccionar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si treballeu amb el mode expert, podeu seleccionar els paquets\n"
-#~ "individualment.\n"
-#~ "Tingueu en compte, perň, que alguns paquets necessiten que altres\n"
-#~ "també estiguin instalˇlats.\n"
-#~ "Aixň s'anomena 'dependčncia de paquets'. Els paquets que\n"
-#~ "seleccioneu, i els que aquests necessitin, es seleccionaran\n"
-#~ "automŕticament per a la instalˇlació. No és possible instalˇlar un\n"
-#~ "paquet sense instalˇlar-ne tots els dependents."
-
-#~ msgid ""
-#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-#~ "Normally they are correctly detected during installation. If you don't\n"
-#~ "see yours detected, you can add one or more now.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't want that everybody could access at one of them, you can "
-#~ "remove\n"
-#~ "it now (a boot disk will be needed to boot it)."
-#~ msgstr ""
-#~ "El LILO (el carregador de Linux) pot arrencar el Linux i altres sistemes\n"
-#~ "operatius, que normalment es detecten correctament durant la "
-#~ "instalˇlació.\n"
-#~ "Si veieu que el vostre no s'ha detectat, ara podeu afegir-ne un o més.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no voleu que tothom pugui accedir a algun d'ells, podeu\n"
-#~ "eliminar-lo ara (caldrŕ un disc d'arrencada per arrencar-lo)."
-
-#~ msgid ""
-#~ "Now that you've selected desired groups, please choose \n"
-#~ "how many packages you want, ranging from minimal to full \n"
-#~ "installation of each selected groups."
-#~ msgstr ""
-#~ "Ara que ja heu seleccionat els grups desitjats, seleccioneu \n"
-#~ "quants paquets voleu, ordenant-los des de la instalˇlació mínima \n"
-#~ "fins a la instalˇlació completa de cadascun dels grups seleccionats."
-
-#~ msgid ""
-#~ "You need %dMB for a full install of the groups you selected.\n"
-#~ "You can go on anyway, but be warned that you won't get all packages"
-#~ msgstr ""
-#~ "Us calen %dMB per a una instalació completa dels grups que heu "
-#~ "seleccionat.\n"
-#~ "Podeu continuar igualment, perň tingueu en compte que no tindreu tots els "
-#~ "paquets"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Escolliu un altre CD per instalˇlar"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed Linux before.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Customized: If you are familiar with Linux, you will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the "
-#~ "computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You "
-#~ "will\n"
-#~ "be able to select the usage of your installed system as for \"Customized"
-#~ "\"."
-#~ msgstr ""
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Recomanada: Si mai no heu instalˇlat el Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Personalitzada: Si esteu familiaritzat amb el Linux, podreu\n"
-#~ "triar l'ús del sistema instalˇlat entre Normal, Desenvolupament o\n"
-#~ "Servidor. Trieu \"Normal\" per a una instalˇlació per a un ús\n"
-#~ "general del vostre ordinador, \"Desenvolupament\" si utilitzareu\n"
-#~ "l'ordinador principalment per a desenvolupament de programari,\n"
-#~ "o \"Servidor\" si voleu instalˇlar un servidor convencional (per\n"
-#~ "a correu, impressions...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
-#~ "instalˇlació totalment personalitzada, aquest és el vostre\n"
-#~ "tipus d'instalˇlació. Podreu seleccionar l'ús del vostre sistema\n"
-#~ "com a \"Personalitzada\"."
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "S'estan descarregant els paquets criptogrŕfics"
-
-#~ msgid "Setup SCSI"
-#~ msgstr "Configura el SCSI"
-
-#~ msgid "Installation CD Nr %s"
-#~ msgstr "CD d'instalˇlació Nr %s"
-
-#~ msgid ""
-#~ "Update installation image!\n"
-#~ "\n"
-#~ "Ask your system administrator or reboot to update your installation image "
-#~ "to include\n"
-#~ "the Cd-Rom image labelled \"%s\". Press Ok if image has been updated or "
-#~ "press Cancel\n"
-#~ "to avoid installation from this Cd-Rom image."
-#~ msgstr ""
-#~ "Actualitzeu la imatge de la instalˇlació!\n"
-#~ "\n"
-#~ "Consulteu a l'administrador del sistema o torneu a arrencar per "
-#~ "actualitzar\n"
-#~ "la imatge de la instalˇlació per incloure la imatge en CD-ROM etiquetada "
-#~ "com\n"
-#~ "\"%s\". Premeu D'acord si la imatge s'ha actualitzat o premeu Cancelˇla "
-#~ "per\n"
-#~ "no fer la instalˇlació des d'aquesta imatge en Cd-ROM."
-
-#~ msgid "Which language do you want?"
-#~ msgstr "Quin idioma voleu?"
-
-#~ msgid "Hurt me plenty"
-#~ msgstr "Fes-me molt de mal"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "Quina utilització voleu?"
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Instalˇlació o actualització"
-
-#~ msgid "Enter a floppy (all data will be lost)"
-#~ msgstr ""
-#~ "Inseriu un disquet a la unitat\n"
-#~ "(Se'n perdran totes les dades)"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "Ara s'instalˇlaran %d MB. Podeu triar instalˇlar més programes"
-
-#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "S'han escollit massa paquets: %dMB no cap a %dMB"
-
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Fitxer d'inici rŕpid %s incorrecte (ha fallat %s)"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Mida: %s MB"
-
-#~ msgid "US Keyboard"
-#~ msgstr "Teclat EU"
-
-#~ msgid "resizing"
-#~ msgstr "s'estŕ canviant la mida"
-
-#~ msgid "changing type of"
-#~ msgstr "s'estŕ canviant el tipus de"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "Després de %s partició %s,"
-
-#~ msgid "linear"
-#~ msgstr "lineal"
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Lineal (necessari per a algunes unitats SCSI)"
-
-#~ msgid "beginner"
-#~ msgstr "principiant"
-
-#~ msgid "developer"
-#~ msgstr "desenvolupador"
-
-#~ msgid "Password:"
-#~ msgstr "Contrasenya:"
-
-#~ msgid "User name:"
-#~ msgstr "Nom d'usuari:"
-
-#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
-#~ msgstr ""
-#~ "No s'ha pogut crear un disquet d'arrencada HTP.\n"
-#~ "Potser us caldrŕ reiniciar la instalˇlació i introduir \"%s\" a "
-#~ "l'indicador"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Cal reiniciar la instalˇlació amb els nous parŕmetres"
+#~ msgid "Remove"
+#~ msgstr "Elimina"
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Cal reiniciar la instalˇlació arrencant des del disquet"
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "Eina per a la creació de discs d'arrencada"
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "Introduďu un disquet per una arrencada habilitada per a HTP\n"
-#~ "(es perdran totes les dades del disquet)"
+#~ msgid "Show expert mode"
+#~ msgstr "Mostra el mode expert"
-#~ msgid ""
-#~ "Linux does not yet fully support ultra dma 66.\n"
-#~ "As a work-around i can make a custom floppy giving access the hard drive "
-#~ "on ide2 and ide3"
-#~ msgstr ""
-#~ "El Linux encara no suporta completament l'ultra dma 66.\n"
-#~ "Com a alternativa, puc fer un disquet personalitzat que doni accés a tot "
-#~ "el disc dur a ide2 i ide3"
+#~ msgid "modules"
+#~ msgstr "mňduls"
-#~ msgid "A entry %s already exists"
-#~ msgstr "Ja existeix una entrada %s"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "Creador de discs d'arrencada. Encara en una fase primerenca.\n"
-#~ msgid "Installation CD Nr 1"
-#~ msgstr "CD d'instalˇlació Nr 1"
+#~ msgid "experts only"
+#~ msgstr "només experts"
-#~ msgid "Local LAN"
-#~ msgstr "LAN local"
+#~ msgid "/File/_Preferences"
+#~ msgstr "/Fitxer/_Preferčncies"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 3b88dd7d4..9d1a5c392 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -1,39 +1,69 @@
-# Czech messages for DrakX.
+# Czech messages for drakbootdisk.
# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (C) 1999 MandrakeSoft
-# Vladimír Marek <vlmarek@volny.cz>, 2000
-# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000
+# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001.
+# Michal Bukovjan <michal.bukovjan@openone.cz>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 14:25GMT+0100\n"
-"Last-Translator: Radek Vybíral <Radek.Vybiral@vsb.cz>\n"
-"Language-Team: Czech <cs@li.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-29 14:57GMT\n"
+"Last-Translator: Michal Bukovjan <michal.bukovjan@openone.cz>\n"
+"Language-Team: Čeština <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurovat všechny monitory nezávisle"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Použít rozšíření Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurovat pouze kartu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB nebo více"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Zvolte X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Konfigurace dvou monitorů"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -41,41 +71,44 @@ msgstr ""
"Váš systém podporuje zobrazení na dvou monitorech.\n"
"Co chcete dělat?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafická karta"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Kolik paměti je na vaší grafické kartě ?"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Zvolte typ vaší grafické karty"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Nastavení XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Zvolte X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Které XFree by jste chtěli použít?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigurovat všechny monitory nezávisle"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Zvolte ovladač pro X server"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Použít rozšíření Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Ovladač pro X"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurovat pouze kartu \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Které XFree by jste chtěli použít?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s s hardwarovou 3D akcelerací"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +118,17 @@ msgstr ""
"Pokud použijete XFree %s, můžete na druhou stranu dosáhnout lepších výsledků "
"ve 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "S XFree %s může vaše karta využít 3D hardwarové akcelerace."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s s hardwarovou 3D akcelerací"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"S XFree %s může vaše karta využít 3D hardwarové akcelerace.\n"
-" TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s s EXPERIMENTÁLNÍ 3D hardwarovou akcelerací"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -121,31 +139,57 @@ msgstr ""
"TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU.\n"
"Vaše karta je podporována i v XFree %s, kde může mít lepší podporu pro 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"S XFree %s může vaše karta využít 3D hardwarové akcelerace.\n"
+" TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalační ovladač pro obrazovku)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Nastavení XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Kolik paměti je na vaší grafické kartě ?"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Zvolte možnosti pro daný X server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Zachovat změny?\n"
+"Aktuální konfigurace je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Zvolte typ svého monitoru"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Vlastní"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Obecná"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Dodavatel"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -169,511 +213,326 @@ msgstr ""
"jistí\n"
"zvolte raději typ s nižšími schopnostmi."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontální(řádková) synchronizace"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikální(obrazovková) synchronizace"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor není nastaven"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafická karta ještě není nastavena"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Ještě nejsou zvolena rozlišení"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Chcete si vyzkoušet nastavení?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varování: na této grafické kartě je testování nebezpečné"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Vyzkoušet nastavení"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 barev (8 bitů)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"zkuste změnit některé parametry"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tisíc barev (15 bitů)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Vyskytla se tato chyba:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tisíc barev (16 bitů)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Test skončí automaticky za %d sekund"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliónů barev (24 bitů)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Je to správné nastavení?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardy barev (32 bitů)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Vyskytla se chyba, zkuste změnit některé parametry"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rozlišení"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rozlišení"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Vyberte si rozlišení a barevnou hloubku"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafická karta: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Více"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Zrušit"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Expertní režim"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ukázat vše"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Chcete si vyzkoušet nastavení?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rozlišení"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Vyzkoušet nastavení"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Rozložení klávesnice: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Typ myši: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Přípojení myši: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontální frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikální frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafická karta: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikace grafické karty: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Paměť na gr. kartě: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Barevná hloubka: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rozlišení: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ovladač: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Připravuji nastavení X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Co chcete dělat?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Změnit monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Změnit grafickou kartu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Změnit parametry X Serveru"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Změnit rozlišení"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Zobrazit informace"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Znovu vyzkoušet nastavení X"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Konec"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zachovat změny?\n"
-"Aktuální konfigurace je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Spouští se X"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Můžu nastavit váš počítač tak, aby automaticky spustil X při startu.\n"
"Chcete aby počítač po zapnutí spustil grafický režim?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Pro aktivaci změn se prosím znovu přihlaste na %s"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prosím odhlaste se a pak stiskněte Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 barev (8 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisíc barev (15 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisíc barev (16 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliónů barev (24 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardy barev (32 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB nebo více"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Klasické VGA, 640x480 při 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 při 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Kompatibilní s 8514, 1024x768 při 87 Hz prokládaně (ne 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 při 87 Hz prokládaně, 800x600 při 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Lepší Super VGA, 800x600 při 60 Hz, 640x480 při 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Neprokládaná SVGA, 1024x768 při 60 Hz, 800x600 při 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Vysokofrekvenční SVGA, 1027x768 při 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multifrekvenční který umí 1280x1024 při 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multifrekvenční, který umí 1280x1024 při 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multifrekvenční, který umí 1280x1024 při 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor, který umí 1600x1200 při 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor, který umí 1600x1200 při 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "První sektor zaváděcího diskového oddílu"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "První sektor disku (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalace SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zaváděcí program?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalace LILO/Grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO s textovou nabídkou"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO s grafickou nabídkou"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Spuštění s DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Základní nastavení zaváděcího programu"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Zaváděcí program"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalace zaváděcího programu"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Startovací zařízení"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nefunguje se starým BIOSem)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktní"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktní"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Textový režim"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Prodleva před automatickým spuštěním"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Heslo"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Heslo (podruhé)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Omezení nastavení z příkazové řádky"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "omezení"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Vyčistit /tmp při každém startu"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Pokud je třeba, upřesněte velikost paměti (nalezeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Povolit více profilů"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Zadejte velikost paměti v MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Volba ''Omezení nastavení z příkazové řádky'' je bezpředmětné bez hesla"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Zkuste to znovu, prosím"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Hesla nejsou shodná"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Úvodní zpráva"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Prodleva pro firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Prodleva při spuštění"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Povolit spuštění z CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Povolit zavaděč OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Výchozí OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -687,83 +546,83 @@ msgstr ""
"\n"
"Ze kterého disku spouštíte systém?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Tady jsou všechny záznamy.\n"
"Můžete přidat další nebo změnit stávající."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Přidat"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Hotovo"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Změnit"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Jaký typ záznamu chcete přidat?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Jiný systém (SunOs...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Jiný systém (MacOs...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Jiný systém (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Obraz(image)"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Kořenový(root)"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Připojit"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Pro čtení i zápis"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabulka"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nejistý"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Značka"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Výchozí"
@@ -795,53 +654,77 @@ msgstr "Musíte zadat kořenový oddíl"
msgid "This label is already used"
msgstr "Tato značka se již používá"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Našel jsem %s %s rozhraní"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Máte ještě nějaké jiné?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Máte nějaké %s rozhraní?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ano"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Ukázat informace o hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaluji ovladač pro %s kartu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, 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 ""
+"Nyní lze zadat volby pro modul %s.\n"
+"Pozn.: každá adresa by měla být ve tvaru 0x např. '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nyní můžete poskytnout modulu %s další parametry.\n"
+"Volby se zadávají ve tvaru ''jméno=hodnota jméno2=hodnota2 ...''.\n"
+"Například, ''io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Volby modulu:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Který %s ovladač mám zkusit?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -857,43 +740,19 @@ msgstr ""
"nějaké doplňující možnosti, nebo raději necháte ovladač samostatně "
"prozkoumat\n"
"hardware vašeho počítače, aby získal informace které potřebuje? Zkoumání\n"
-"hardware může ve vyjímečných případech způsobit zamrznutí počítače, ale "
+"hardware může ve výjimečných případech způsobit zamrznutí počítače, ale "
"nemělo\n"
"by v žádném případě způsobit jiné škody."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatické prozkoumání"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Zadejte možnosti"
-#: ../../any.pm_.c:725
-#, 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 ""
-"Nyní lze zadat volby pro příslušný modul %s.\n"
-"Pozn.: každá adresa by měla být ve tvaru 0x např. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nyní můžete poskytnout modulu %s další parametry.\n"
-"Volby se zadávají ve tvaru ''jméno=hodnota jméno2=hodnota2 ...''.\n"
-"Například, ''io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Volby modulu:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -902,49 +761,53 @@ msgstr ""
"Spuštění modulu %s selhalo.\n"
"Chcete to zkusit s jinými parametry?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "přístup k programům v X prostředí"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "přístup k rpm nástrojům"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "povolit \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "přístup k administrativním souborům"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(už byl přidán %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Toto heslo je příliš jednoduché"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Prosím zadejte uživatelské jméno"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Uživatelské jméno může obsahovat pouze malá písmena, čísla, '-' a '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Toto uživatelské jméno je příliš dlouhé"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Toto uživatelské jméno už bylo přidáno"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Přidat uživatele"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -953,32 +816,32 @@ msgstr ""
"Zadejte uživatele\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Vytvořit uživatele"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Skutečné jméno"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Uživatelské jméno"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Automatické přihlášení"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -987,56 +850,58 @@ msgstr ""
"uživatele.\n"
"Chcete použít tuto možnost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Zvolte standardního uživatele :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Vyberte si, který správce oken má být spouštěn:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Prosím zvolte si jazyk, který chcete používat."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 "Můžete si zvolit další jazyky, které budou dostupné po instalaci"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Všechno"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Povolit všem uživatelům"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Vlastní"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Nesdílet"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Balíček %s musí být nainstalován. Chcete ho nainstalovat?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Nyní lze provést export přes NFS nebo Samba protokol. Který chcete"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr ""
+"Nyní lze provést export přes protokol NFS nebo Samba. Vyberte prosím, který "
+"chcete použít."
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Chybí potřebný balíček %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1045,67 +910,47 @@ msgstr ""
"Chcete povolit uživatelům, aby si mohli sdílet adresáře ve svém domovském "
"adresáři?\n"
"Pokud to povolíte, uživatelům stačí pouze kliknout na \"Sdílet\" v "
-"aplikacích konqueror a nautilus.\n"
+"aplikacích Konqueror a Nautilus.\n"
"\n"
"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Zrušit"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
-msgstr "Spustit userdrake"
+msgstr "Spustit UserDrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
"Sdílení mezi uživateli používá skupinu \"fileshare\". \n"
-"Uživatele lze do této skupiny přidat pomocí nástroje userdrake."
+"Uživatele lze do této skupiny přidat pomocí nástroje UserDrake."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Dveře dokořán"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Slabá"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standardní"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Vysoká"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Vyšší"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidní"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1116,14 +961,14 @@ msgstr ""
"systém, ale na druhou stranu je velmi citlivý: Nesmí být použit pro\n"
"počítač připojený k Internetu. Pro přihlášení není zapotřebí žádné heslo."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Hesla jsou nyní aktivní, ale stále nedoporučuji použít tento počítač na síti."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,60 +976,62 @@ msgstr ""
"Toto je standardní úroveň zabezpečení pro počítač, který je používán jako "
"klient pro připojení k internetu."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
"Existují zde některá omezení a každou noc jsou spuštěny automatické testy."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-"S touto bezpečnostní úrovní je možné používat počítač jako server.\n"
-"Bezpečnost je nyní dostatečná pro server s připojením mnoha klientů.\n"
-"Poznámka: pokud je počítač používán pouze jako klient pro připojení k "
-"Internetu, je lepší zvolit nižší úroveň."
+"S touto bezpečnostní úrovní je možné používat systém jako server.\n"
+"Bezpečnost je nyní dostatečně vysoká, aby bylo možné používat systém jako "
+"server, ke kterému\n"
+"je možné připojit mnoho klientů. Poznámka: pokud je počítač používán pouze "
+"jako klient pro připojení k Internetu, je lepší zvolit nižší úroveň."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Tato úroveň má vlastnosti předchozí úrovně, ale systém je úplně uzavřen.\n"
"Zabezpečení je nastaveno na maximum."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Zvolte si úroveň zabezpečení"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Úroveň zabezpečení"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Použít libsafe pro servery"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Knihovna, které zabraňuje útokům proti přetečení bufferu nebo proti špatnému "
"formátování řetězců."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Administrátor bezpečnosti (přihlašovací jméno nebo email)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1208,7 +1055,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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
@@ -1221,7 +1068,7 @@ msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
#
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
@@ -1235,7 +1082,7 @@ msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
#
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stisknete ENTER pro start vybraného OS, 'e' pro upravu"
@@ -1248,33 +1095,33 @@ msgstr "Stisknete ENTER pro start vybraného OS, 'e' pro upravu"
#
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "spoustecich parametru, nebo 'c' pro prikazovou radku."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Vybrana polozka bude automaticky spustena za %d sekund."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "není dost místa v adresáři /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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Pracovní plocha"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Nabídka Start"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Zaváděcí program nelze nainstalovat na oddíl %s\n"
@@ -1287,15 +1134,19 @@ msgstr "nápověda zatím nedostupná.\n"
msgid "Boot Style Configuration"
msgstr "Nastavení stylu zavádění"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "_Soubor"
+msgstr "/_Soubor"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Soubor/_Konec"
+msgstr "/Soubor/U_končit"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>K"
@@ -1313,7 +1164,7 @@ msgstr "Tradiční monitor"
#: ../../bootlook.pm_.c:94
msgid "Traditional Gtk+ Monitor"
-msgstr "Tradiční Gtk+ monitor"
+msgstr "Tradiční GTK+ monitor"
#: ../../bootlook.pm_.c:95
msgid "Launch Aurora at boot time"
@@ -1330,14 +1181,14 @@ msgstr "Režim Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Jako správce spouštění nyní používáte %s.\n"
"Pokud chcete spustit průvodce nastavením, klikněte na Konfigurovat."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurovat"
@@ -1347,7 +1198,7 @@ msgid "System mode"
msgstr "Systémový režim"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Spustit X-Window při startu"
#: ../../bootlook.pm_.c:148
@@ -1358,14 +1209,16 @@ msgstr "Ne, nechci automatické přihlášení"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ano, chci automatické přihlášení s tímto (uživatelem, desktopem)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1411,9 +1264,9 @@ msgstr "Nelze provést sejmutí obrazovky před rozdělením disků"
#: ../../common.pm_.c:166
#, c-format
msgid "Screenshots will be available after install in %s"
-msgstr "Sejmuté obrazovvky budou dostupné po instalaci v adresáři %s"
+msgstr "Sejmuté obrazovky budou dostupné po instalaci v adresáři %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francie"
@@ -1421,7 +1274,7 @@ msgstr "Francie"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgie"
@@ -1445,11 +1298,12 @@ msgstr "Norsko"
msgid "Sweden"
msgstr "Švédsko"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemí"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Itálie"
@@ -1457,7 +1311,7 @@ msgstr "Itálie"
msgid "Austria"
msgstr "Rakousko"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Spojené státy americké"
@@ -1465,8 +1319,8 @@ msgstr "Spojené státy americké"
msgid "Please make a backup of your data first"
msgstr "Zálohujte si nejdřív svá data, prosím"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Čtěte pozorně!"
@@ -1479,11 +1333,12 @@ msgstr ""
"Jestliže chcete používat aboot, musíte nechat volné místo na začátku disku\n"
"(2048 sektorů stačí)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Chyba"
@@ -1491,11 +1346,11 @@ msgstr "Chyba"
msgid "Wizard"
msgstr "Průvodce"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Co uděláte ?"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1503,181 +1358,186 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"Máte jeden veliký oddíl FAT\n"
-"(většinou používaný Microsoft Dos/Windows).\n"
+"(většinou používaný Microsoft DOS/Windows).\n"
"Doporučuji vám nejprve zmenšit tento oddíl\n"
"(klepněte na něj a potom na\n"
"\"Změnit velikost\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Prosím klepněte na oddíl"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaily"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Žurnálovací FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOs"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Odkládací (swap)"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Prázdný"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Další"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Souborové systémy:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Vytvořit"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Změnit typ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Místo toho použijte ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Smazat"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Nejprve použijte ``Odpojit''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Tím že změníte typ oddílu %s přijdete o všechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Vyberte oddíl"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Vyberte jiný oddíl"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Konec"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Přepnout se do módu 'expert'"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Přepnout se do módu 'normální'"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Zpět"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Přesto chcete pokračovat?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Konec bez uložení"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Chcete skončit bez zapsání do tabulky oddílů?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
-msgstr "Chcete uložit modifikaci souboru /etc/fstab?"
+msgstr "Chcete uložit úpravy souboru /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automaticky rozmístit"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Vše smazat"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Více"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
-msgstr "Informace o hardisku"
+msgstr "Informace o pevném disku"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Všechny primární oddíly (partitions) jsou používány"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Nemůžu přidat žádný další oddíl"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Abyste mohli mít více oddílů, musíte smazat jeden existující a na jeho "
"místě\n"
-"vytvořit rozšířený(extended) oddíl"
+"vytvořit rozšířený (extended) oddíl"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Uložit tabulku oddílů"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Obnovit tabulku oddílů"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Záchrana tabulky oddílů"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Znovu načíst tabulku oddílů"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatické připojování pro vyjímatelná média"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Zvolit soubor"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1685,11 +1545,11 @@ msgstr ""
"Záložní tabulka oddílů nemá stejnou velikost\n"
"Chcete přesto chcete pokračovat?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Varování"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1697,122 +1557,129 @@ msgstr ""
"Vložte disketu do mechaniky\n"
"Všechna data na této disketě budou smazána"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Pokouším se obnovit tabulku oddílů"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Podrobné informace"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Přípojný bod"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Volby"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Změnit velikost"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Přesunout"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formátovat"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Připojit"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Přidat do RAIDu"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Přidat do LVMu"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Odpojit"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Odebrat z RAIDu"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Odebrat z LVMu"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Změnit RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Použít loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Vytvořit nový oddíl"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Počáteční sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Velikost v MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Souborový systém: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Adresář připojení (mount point): "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Nastavení: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Odstranit soubor loopbacku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Změnit typ oddílu"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Který souborový systém chcete použít?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Přepínám z ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kam chcete připojit loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kam chcete připojit zařízení %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1820,125 +1687,130 @@ msgstr ""
"Nemůžu smazat přípojný bod, protože tento oddíl je používán pro loopback.\n"
"Odstraňte nejprve loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Počítám hranice souborového systému fat"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Měním velikost"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Na tomto diskovém oddílu nelze měnit velikost"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Všechna data z tohoto oddílu by měla být zálohována"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Když změníte velikost oddílu %s, ztratíte tím všechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Zvolte novou velikost"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nová velikost v MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na který disk chcete oddíl přesunout?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na který sektor chcete oddíl přesunout?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Přesouvám"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Přesouvám oddíl..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Zvolte existující RAID pro přidání"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nový"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Zvolte existující LVM pro přidání"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Jméno pro LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Tento oddíl nemůže být použit pro loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Název souboru loopbacku:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Zadejte jméno souboru"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Soubor už je používán jiným loopbackem, zvolte si jiný"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Soubor už existuje. Mám ho použít?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Volby pro připojení"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Další"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "zařízení"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "úroveň"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
-msgstr "Velikost bloku(chunk)"
+msgstr "Velikost bloku (chunk)"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Buďte opatrní: tato akce je nebezpečná."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Jaký typ diskového oddílu?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Balíček %s musí být nainstalován. Chcete ho nainstalovat?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1950,20 +1822,20 @@ msgstr ""
"Buďto použijete LILO a nebude to fungovat, nebo nepoužijete LILO a tedy "
"nepotřebujete /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Oddíl který jste zvolili jako kořenový (root - /) je na disku fyzicky za "
-"cylindrem 1024,\n"
-"a přitom nemáte /boot oddíl. Jestliže chcete použít správce bootu (boot "
+"Oddíl který jste zvolili jako kořenový (root - /) je na disku fyzicky "
+"umístěný za cylindrem 1024,\n"
+"a přitom nemáte /boot oddíl. Jestli chcete použít správce bootu LILO (boot "
"manager),\n"
"přidejte ještě /boot oddíl"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1973,129 +1845,129 @@ msgstr ""
"S tím se není schopný vypořádat žádný zaváděcí program bez použití oddílu\n"
"/boot. Ujistěte se prosím, že tento oddíl máte."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Nová tabulka oddílů na disku %s bude zapsána!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Aby se změny uplatnily budete muset restartovat počítač"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Když naformátujete oddíl %s, ztratíte tím všechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formátuji"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formátuji soubor loopbacku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formátuji oddíl %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Schovat soubory"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Přesunout soubory na nový diskový oddíl"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Adresář %s již obsahuje nějaká data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Přesunuji soubory na nový diskový oddíl"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopíruji %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Odstraňuji %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "oddíl %s je nyní rozpoznán jako %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Zařízení: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Písmeno v DOSu: %s (jenom odhad)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Typ: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Jméno: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Začátek: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Velikost: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorů"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Od cylindru %d do cylindru %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Naformátovaný\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nenaformátovaný\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Připojený\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2104,7 +1976,7 @@ msgstr ""
"Loopback soubor(y): \n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2112,27 +1984,27 @@ msgstr ""
"Standardní startovací oddíl\n"
" (Pro MS-DOS, ne pro LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Úroveň %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Velikost bloku(chunk) %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID disky %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback soubor: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2144,7 +2016,7 @@ msgstr ""
"s ovladači, je lepší\n"
"no nechat neporušený.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2156,62 +2028,62 @@ msgstr ""
"oddíl je pro spuštění\n"
"dalšího systému.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Velikost: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylindrů, %s hlav, %s sektorů\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informace: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM disky %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ tabulky oddílů: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "na sběrnici %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "na kanále %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Volby: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Klíč pro kryptovaný souborový systém"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Vyberte si kryptovací klíč pro souborový systém"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Tento klíč je příliš jednoduchý (musí být alespoň %d znaků dlouhý)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Kryptovací klíče se neshodují"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Kryptovací klíč"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Kryptovací klíč (znovu)"
@@ -2220,35 +2092,62 @@ msgid "Change type"
msgstr "Změnit typ"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Prosím klepněte na zdroj"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Nelze se přihlásit pod uživatelským jménem %s (chybné heslo?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Vyžadováno Ověření Domény"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Další"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Které uživatelské jméno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Prosím zadejte své uživatelské jméno, heslo a název domény, pod kterými "
+"chcete přistupovat k tomuto počítači."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Uživatelské jméno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Doména"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Vyhledat servery"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formátování %s skončilo chybou"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "nevím jak naformátovat %s na typ %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "připojení oddílu %s v adresáři %s selhalo"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "selhal běh fsck s návratovým kódem %d nebo signálem %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "chyba odpojování %s: %s"
@@ -2265,68 +2164,310 @@ msgstr "s /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Nemůžete použít JFS pro oddíl menší než 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Nemůžete použít ReiserFS pro oddíl menší než 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Přípojné body (mount points) musí začínat '/'"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Oddíl s přípojným bodem %s už existuje\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Nelze použít LVM Logického disku na připojený bod %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Tento adresář musí kromě kořenového souborového systému zůstat"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Pro tento přípojný bod potřebujete opravdový souborový systém (Ext2, "
-"ReiserFS)\n"
+"Pro tento přípojný bod potřebujete opravdový souborový systém (ext2/ext3, "
+"ReiserFS, XFS nebo JFS)\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Nelze použít kryptovaný souborový systém na připojený bod %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Není dostatek místa pro automatické rozdělení disku"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nic nedělat"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Chyba při otevírání %s pro zápis: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Stala se chyba - nebylo nalezeno žádné zařízení na kterém by se daly "
"vytvořit nové souborové systémy. Zkontrolujte prosím hardware"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemáte žádné oddíly!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Autodetekce"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Neznámá|Obecná"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Neznámá|CPH05X (bt878) [více dodavatelů]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Neznámá|CPH06X (bt878) [více dodavatelů]"
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+"Modul bttv jádra operačního systému GNU/Linux nalezne správné parametry "
+"automaticky pro většinu moderních TV karet.\n"
+"Je-li vaše karta špatně detekována, lze nastavit správný typ karty a tuneru "
+"ručně zde. Pokud je to potřeba, vyberte také parametry vaší TV karty."
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Model karty :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "Nastavení PLL :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Počet bufferů pro zachycení :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Počet bufferů pro zachycení systémem mmap"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Typ tuneru :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Podpora rádia :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "Zapnout podporu rádia"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Konec"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Nápověda"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Nápověda..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_O aplikaci..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Model karty :"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Zrušit"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Sběrnice"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Třída médií"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Popis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Identifikace sběrnice"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Umístění sběrnice"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Zvolit soubor"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Zařízení brány(gateway)"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 tlačítka"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Verze Harddrake2 "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Nalezený hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informace"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Spustit nástroj pro nastavení"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Nastavit modul"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Probíhá detekce"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Prosím počkejte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "primární"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekundární"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Spouštím \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "O aplikaci HardDrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Toto je HardDrake, nástroj společnosti Mandrake pro nastavení hardware.\n"
+"Verze:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Autor:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Nápověda pro HardDrake"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2340,7 +2481,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2373,7 +2514,7 @@ msgstr ""
"\n"
"Jako první zadejte reálné jméno. Není to povinné, takže můžete zadat co "
"chcete\n"
-"a drakX použije první slovo jako uživatelské jméno, pod kterým se bude "
+"a DrakX použije první slovo jako uživatelské jméno, pod kterým se bude "
"uživatel\n"
"hlásit do systému. Je možné ho následně změnit. Dále se zadává heslo pro\n"
"uživatele. Volba hesla pro normální uživatele sice není tak kritická jako\n"
@@ -2466,9 +2607,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2587,7 +2727,7 @@ msgid ""
"another installation. See the second tip of last step on how to create such\n"
"a floppy."
msgstr ""
-"V závislosti na tom, zda jste zvolili individuální výbět balíčků, nabídne\n"
+"V závislosti na tom, zda jste zvolili individuální výběr balíčků, nabídne\n"
"se stromová struktura, obsahující všechny balíčky organizované do skupin.\n"
"Při procházení stromu můžete vybrat jednotlivé balíčky nebo celé skupiny.\n"
"\n"
@@ -2718,7 +2858,7 @@ msgstr ""
"hodin\n"
"připojením se k časovému serveru na internetu. Vyberte si v seznamu ten "
"server,\n"
-"který je vám nejblíž. Je zamořejmé, že pro správnou funkci musíte mít "
+"který je vám nejblíž. Je samozřejmé, že pro správnou funkci musíte mít "
"fukční\n"
"připojení k internetu. Na počítač se také nainstaluje časový server, který\n"
"mohou používat jiné počítače ve vaší lokální síti."
@@ -2745,7 +2885,7 @@ msgid ""
"after 10 seconds, restoring the screen."
msgstr ""
"X Window System (zkráceně X) je srdcem grafického rozhraní GNU/Linuxu,\n"
-"na kterém jsou provozovány grafická prostředí (KDE,Gnome,AfterStep, "
+"na kterém jsou provozovány grafická prostředí (KDE, Gnome, AfterStep, "
"WindowMaker)\n"
"V této sekci se DrakX pokusí nakonfigurovat X automaticky.\n"
"\n"
@@ -2806,7 +2946,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2818,9 +2958,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2890,21 +3029,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2920,9 +3058,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"V tomto bodě si musíte definovat, na které diskové oddíly budete\n"
"instalovat nový operační systém Mandrake Linux. Pokud je disk prázdný\n"
@@ -2936,7 +3074,7 @@ msgstr ""
"Ještě před započetím rozdělování disku si pročtěte manuál.\n"
"\n"
"Pokud máte zvolený Expertní režim, spustil se nástroj na práci s diskem: "
-"Diskdrake, který umožňuje lépe nastavit diskové oddíly. Pokud chcete použít\n"
+"DiskDrake, který umožňuje lépe nastavit diskové oddíly. Pokud chcete použít\n"
"průvodce, klikněte na tlačítko \"Průvodce\".\n"
"\n"
"Pokud máte již vytvořeny diskové oddíly z předchozích instalací nebo\n"
@@ -2999,9 +3137,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3097,7 +3234,7 @@ msgstr ""
"Klikněte na \"Zrušit\" pokud chcete vybrat jiné oddíly pro instalaci\n"
"systému Mandrake Linux.\n"
"\n"
-"Kliknutím na \"Rozšířené\" můžete vybrat, které oddílz budou otestovány\n"
+"Kliknutím na \"Rozšířené\" můžete vybrat, které oddíly budou otestovány\n"
"na vadné bloky."
#: ../../help.pm_.c:404
@@ -3175,8 +3312,8 @@ msgstr ""
"počítač využíván a čím cennější data obsahuje, tím je potřeba zvolit vyšší\n"
"úroveň. Na druhou stranu, vyšší úroveň znesnadňuje některé obvyklé postupy.\n"
"Více informací o úrovních bezpečnosti se dočtete v kapitole MSEC v "
-"referenční\n"
-"příručce. \n"
+"referenční příručce.\n"
+"\n"
"Pokud nevíte co vybrat, ponechte výchozí nastavení."
#: ../../help.pm_.c:442
@@ -3201,38 +3338,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3320,7 +3451,7 @@ msgstr ""
"\n"
"Pokud instalujete na počítač PPC, je potřeba vytvořit malý oddíl HPFS,\n"
"tzv. \"bootstrap\" o minimální velikosti 1MB, který bude použit pro zavaděč\n"
-"yaboot. Pokud vytvoříte tento oddíl větší, např. 50 MB, je to dobré místo "
+"Yaboot. Pokud vytvoříte tento oddíl větší, např. 50 MB, je to dobré místo "
"pro\n"
"uložení ramdisku a jádra pro situace záchrany disku."
@@ -3402,11 +3533,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3464,7 +3595,7 @@ msgstr ""
"ty, kteří nemají velmi dobré znalosti GNU/Linuxu.\n"
"Nevolte tuto volbu, pokud přesně nevíte, co děláte."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3492,7 +3623,7 @@ msgstr ""
"Pokud máte klávesnici pro jiný jazyk, klikněte na tlačítko \"Více\"\n"
"a zobrazí se kompletní seznam všech podporovaných rozložení klávesnic."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3521,7 +3652,7 @@ msgstr ""
"Pokud máte jazyk vybrán, klikněte na \"OK\" a instalace bude pokračovat\n"
"dalším krokem."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3536,9 +3667,9 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
-"DrakX zjistil, že máte dvou tlačítkovou myš a nastaví emulaci pro třetí "
+"DrakX zjistil, že máte dvoutlačítkovou myš a nastaví emulaci pro třetí "
"tlačítko.\n"
-"Taky umí rozpoznat, zda je myš PS/2, USB nebo sériová.\n"
+"Také umí rozpoznat, zda je myš PS/2, USB nebo sériová.\n"
"\n"
"Pokud chcete zadat jiný typ myši, vyberte odpovídající typ se seznamu.\n"
"\n"
@@ -3549,7 +3680,7 @@ msgstr ""
"Pokud myš nepracuje správně, stiskněte mezerník nebo ENTER na \"Zrušit\"\n"
"a vyberte jiný typ."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3557,23 +3688,23 @@ msgstr ""
"Vyberte prosím správný port. Například \"COM1\" pod MS Windows se\n"
"v Linuxu jmenuje \"ttyS0\"."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3618,7 +3749,7 @@ msgstr ""
"Heslo se zadává dvakrát pro ověření toho, zda nedošlo k překlepu při prvním\n"
"pokusu. Tak je možné heslo opravit a zadat dvakrát stejné.\n"
"\n"
-"V expertním režimu budete dotázáni na to, zda se má použít autentikační\n"
+"V expertním režimu budete dotázáni na to, zda se má použít autentizační\n"
"server, jako je NIS nebo LDAP.\n"
"\n"
"Pokud se ve vaší síti používá protokol LDAP (nebo NIS) pro ověřování\n"
@@ -3626,9 +3757,9 @@ msgstr ""
"zeptejte se administrátora sítě.\n"
"\n"
"Pokud není počítač připojen do žádné administrované sítě, zvolte\n"
-"\"Lokální soubory\" pro autentikaci."
+"\"Lokální soubory\" pro autentizaci."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3650,7 +3781,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3658,7 +3789,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3678,13 +3809,13 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
-"LILO a grub jsou zavaděče systému. Tato část je normálně plně automatická.\n"
+"LILO a Grub jsou zavaděče systému. Tato část je normálně plně automatická.\n"
"DrakX analyzuje boot sektor a zachová se podle toho, co nalezne:\n"
"\n"
-" * pokud nalezne boot sektor Windows, přepíše ho sektorem pro LILO/grub aby\n"
+" * pokud nalezne boot sektor Windows, přepíše ho sektorem pro LILO/Grub aby\n"
"bylo možné spouštět jak Windows tak i Linux;\n"
"\n"
-" * pokud nalezne boot sektor pro LILO nebo grub, tak jej přepíše.\n"
+" * pokud nalezne boot sektor pro LILO nebo Grub, tak jej přepíše.\n"
"\n"
"Pokud jsou nějaké pochybnosti, je zobrazen dialog s výběrem možností.\n"
"\n"
@@ -3723,7 +3854,7 @@ msgstr ""
"či danou nabídku odebrat. K dalšímu kroku se dostanete kliknutím na \"Hotovo"
"\"."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3735,7 +3866,7 @@ msgid ""
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"LILO (the LInux LOader) a grub jsou zavaděče systému, které mohou spustit\n"
+"LILO (the LInux LOader) a Grub jsou zavaděče systému, které mohou spustit\n"
"buď GNU/Linux nebo jiný operační systém nainstalovaný na počítači.\n"
"Ve většině případů jsou tyto systému správně detekovány. Pokud se tak\n"
"nestane, máte možnost je ručně přidat v této obrazovce. Věnujte opatrnost\n"
@@ -3745,7 +3876,7 @@ msgstr ""
"je z nabídky odstranit. Ale v tom případě musíte mít spouštěcí disketu, ze\n"
"které je možné tento operační systém spustit!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3759,29 +3890,28 @@ msgstr ""
"\n"
"Pokud přesně nevíte co zadat, ponechte \"První sektor na disku (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3805,7 +3935,7 @@ msgstr ""
"\"lpd\"\n"
"systému, takže je s nimi kompatibilní. Je možné nastavit spoustu voleb,\n"
"ale základní nastavení je velmi jednoduché. Pokud potřebujete emulovat\n"
-"\"lpd\" server, stači spustit démona \"cups-lpd\". Má také grafické "
+"\"lpd\" server, stačí spustit démona \"cups-lpd\". Má také grafické "
"prostředí\n"
"pro tisk a nastavení tiskárny.\n"
"\n"
@@ -3817,7 +3947,7 @@ msgstr ""
"zvláštní tiskové fronty, vyberte si lprNG.\n"
"Jinak je preferován CUPS, protože je jednodušší a lépe pracuje v sítích."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3842,7 +3972,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX se nejdříve pokusí najít všechny pevné disky v počítači. Také se "
@@ -3850,7 +3980,7 @@ msgstr ""
"najít PCI SCSI adaptér(y). Pokud nějaký(é) najde, automaticky nainstaluje\n"
"správný ovladač.\n"
"\n"
-"Pokud žádný nanajde, budete dotázáni, zda vůbec máte nějaký SCSI adaptér.\n"
+"Pokud žádný nenajde, budete dotázáni, zda vůbec máte nějaký SCSI adaptér.\n"
"Odpovězte \"Ano\" a vyberte si se seznamu adaptérů nebo odpovězte \"Ne\","
"jestliže žádný adaptér nemáte.\n"
"Pokud přesně nevíte jaký máte, můžete to zjistit kliknutím na tlačítko\n"
@@ -3869,7 +3999,7 @@ msgstr ""
"(pokud je máte na počítači), z dokumentace k hardware, nebo z internetové\n"
"stránky výrobce (pokud máte přístup k internetu."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3879,9 +4009,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3893,7 +4022,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3918,7 +4047,7 @@ msgid ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
msgstr ""
-"Pro yaboot, pro další operační systémy, pro alternativní jádra nebo pro\n"
+"Pro Yaboot, pro další operační systémy, pro alternativní jádra nebo pro\n"
"záchranný disk lze zde zadat další parametry.\n"
"\n"
"Pro jiné OS je možné zadat pouze název a hlavní oddíl.\n"
@@ -3926,13 +4055,13 @@ msgstr ""
"Pro Linux je několik dalších možností:\n"
"\n"
" * Jmenovka: je to jednoduché jméno, které můžete napsat do příkazového\n"
-"řádku pro yaboot pro zvolení daného systému.\n"
+"řádku pro Yaboot pro zvolení daného systému.\n"
"\n"
-" * Obraz: je to jmého jádra, ze kterého se spustí systém. Typicky je to "
+" * Obraz: je to jméno jádra, ze kterého se spustí systém. Typicky je to "
"vmlinux\n"
"či obdoba slova vmlinux s příponami.\n"
"\n"
-" * Root: kořenové zeřízení \"/\" při instalaci Linuxu.\n"
+" * Root: kořenové zařízení \"/\" při instalaci Linuxu.\n"
"\n"
" * Přidat volby: na počítačích Apple potřebuje jádro další parametry, aby "
"se\n"
@@ -3953,7 +4082,7 @@ msgstr ""
"potřebujete\n"
"větší velikost, zadejte sem potřebnou hodnotu.\n"
"\n"
-" * Read-write: bežně je \"root\" oddíl připojen nejdříve v režimu pouze pro\n"
+" * Read-write: běžně je \"root\" oddíl připojen nejdříve v režimu pouze pro\n"
"čtení, aby se provedlo otestování systému před tím, než se použije pro běh.\n"
"Zde je možné toto chování změnit.\n"
"\n"
@@ -3965,7 +4094,7 @@ msgstr ""
"pouze stisknout ENTER a spustí se. Tato položka je označena \"*\" a všechny\n"
"výběry se zobrazí po stisknutí tlačítka [Tab]."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3992,14 +4121,13 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-"Yaboot je zavaděč pro počítače MacIntosh. Umožňuje spouštět jak GNU/Linux, "
+"Yaboot je zavaděč pro počítače Macintosh. Umožňuje spouštět jak GNU/Linux, "
"MacOS tak i MacOSX, pokud jsou na počítači nainstalovány. Ve většině\n"
"případů jsou tyto operační systémy správně detekovány. Pokud nejsou, můžete\n"
"zde na této obrazovce přidat záznamy ručně. Dejte si ale pozor na správnou\n"
@@ -4014,7 +4142,7 @@ msgstr ""
"spuštění\n"
"GNU/Linuxu. Obyčejně je to bootstrap oddíl, který byl vytvořen již předtím.\n"
"\n"
-" * Prodleva pro Firmware: narozdíl od zavaděče LILO jsou zde dvě prodlevy.\n"
+" * Prodleva pro Firmware: na rozdíl od zavaděče LILO jsou zde dvě prodlevy.\n"
"První prodleva v sekundách umožňuje zvolit mezi spuštěním CD, OF boot,\n"
"MacOS nebo Linuxu.\n"
"\n"
@@ -4030,10 +4158,10 @@ msgstr ""
"\n"
" * Výchozí OS: vyberte výchozí OS, který se spustí po uplynutí prodlevy."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4041,12 +4169,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4085,16 +4212,16 @@ msgstr ""
" * \"ISDN karta\": pokud byla detekována ISDN karta, je zde zobrazena.\n"
"Kliknutím na tlačítko můžete měnit parametry pro tuto kartu."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
"Vyberte disk, který chcete smazat pro instalaci Mandrake Linux.\n"
-"Pamatujte na to, že všechna data budou ztracena a nelze jejiž obnovit!"
+"Pamatujte na to, že všechna data budou ztracena a nelze je již obnovit!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4112,7 +4239,7 @@ msgstr ""
"Kliknutím na \"Zrušit\" zrušíte tuto operaci bez ztráty dat a oddílů na "
"disku."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4124,12 +4251,12 @@ msgstr ""
"%s), což obecně znamená, že spouštěcí disketa nemá jádro stejné jako má "
"instalační médium (vytvořte prosím novou spouštěcí disketu)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Musíte také naformátovat %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4154,20 +4281,20 @@ msgstr ""
"\n"
"Chcete opravdu nainstalovat tyto servery?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Nelze použít všesměrové vysílání bez NIS domény"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Vložte naformátovanou disketu do %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Tato disketa není formátována"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4175,7 +4302,7 @@ msgstr ""
"Pokud chcete použít uložený výběr balíčků, spusťte instalaci takto: 'linux "
"defcfg=floppy'"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Chyba při čtení souboru %s"
@@ -4207,7 +4334,7 @@ msgstr "Musíte mít odkládací oddíl"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4215,59 +4342,59 @@ msgstr ""
"\n"
"Chcete přesto pokračovat?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Musíte mít FAT oddíl připojený na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Použít volné místo"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Není dostatek místa pro vytvoření nového diskového oddílu"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Použít existující oddíl"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Není zde žádný existující oddíl k použití"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Použít Windows oddíl jako loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Který diskový oddíl chcete použít pro Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Zvolte velikosti"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Velikost kořenového oddílu v MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Velikost odkládacího oddílu v MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Použít volné místo na Windows oddílu"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Na kterém oddílu chcete měnit velikost?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Počítám hranice souborového systému s Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4276,13 +4403,16 @@ msgstr ""
"Změnu velikost FAT není možné provést, \n"
"vyskytla se následující chyba: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Váš diskový oddíl s Windows je příliš fragmentován, použijte nejdříve\n"
"program 'defrag'"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4303,67 +4433,67 @@ msgstr ""
"Také byste si měli data zálohovat. Až si budete jistí, že chcete pokračovat\n"
"stiskněte Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Jakou velikost oddílu chcete nechat pro Windows na"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "diskovém oddílu %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Změna FAT oddílu neuspěla: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nejsou zde žádné FAT oddíly, které by bylo možné změnit (nebo není dostatek "
"místa)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Smazat celý disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Odstranit Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Máte více než jeden pevný disk, na který chcete instalovat Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "VŠECHNY diskové oddíly a data na disku %s budou zrušena"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Vlastní rozdělení disku"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Použít fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-"Nyní můžete rozdělit váš hardisk %s.\n"
+"Nyní můžete rozdělit váš pevný disk %s.\n"
"Až skončíte, nezapomeňte uložit změny pomocí 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemáte dostatek volného místa na oddílu s Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Nemůžu najít žádné volné místo pro instalaci"
@@ -4371,16 +4501,16 @@ msgstr "Nemůžu najít žádné volné místo pro instalaci"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Průvodce DrakX našel následující řešení:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Vytváření diskových oddílů selhalo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Startuji síť"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Zastavuji síť"
@@ -4392,12 +4522,12 @@ msgstr ""
"Stala se chyba, ale nevím, jak jí správně interpretovat.\n"
"Pokračujte na vlastní riziko."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Zdvojený přípojný bod %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4408,12 +4538,12 @@ msgstr ""
"Je možné, že je poškozen CD disk nebo CD-ROM mechanika.\n"
"Zkontrolujete to použitím příkazu \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Vítá vás %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Není dostupná žádná disketová mechanika"
@@ -4423,9 +4553,9 @@ msgstr "Není dostupná žádná disketová mechanika"
msgid "Entering step `%s'\n"
msgstr "Začínám '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4435,197 +4565,153 @@ msgstr ""
"verzi instalačního programu. Ta se spouští tak, že při startu\n"
"z CD mechaniky stisknete 'F1' a poté napíšete 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Typ instalace"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Prosím zvolte jednu z následujících instalačních tříd:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Celková velikost zvolených balíčků je přibližně %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Pokud si přejete instalaci na menší prostor než je tento,\n"
-"zvolte si kolik procent balíčků se má nainstalovat.\n"
-"\n"
-"Malý počet procent nainstaluje pouze ty nejdůležitější balíčky, 100%%\n"
-"nainstaluje všechny zvolené."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na vašem hardisku je místo pouze pro %d%% těchto balíčků.\n"
-"\n"
-"Pokud jich chcete nainstalovat ještě méně, zvolte jiný počet\n"
-"procent. Malý počet procent nainstaluje pouze ty nejdůležitější\n"
-"balíčky, %d%% nainstaluje maximální možné množství balíčků."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Přesněji si budete moci vybrat v příštím kroku"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procent balíčků k instalaci"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Výběr skupiny balíčků"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Výběr jednotlivých balíčků"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Celková velikost: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Špatný balíček"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Jméno: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Verze: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Velikost: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Důležitost: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Nemůžete označit tento balíček, protože pro jeho instalaci není dost místa"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Tyto balíčky budou instalovány"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Tyto balíčky budou odebrány"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Nemůžete vybrat/nevybrat tento balíček"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Toto je nepostradatelný balíček, nemůže být odstraněn"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Nemůžete od-označit tento balíček, protože je už nainstalovaný"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Tento balíček musí být obnoven\n"
"Jste si jisti, že ho nechcete zvolit?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Tento balíček musí být obnoven, nemůžete ho nezvolit"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Ukázat automaticky vybrané balíčky"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalovat"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Uložit/Nahrát na/z disketu/y"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Aktualizuji výběr balíčků"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimální instalace"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Vyberte si balíčky, které chcete nainstalovat"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaluji"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Odhaduji"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Zbývající čas "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Čekejte prosím, připravuji instalaci"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d balíčků(y)"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaluji balíček %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Potvrdit"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odmítnout"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4640,17 +4726,17 @@ msgstr ""
"\n"
"Pokud toto CD nemáte, stiskněte Zrušit a toto CD nebude nainstalováno."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Přesto pokračovat?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Stala se chyba při řazení balíčků:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Stala se chyba při instalaci balíčků:"
@@ -4719,11 +4805,11 @@ msgstr "Stala se chyba"
msgid "Do you really want to leave the installation?"
msgstr "Chcete opravdu ukončit instalaci?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Souhlas s licencí"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4738,7 +4824,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4854,7 +4940,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4959,109 +5045,113 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Jste si jistý, že odmítáte licenční ujednání?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klávesnice"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Vyberte si rozložení vaší klávesnice."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Zde je kompletní seznam dostupných klávesnic"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Který typ instalace chcete?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalace/Aktualizace"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Je to instalace nebo aktualizace?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Doporučená"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expertní"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Aktualizovat"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Aktualizovat pouze balíčky"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Vyberte si typ vaší myši."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Připojení myši"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ke kterému sériovému portu je připojena vaše myš?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulace tlačítek"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulace 2 tlačítka"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulace 3 tlačítka"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Nastavuji PCMCIA karty..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Nastavuji IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nejsou dostupné žádné diskové oddíly"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Hledám oddíly, které lze připojit"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Zvolte si přípojné(mount) body"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5073,7 +5163,7 @@ msgstr ""
"\n"
"Souhlasíte s tím, že příjdete o všechny oddíly?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5081,7 +5171,7 @@ msgstr ""
"DiskDrake neuspěl při čtení tabulky oddílů.\n"
"Pokračujte pouze na vlastní riziko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5089,74 +5179,75 @@ msgstr ""
"Pro bootstrap není potřebné místo o velikosti 1MB! Instalace může pokračovat "
"ale pro spuštění systému musíte vytvořit bootstrap oddíl pomocí DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Nebyl nalezen kořenový oddíl pro provedení aktualizace"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Kořenový oddíl"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Který diskový oddíl je kořenový (/) ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Musíte restartovat počítač aby se projevily změny v tabulce oddílů"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Zvolte diskové oddíly které chcete naformátovat"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Otestovat na vadné stopy?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formátuji oddíly"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Vytvářím a formátuji soubor %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Není dostatek odkládacího prostoru k instalaci, prosím přidejte nějaký"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Hledám dostupné balíčky a znovu sestavuji databázi balíčků..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Hledám dostupné balíčky"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Vyhledávám balíčky pro aktualizaci"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Prohledávám již instalované balíčky..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Na vašem systému není dostatek místa pro instalaci nebo aktualizaci (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompletní (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimální (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Doporučená (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5164,35 +5255,35 @@ msgstr ""
"Vyberte si, zda chcete uložit nebo nahrát výběr balíčků na disketu.\n"
"Formát výběru je stejný jako formát automaticky generované diskety."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Nahrát z diskety"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Nahrávám z diskety"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Výběr balíčků"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Vložte disketu obsahující výběr balíčků"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Uložit na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Velikost vybraných balíčků je větší než místo na disku"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Typ instalace"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5200,19 +5291,19 @@ msgstr ""
"Nevybrali jste žádnou skupinu balíčků\n"
"Vyberte si prosím alespoň minimální instalaci"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "X prostředí"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Základní dokumentace (doporučeno!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Opravdu minimální instalace (speciálně bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5222,16 +5313,16 @@ msgstr ""
"Pokud nemáte žádné z nich, klepněte na Zrušit.\n"
"Pokud Vám chybí pouze některé z nich, odznačte je, a zvolte Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM označené \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Připravuji instalaci"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5240,23 +5331,23 @@ msgstr ""
"Instaluji balíček %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Nastavení po instalaci"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Vložte prosím spouštěcí disketu do %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Vložte prosím disketu s moduly do %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5306,7 +5397,7 @@ msgstr ""
"nebude respektovat ustanovení vztahujících se zákonů, může se vystavit\n"
"postihu.\n"
"\n"
-"V každém případě se Mandrakesoft i jeho výrobny a dodavatelé vzdávají\n"
+"V každém případě se MandrakeSoft i jeho výrobny a dodavatelé vzdávají\n"
"jakékoliv zodpovědnosti za přímé i nepřímé škody (včetně ztráty zisků,\n"
"přerušení podnikání, ztráty obchodních informací, jakožto i jiných "
"peněžních\n"
@@ -5317,170 +5408,201 @@ msgstr ""
"\n"
"\n"
"Pokud máje jakékoliv dotazy vztahující se k této dohodě, kontaktujte prosím\n"
-"Mandrakesoft, Inc.\n"
+"MandrakeSoft, Inc.\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Nyní máte možnost stáhnout aktualizované balíčky, které byly\n"
-"uvolněny po vydání distribuce.\n"
+"Nyní máte možnost stáhnout aktualizované balíčky. Tyto balíčky byly\n"
+"uvolněny až po vydání distribuce. Mohou obsahovat\n"
+"bezpečnostní aktualizace nebo opravy chyb.\n"
"\n"
-"Můžete tak získat bezpečnostní opravy či opravy chyb, ale\n"
-"potřebujete připojení k Internetu.\n"
+"Chcete-li získat tyto balíčky, musíte mít k dispozici\n"
+"funkční připojení k Internetu.\n"
"\n"
"Chcete nainstalovat aktualizace?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktuji web Mandrake Linux pro získání seznamu dostupných zrcadel"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
-msgstr "Zvolte si zrcadlo(mirror) pro stahování balíčků"
+msgstr "Zvolte si zrcadlo (mirror) pro stahování balíčků"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Stahuji ze zrcadla(mirror) seznam dostupných balíčků"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Jaké je vaše časové pásmo?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardwarové hodiny nastaveny na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatická synchronizace času (pomocí NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Vzdálený CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Bez tiskárny"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Máte nějakou zvukovou kartu na ISA sběrnici?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Pro nastavení zvukové karty spusťte po instalaci \"sndconfig\"."
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nebyla nalezena zvuková karta. Zkuste spustit po instalaci \"harddrake\"."
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Souhrn"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Myš"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Časová zóna"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Tiskárna"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN karta"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvuková karta"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV karta"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokální soubory"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Hlavní(root) heslo"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez hesla"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Toto heslo je příliš jednoduché (musí být alespoň %d znaků dlouhé)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ověření"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Ověření pomocí LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Základní dn pro LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Ověření pomocí NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Doména"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Ověření pomocí Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Doména Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Jméno serveru PDC"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+"Aby toto fungovalo v případě serveru PDC Windows 2000, bude muset "
+"administrátor pravděpodobně spustit příkaz: C:\\>net localgroup \"Pre-"
+"Windows 2000 Compatible Access\" everyone / add a restartovat server."
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5509,19 +5631,19 @@ msgstr ""
"Pokud chcete vytvořit startovací disketu, vložte disketu do mechaniky\n"
"a stiskněte \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "první mechaniky"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "druhé mechaniky"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Přeskočit"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5545,7 +5667,7 @@ msgstr ""
"účinnou pomoc při havárii systému. Chcete vytvořit startovací disketu?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5559,28 +5681,28 @@ msgstr ""
"spouštěcí diskety bude zřejmě neúspěšné, protože XFS\n"
"potřebuje velmi velký ovladač)"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bohužel není dostupná žádná disketová mechanika"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Zvolte mechaniku, kde chcete vytvořit startovací disketu"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Vložte disketu do %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Vytvářím startovací disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Připravuji zaváděcí program"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5588,15 +5710,15 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
"Zdá se, že máte nějaký neznámý počítač,\n"
-"na kterém nebude yaboot pracovat.\n"
+"na kterém nebude Yaboot pracovat.\n"
"Instalace bude pokračovat, ale budete\n"
"potřebovat BootX pro spuštění systému."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Chcete použít aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5604,15 +5726,15 @@ msgstr ""
"Stala se chyba při instalaci aboot,\n"
"mám se pokusit o instalaci i když to zruší první oddíl na disku?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaluji zaváděcí program"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalace zaváděcího programu neuspěla. Stala se tato chyba:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5624,23 +5746,22 @@ msgid ""
msgstr ""
"Můžete potřebovat změnit startovací zařízení pro Open Firmware\n"
" pro aktivaci spouštěcího programu. Pokud nevidíte po spuštění prompt,\n"
-" stiskněte při startu Command-Option-O-F a zadajte:\n"
+" stiskněte při startu Command-Option-O-F a zadejte:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Potom zadejte: shut-down\n"
"Při dalším spuštění už uvidíte prompt."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Vložte prázdnou disketu do %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Vytvářím disketu pro automatickou instalaci"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5650,7 +5771,8 @@ msgstr ""
"\n"
"Chcete opravdu nyní skončit?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5661,31 +5783,36 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
"Gratulujeme vám, instalace je dokončena.\n"
-"Vyjměte startovací média a stiskněte return pro restart.\n"
+"Vyjměte startovací média a stiskněte Return pro restart.\n"
"\n"
"\n"
"Na opravy této instalace systému Mandrake Linux se lze informovat\n"
"na stránce Errata:\n"
"\n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informace o konfiguraci systému po instalaci jsou dostupné\n"
"v dané kapitole oficiální uživatelské příručky pro Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Vytvořit disketu pro automatickou instalaci"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5699,15 +5826,15 @@ msgstr ""
"\n"
"Takto lze jednoduše zopakovat instalaci.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automaticky"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Zopakovat"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Uložit výběr jednotlivých balíčků"
@@ -5734,44 +5861,24 @@ msgstr "chybí consolehelper"
msgid "Choose a file"
msgstr "Vyberte soubor"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Rozšíření"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Základní"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Prosím počkejte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informace"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Rozbal větev"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sbal větev"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Přepnutí mezi abecedním a skupinovým řazením"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Špatná volba, zkuste to znovu\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vaše volba? (výchozí %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5780,31 +5887,35 @@ msgstr ""
"Položky, které je potřeba vyplnit:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vaše volba? (0/1, výchozí '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Tlačítko '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Chcete kliknout na toto tlačítko? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr " zadejte `void` pokud chcete prázdný vstup"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vaše volba? (výchozí '%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Je zde více voleb, ze kterých je možné si vybrat (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5814,7 +5925,7 @@ msgstr ""
"nebo stiskněte Enter pro pokračování.\n"
"Vaše volba? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5823,327 +5934,327 @@ msgstr ""
"=> Oznamuji změnu návěští:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Znovu odeslat"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "České (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Německé"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvořák"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Španělské"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finské"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francouzské"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norské"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polské"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruské"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Švédské"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK-Britské"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US-Americké"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albánské"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Arménské (staré)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Arménské (psací stroj)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Arménské (foneticky)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Ázerbajdžánské (latinka)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgické"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulharské (foneticky)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulharské (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilské (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Běloruské"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Švýcarské (Německý styl)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Švýcarské (Francouzský styl)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "České (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Německé (bez mrtvých kláves)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dánské"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvořák (US) "
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvořák (Norské)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvořák (Švédské) "
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonské"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzínské (\"Ruské\" rozložení)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzínské (rozložení \"Latin\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Řecké"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Maďarské"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Chorvatské"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelské"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelské (foneticky)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Íránské"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandské"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italské"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japonská 106 kláves"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejská klávesnice"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinsko-Americké"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litevské AZERTY (stará)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litevské AZERTY (nová)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litevské \"číselná řada\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litevské \"foneticky\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
-msgstr "Latevské"
+msgstr "Litevské"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonské"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandské"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polské (rozložení QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polské (rozložení QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalské"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadské (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunské (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunské (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruské (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovinské"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovenské (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovenské (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srbské (cyrilice)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamilské"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thajské"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
-msgstr "Tadžiská klávesnice"
+msgstr "Tádžická klávesnice"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turecké (tradiční model \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turecké (moderní model \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinské"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US (mezinárodní)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamská \"číselná řada\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslávské (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Pravá klávesa Alt"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Obě klávesy Shift současně"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control a Shift současně"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Klávesa CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl a Alt současně"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt a Shift současně"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Klávesa \"Menu\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Levá klávesa \"Windows\""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Pravá klávesa \"Windows\""
@@ -6156,7 +6267,29 @@ msgstr "Propletené přípojné body %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Odeberte nejdříve logické disky\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "číslo"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d čísel oddělených čárkou"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d znakových řetězců oddělených čárkou"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "čárkou oddělená čísla"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "čárkou oddělené znakové řetězce"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6198,10 +6331,6 @@ msgstr "1 tlačítko"
msgid "Generic 2 Button Mouse"
msgstr "Standardní dvoutlačítková myš"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Obecná"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "S kolečkem"
@@ -6266,38 +6395,54 @@ msgstr "Žádná"
msgid "No mouse"
msgstr "Bez myši"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Vyzkoušejte prosím, zda funguje myš"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Vyzkoušejte na myši,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "TOČIT KOLEČKEM!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Ukončit"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Další ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Předchozí"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Je to správně?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informace"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Rozbal větev"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sbal větev"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Přepnutí mezi abecedním a skupinovým řazením"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Připojení k Internetu"
@@ -6308,13 +6453,13 @@ msgid ""
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-"Nejběžněji se pro připojení pomocí adsl používá pppoe.\n"
+"Nejběžněji se pro připojení pomocí ADSL používá pppoe.\n"
"Některá připojení používají pptp, některá pouze dhcp. Jestli si nejste "
"jistí, zvolte 'použít pppoe'"
#: ../../network/adsl.pm_.c:22
msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch USB"
#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
@@ -6344,7 +6489,7 @@ msgstr ""
"Ve vašem počítači nebyl nalezen žádný síťový adaptér.\n"
"Nemohu nastavit typ spojení."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Zvolte síťové rozhraní"
@@ -6359,7 +6504,7 @@ msgstr ""
msgid "no network card found"
msgstr "nebyla nalezena síťová karta"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Nastavuji síť"
@@ -6374,15 +6519,15 @@ msgstr ""
"DHCP servery. Toto jméno musí být úplné, jako například\n"
"'mybox.mylab.myco.com'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Jméno počítače"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Průvodce nastavením sítě"
@@ -6437,7 +6582,7 @@ msgstr "Nastavení ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Vyberte si svého poskytovatele internetu.\n"
" Pokud není na seznamu, vyberte si Jiný"
@@ -6456,14 +6601,14 @@ msgstr "Protokol použitý ve zbytku světa"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol použitý ve zbytku světa \n"
" žádný D-kanál (leased lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Který protokol chcete použít?"
#: ../../network/isdn.pm_.c:199
@@ -6487,7 +6632,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Jestli máte ISA kartu, měly by být hodnoty na následující obrazovce "
@@ -6504,13 +6650,13 @@ msgid "Continue"
msgstr "Pokračovat"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kterou z těchto ISDN karet máte?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Našel jsem ISDN PCI kartu, jejíž typ ale neznám. Prosím zvolte si jednu z "
"následujícího seznamu PCI karet."
@@ -6529,47 +6675,47 @@ msgstr "Ke kterému sériovému portu je váš modem připojen?"
msgid "Dialup options"
msgstr "Možnosti vytáčení"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Jméno připojení"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonní číslo"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Přihlašovací jméno"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Podle scénáře"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Pomocí terminálu"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Jméno domény"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "První DNS Server (nepovinný)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Druhý DNS Server (nepovinný)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6577,7 +6723,7 @@ msgstr ""
"\n"
"Můžete se odpojit nebo překonfigurovat připojení."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6585,11 +6731,11 @@ msgstr ""
"\n"
"Můžete překonfigurovat připojení."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "V současnosti jste připojeni k Internetu"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6597,32 +6743,32 @@ msgstr ""
"\n"
"Nemůžete se připojit k Internetu nebo překonfigurovat připojení."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "V současnosti nejste připojeni k Internetu."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Připojit"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Odpojit"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Nastavit připojení"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Nastavení a připojení k internetu"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Nyní se připravuje konfigurace %s připojení."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6641,12 +6787,12 @@ msgstr ""
"\n"
"Stiskněte OK pro pokračování."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Nastavení sítě"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6657,9 +6803,9 @@ msgstr ""
"Klikněte na Ok pro zachování nastavení nebo klikněte na Zrušit pro nové "
"nastavení připojení Internetu a k síti.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6669,66 +6815,72 @@ msgstr ""
"Nyní lze nastavit připojení k síti nebo internetu.\n"
"Pokud nechcete použít automatickou detekci, odznačte políčko.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Zvolte profil pro nastavení"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Použít autodetekci"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Expertní režim"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detekuji zařízení..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Modemové připojení"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detekováno na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN připojení"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detekováno %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL připojení"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detekováno na rozhraní %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelové připojení"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detekováno kabelové připojení"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Připojení k LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "detekovaná(é) síťová(é) karta(y)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Zvolte si připojení, které chcete nastavit"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6738,23 +6890,23 @@ msgstr ""
"Vyberte si jeden, který chcete použít.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetové připojení"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Chcete se automaticky připojovat po startu počítače?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Nastavení sítě"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Je potřebné znovu spustit síť"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6765,7 +6917,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6775,7 +6927,7 @@ msgstr ""
"\n"
"Konfigurace bude nyní aktivována.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6783,19 +6935,19 @@ msgstr ""
"Doporučujeme po tomto kroku restartovat X Window,\n"
"aby se předešlo problémům se změnou jména počítače."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Vyskytl se problém během konfigurace.\n"
"Otestujte připojení k Internetu pomocí net_monitor nebo mcc. Pokud není "
"spojení funkční, bude potřeba asi znovu načíst konfiguraci"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6804,7 +6956,7 @@ msgstr ""
"Klikněte na Ok pro zachování nastavení.\n"
"Modifikace následujících položek přepíše toto nastavení."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6814,38 +6966,42 @@ msgstr ""
"Každá položka musí být zadána jako IP adresa v 'desetinné' formě\n"
"(například 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Nastavuji síťové zařízení %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (ovladač %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Maska sítě"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatická IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Spustit při startu"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa musí být ve formátu 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6856,64 +7012,64 @@ msgstr ""
"Toto jméno musí být úplné, jako 'mybox.mylab.myco.com'.\n"
"Pokud používáte bránu(gateway), můžete také zadat její adresu"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Brána (např. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Zařízení brány(gateway)"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Nastavení proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Sledovat id síťové karty (užitečné u notebooků)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy by měla být http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy by měla být ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Nastavení Internetu"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Chcete se nyní pokusit připojit k internetu?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testuji připojení k internetu..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Počítač je nyní připojen k internetu"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Z bezpečnostních důvodů bude spojení ukončeno."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6921,111 +7077,116 @@ msgstr ""
"Nepodařilo se připojit k Internetu.\n"
"Pokuste se překonfigurovat dané připojení."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Nastavení připojení"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Prosím vyplňte nebo zkontrolujte následující údaje"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ karty"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "DMA karty"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO karty"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 karty"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 karty"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vaše osobní telefonní číslo"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
-msgstr "Jméno poskytovatele (např provider.net)"
+msgstr "Jméno poskytovatele (např. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefonní číslo poskytovatele"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS poskytovatele č.1 (volitelné)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS poskytovatele č.2 (volitelné)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Výběr si zemi"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Typ vytáčení"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Rychlost připojení"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Prodleva připojení (vteřiny)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Váš účet (uživatelské jméno)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Heslo vašeho účtu"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Velká Británie"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "chyba připojování: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Rozšířené diskové oddíly nejsou na tomto systému podporovány"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Ve tabulce diskových oddílů je mezera, ale nemohu ji použít.\n"
"Jediné řešení je přesunout primární oddíly tak, abyste měli mezeru vedle\n"
"rozšířených oddílů."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Obnova ze souboru %s neuspěla: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Špatný záložní soubor"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Chyba při zapisování do souboru %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7035,186 +7196,186 @@ msgstr ""
"Test na integritu dat selhal. \n"
"To znamená, že zápis na tento disk může skončit nepředvídaně"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "musíte mít"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "důležité"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "nejméně důležité"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "nedůležité"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "může se hodit"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Tiskový Systém pro Unix"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Nové generace"
+msgstr "LprNG - LPR Nové generace"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Démon pro tiskárny"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Tisk bez ukládání do fronty"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
-msgstr "LPRng"
+msgstr "LprNG"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Místní tiskárna"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Vzdálená tiskárna"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Tiskárna na vzdáleném CUPS serveru"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Tiskárna na vzdálený lpd serveru"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Síťová tiskárna (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Tiskárna na serveru Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Tiskárna na Netware serveru"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Zadejte URI tiskového zařízení"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Poslat tiskovou úlohu do příkazu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Neznámý model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Místní tiskárny"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Vzdálené tiskárny"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelním portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB tiskárna \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multifunkční na paralelním portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", multifunkční zařízení na USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", multifunkční zařízení na HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", multifunkční zařízení"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", při tisku na %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", tiskárna \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP hostitel \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "na serveru Windows \"%s\", sdílená jako \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "na severu Novell \"%s\", tiskárna \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", používá příkaz %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Přímý tisk (bez ovladače)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na tomto počítači)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na serveru CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Výchozí)"
@@ -7236,11 +7397,11 @@ msgstr ""
"V případě vzdáleného CUPS serveru nemusíte nastavovat tiskárny zde,\n"
"tiskárny budou automaticky detekovány."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Nastavení CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Zadejte CUPS server"
@@ -7257,7 +7418,7 @@ msgstr ""
"Při tisku na vzdálený CUPS server v lokální síti není potřeba nic "
"nastavovat, CUPS server bude automaticky informovat o jeho tiskárnách. "
"Všechny známé tiskárny pro tento počítač jsou nyní vypsány v poli \"Vzdálené "
-"tiskárny\". v hlavní sekci nástroje Printerdrake. Pokud je CUPS na jiné "
+"tiskárny\". v hlavní sekci nástroje PrinterDrake. Pokud je CUPS na jiné "
"síti, musíte pro získání informací zadat IP adresu CUPS serveru a také "
"případně číslo portu, jinak nechte toto pole prázdné."
@@ -7281,7 +7442,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa musí být ve formátu 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Číslo portu musí být celé číslo!"
@@ -7289,7 +7450,7 @@ msgstr "Číslo portu musí být celé číslo!"
msgid "CUPS server IP"
msgstr "IP adresa CUPS serveru"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7297,20 +7458,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatické nastavení pro CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Detekuji zařízení ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Otestovat porty"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Přidat novou tiskárnu"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7331,13 +7484,13 @@ msgstr ""
"Budete dotázáni na všechny potřebné informace pro nastavení tiskárny, můžete "
"si vybrat se všech tiskových ovladačů a typů připojení tiskárny."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Místní tiskárna"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7367,13 +7520,13 @@ msgstr ""
"Může se stát, že některé počítače mohou zatuhnout při automatické detekci a "
"tehdy lze použít \"Expertní režim\" pro instalaci bez automatické detekce. "
"\"Expertní režim\" použijte také tehdy, pokud chcete nastavit vzdálenou "
-"tiskárnu(y) a printerdrake ji/je automaticky nenabídnul."
+"tiskárnu(y) a PrinterDrake ji/je automaticky nenabídl."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Automatická detekce tiskáren"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7395,11 +7548,11 @@ msgstr ""
"hodnoty (typ zásobníku, kvalita tisku,...), zvolte \"Tiskárna\" v sekci "
"\"Hardware\" v řídícím centru Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatická detekce tiskáren"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7408,40 +7561,44 @@ msgid ""
"\n"
"Do you really want to get your printers auto-detected?"
msgstr ""
-"Printerdrake dokáže automaticky detekovat tiskárny připojené přes paralelní "
+"PrinterDrake dokáže automaticky detekovat tiskárny připojené přes paralelní "
"nebo USB rozhraní, ale na některých systémech může automatická detekce "
"ZMRAZIT SYSTÉM A TAKÉ POŠKODIT SOUBORY! Provádíte to tedy na VLASTNÍ "
"NEBEZPEČÍ!\n"
"\n"
"Chcete opravdu použít automatickou detekci tiskárny?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Provést autodetekci"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Nastavit tiskárnu manuálně"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Otestovat porty"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detekováno %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Tiskárna na paralelním portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB tiskárna \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7453,11 +7610,11 @@ msgstr ""
"ekvivalentní LPT1:, LPT2:, ...,první USB tiskárna: /dev/usb/lp0, druhá USB "
"tiskárna: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Musíte zadat zařízení nebo jméno souboru!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7465,7 +7622,7 @@ msgstr ""
"Místní tiskárna nenalezena!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7473,7 +7630,7 @@ msgstr ""
"Síťové tiskárny mohou být nainstalovány až po instalaci systému. V řídícím "
"centru Mandrake vyberte \"Hardware\" a potom \"Tiskárna\"."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7481,7 +7638,7 @@ msgstr ""
"Pro instalaci síťových tiskáren klikněte nejdříve na \"Zrušit\", přejděte do "
"\"Expertního režimu\" a potom opět klikněte na \"Přidat novou tiskárnu\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7489,7 +7646,7 @@ msgstr ""
"Tyto tiskárny byly automaticky detekovány, pokud není mezi nimi požadovaná "
"tiskárna, zadejte do políčka jméno zařízení/jméno souboru"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7497,7 +7654,7 @@ msgstr ""
"Zde je seznam všech automaticky rozpoznaných tiskáren. Vyberte si tiskárnu, "
"kterou chcete nastavit nebo zadejte do políčka jméno zařízení/jméno souboru"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7508,7 +7665,7 @@ msgstr ""
"automatická. Pokud nebyla tiskárna správně detekována nebo preferujete "
"vlastní nastavení tisku, zvolte \"Ruční konfigurace\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7519,7 +7676,7 @@ msgstr ""
"plně automatická. Pokud nebyla tiskárna správně detekována nebo preferujete "
"vlastní nastavení tisku, zvolte \"Ruční konfigurace\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7527,11 +7684,11 @@ msgstr ""
"Vyberte si port, ke kterému je tiskárna připojena nebo zadejte do políčka "
"jméno zařízení/jméno souboru"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Vyberte port, ke kterému je vaše tiskárna připojena."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7539,52 +7696,66 @@ msgstr ""
" (Paralelní porty: /dev/lp0, /dev/lp1,... je ekvivalentní LPT1:, LPT2:, ...,"
"první USB tiskárna: /dev/usb/lp0, druhá USB tiskárna: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Musíte vybrat/zadat tiskárnu/zařízení!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Ruční nastavení"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-"Je vaše tiskárna multifunkční zařízení od HP (OfficeJet, PSC, PhotoSmart "
-"LaserJet 1100/1200/1220/3200/3300 se skenerem)?"
+"Je vaše tiskárna multifunkční zařízení od HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 se skenerem), HP PhotoSmart P100 nebo 1315 nebo HP "
+"LaserJet 2200?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instaluji balíček HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Testují zařízení a nastavuji HPOJ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instaluji balíček SANE..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaluji balíčky..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skenování na multifunkčním zařízení od HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skenování na multifunkčním zařízení od HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Zpřístupňuji tiskový port pro CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Načítám databázi tiskáren ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Možnosti vzdálené lpd tiskárny"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7592,27 +7763,27 @@ msgstr ""
"Abyste mohli používat vzdálenou tiskovou frontu lpd, musíte zadat jméno "
"tiskového serveru a jméno tiskárny, kam má být posílán tisk."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Jméno vzdáleného počítače"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Jméno vzdálené tiskárny"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Chybí jméno vzdáleného počítače!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Chybí jméno vzdálené tiskárny!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Možnosti SMB (Windows 9x/NT) tiskárny"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7624,35 +7795,35 @@ msgstr ""
"tiskového serveru, jméno sdílené tiskárny, vhodné uživatelské jméno, heslo a "
"informace o pracovní skupině."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Jméno SMB serveru"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP adresa SMB serveru"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Sdílené jméno"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Pracovní skupina"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Musí být zadáno buď jméno serveru nebo jeho IP adresa!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Chybí jméno pro sdílení přes Sambu!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "BEZPEČNOSTNÍ VAROVÁNÍ!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7675,14 +7846,14 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
-"Provádíte nastavení tisku s účtem na systému Windows. Kvůli chybě v klientu "
+"Provádíte nastavení tisku s účtem na systému Windows. Díky chybě v klientu "
"protokolu Samba je heslo při tisku posláno jako čistý text z příkazové "
-"řadky. Je tudíž možné, aby kdokoliv viděl toto heslo na obrazovce když si "
+"řádky. Je tudíž možné, aby kdokoliv viděl toto heslo na obrazovce když si "
"zadá příkaz např. \"ps auxwww\".\n"
"\n"
"Doporučujeme používat jednu z následujících alternativ (ve všech případech "
-"je dobré mít nastaven přístup pouze z počítačů z lokální sítě, respektivě za "
-"firewalem):\n"
+"je dobré mít nastaven přístup pouze z počítačů z lokální sítě, respektive za "
+"firewallem):\n"
"\n"
"Použít účet, který nemá nastaven žádné heslo, jako je \"GUEST\" nebo "
"speciální účet pouze pro účely tisku. Neodstraňujte ochranu heslem z běžného "
@@ -7690,10 +7861,10 @@ msgstr ""
"\n"
"Nastavte tiskárnu na Windows serveru tak, aby fungovala pod LPD protokolem. "
"Potom nastavte tisk na této tiskárně pomocí typy spojení \"%s\" v aplikaci "
-"Printerdrake.\n"
+"PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7703,10 +7874,10 @@ msgid ""
msgstr ""
"Nastavit na serveru s Windows tiskárnu, která bude přístupná pomocí IPP "
"protokolu a nastavit tisk z tohoto počítače pomocí spojení \"%s\" v aplikaci "
-"Printerdrake.\n"
+"PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7718,11 +7889,11 @@ msgstr ""
"\n"
"Chcete opravdu pokračovat v nastavení tiskárny tímto způsobem?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Možnosti NetWare tiskárny"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7733,65 +7904,65 @@ msgstr ""
"serveru (Pozor! To může být odlišné od jeho jména pro TCP/IP!), jméno "
"tiskové fronty tiskárny, kterou chcete používat, uživatelské jméno a heslo."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Tiskový server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Jméno tiskové fronty"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Chybí jméno pro sdílení přes NCP!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Chybí jméno tiskové fronty pro NCP!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
-msgstr "Možnosti tiskárny pro TCP/socket"
+msgstr "Možnosti tiskárny pro TCP/Socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
"number is usually 9100, on other servers it can vary. See the manual of your "
"hardware."
msgstr ""
-"Abyste mohli tisknout na TCP nebo socketové tiskárně, musíte zadat jméno "
+"Abyste mohli tisknout na TCP nebo soketové tiskárně, musíte zadat jméno "
"počítače s tiskárnou a volitelně i číslo portu. Pokud máte HP JetDirect, "
"port je obvykle 9100, jinak se může měnit. Podívejte do manuálu k vašemu "
"hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Jméno počítače s tiskárnou"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Chybí jméno počítače s tiskárnou!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI Tiskového Zařízení"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
"Zde lze přímo zadat URI pro přístup k tiskárně. URI musí splňovat buď "
-"specifikaci CUPS nebo Foomatic. Taky pamatujte na to, že všechny URI nejsou "
+"specifikaci CUPS nebo Foomatic. Také pamatujte na to, že všechny URI nejsou "
"podporovány ve všech tiskových správcích."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Musí být zadáno správné URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7799,27 +7970,23 @@ msgstr ""
"Každá tiskárna potřebuje jméno (např. \"tiskarna\"). Popis a umístění nemusí "
"být vyplněny. Jsou to komentáře pouze pro uživatele."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Jméno tiskárny"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Popis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Umístění"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Načítám databázi tiskáren ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model tiskárny"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7833,35 +8000,35 @@ msgid ""
"\n"
"%s"
msgstr ""
-"Printerdrake provedl porovnání modelu tiskárny, který byl zjištěn při auto-"
-"detekci s modelem obsaženým v jeho databázi a nabídnul nejlepší řešení. Tato "
+"PrinterDrake provedl porovnání modelu tiskárny, který byl zjištěn při auto-"
+"detekci s modelem obsaženým v jeho databázi a nabídl nejlepší řešení. Tato "
"volba může být špatná, zvlášť pokud není tiskárna obsažena v databázi. "
"Zkontrolujte, zda je volba správná a klepněte na \"Zvolený model je správný"
"\" a pokud není, volte \"Vybrat model ručně\". V další obrazovce potom bude "
"možné vybrat model tiskárny ručně.\n"
"\n"
-"Pro vaši tiskárnu Printerdrake nalezl:\n"
+"Pro vaši tiskárnu PrinterDrake nalezl:\n"
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Zvolený model je správný"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Vybrat model ručně"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Výběr modelu tiskárny"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Jaký model tiskárny máte?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7871,11 +8038,11 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Zkontrolujte prosím, zda Printerdrake provedl automatickou detekci modelu "
+"Zkontrolujte prosím, zda PrinterDrake provedl automatickou detekci modelu "
"správně. Pokud je vyznačen nesprávný model, můžete ho změnit výběrem ze "
"seznamu nebo zvolte \"Raw printer\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7883,11 +8050,11 @@ msgstr ""
"Pokud není tiskárna v seznamu, vyberte kompatibilní nebo podobný model "
"(podívejte se do manuálu)"
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Nastavení pro OKI win-tiskárnu"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7902,11 +8069,11 @@ msgstr ""
"port, nebo se tiskne přes server, připojte tiskárnu na první paralelní port. "
"Jinak tisk nebude pracovat. Typ připojení bude ovladač ignorovat."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Nastavení inkoustové tiskárny Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7918,7 +8085,7 @@ msgstr ""
"tiskárnu na lokální port nebo ji nastavte na tom počítači, ke kterému bude "
"připojena."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7938,7 +8105,7 @@ msgstr ""
"odsouhlasení licence. Pak můžete nastavit chování tiskové hlavy pomocí "
"tohoto programu."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7954,22 +8121,22 @@ msgstr ""
"podavač) jsou nastaveny správně. Při tisku ve velmi vysoké kvalitě/rozlišení "
"bude tisk zřejmě pomalejší."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Hodnota %s musí být celé číslo!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Hodnota %s musí být číslo!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Hodnota %s je mimo rozsah!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7978,11 +8145,11 @@ msgstr ""
"Chcete opravdu nastavit tiskárnu \"%s\"\n"
"jako výchozí?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testovací stránka"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7994,39 +8161,39 @@ msgstr ""
"se na tiskárně s málo pamětí nemusí podařit vůbec. Ve většině případů stačí "
"vytisknout běžnou testovací stránku."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Bez testovací stránky"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Tisk"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardní testovací stránka"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
-msgstr "Alternativní testovací stránka (letter)"
+msgstr "Alternativní testovací stránka (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativní testovací stránka (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Testovací stránka s fotografií"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Netisknout testovací stránku"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Tisknu testovací stránku(y)"
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8041,7 +8208,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8049,15 +8216,15 @@ msgstr ""
"Zkušební stránka byl poslána na tiskárnu.\n"
"Může chvilku trvat než začne tisk.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Proběhl tisk správně ?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Přímý tisk na tiskárnu"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8070,7 +8237,7 @@ msgstr ""
"<soubor>\". Grafické nástroje umožňují jednoduše vybrat tiskárny a měnit "
"jejich parametry.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8080,8 +8247,8 @@ msgstr ""
"většině aplikací, ale nezadává se zde jméno souboru, které je pokaždé jiné v "
"závislosti na dané aplikaci.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8094,18 +8261,18 @@ msgstr ""
"Jednoduše zadejte potřebné nastavení do příkazové řádky, např. \"%s<soubor>"
"\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Všechny možnosti pro současnou tiskárnu jsou zobrazeny níže, nebo klikněte "
"na tlačítko \"Možnosti tiskárny\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8113,7 +8280,7 @@ msgstr ""
"Zde je seznam dostupných voleb pro nastavení tisku pro aktuální tiskárnu:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8122,8 +8289,8 @@ msgstr ""
"Pro vytištění souboru z příkazové řádky (v terminálovém okně) použijte "
"příkaz \"%s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8133,7 +8300,7 @@ msgstr ""
"většině aplikací, ale nezadává se zde jméno souboru, které je pokaždé jiné v "
"závislosti na dané aplikaci.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8141,7 +8308,7 @@ msgstr ""
"Všechny možnosti tisku pro současnou tiskárnu jsou zobrazeny níže, nebo "
"klikněte na tlačítko \"Možnosti tiskárny\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8150,7 +8317,7 @@ msgstr ""
"Pro vytištění souboru z příkazové řádky (v terminálovém okně) použijte "
"příkaz \"%s<soubor>\" nebo \"%s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8165,7 +8332,7 @@ msgstr ""
"pojmenovanou \"STOP Printer!\", který po kliknutí ihned zastaví "
"všechnytiskové úlohy. To je vhodné třeba pro případy uváznutí papíru.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8178,38 +8345,49 @@ msgstr ""
"úlohu. Jednoduše zadejte potřebné nastavení do příkazové řádky, např. \"%"
"s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zavřít"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tisknu/skenuji na \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Tisknu/skenuji na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Tisknu/skenuji na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Tisknu na tiskárnu \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zavřít"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Možnosti tiskárny"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8222,38 +8400,30 @@ msgstr ""
"\n"
"Nepoužívejte pro toto zařízení \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Multifunkční zařízení od HP bylo nastaveno pro možnost skenování. Nyní lze "
-"skenovat příkazem \"ptal-hp %s scan ...\" z příkazového řádku. Skenování z "
-"grafického prostředí nebo z programu GIMP není zatím na tomto zařízení "
-"podporováno. Více informací naleznete v souboru \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\". Pokud máte HP LaserJet 1100 nebo 1200, lze skenovat "
-"pouze v případě, že máte nainstalovánu podporu pro skenování.\n"
-"\n"
-"Nepoužívejte pro toto zařízení \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Načítám data k tisku ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Přenést konfiguraci tiskárny"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8268,7 +8438,7 @@ msgstr ""
"ale tiskové úlohy nebudou přeneseny.\n"
"Ne všechny fronty lze přenést z následujích důvodů:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8276,7 +8446,7 @@ msgstr ""
"CUPS nepodporuje tiskárny na serverech Novell nebo tiskárny, které posílají "
"data na skupinu příkazů.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8284,11 +8454,11 @@ msgstr ""
"PDQ podporuje pouze místní tiskárny, vzdálené tiskárny LPD a tisk na "
"tiskárny přes sockety/TCP.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ani LPRng nepodporují IPP tiskárny.\n"
+msgstr "LPD ani LprNG nepodporují IPP tiskárny.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8296,7 +8466,7 @@ msgstr ""
"Tiskové fronty, které nebyly vytvořeny tímto programem nebo přes \"foomatic-"
"configure\" nelze přenést."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8306,7 +8476,7 @@ msgstr ""
"Také tiskárny používající PPD soubory od jejich výrobců nebo tiskárny s "
"nativními ovladači pro CUPS nelze přenést."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8315,15 +8485,15 @@ msgstr ""
"\n"
"Označte tiskárnu, kterou chcete přenést a stiskněte \"Přenést\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Nepřenášet tiskárny"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Přenést"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8332,13 +8502,13 @@ msgid ""
msgstr ""
"Tiskárna se jménem \"%s\" již na straně %s existuje.\n"
"Klikněte na \"Přenést\" pro přepsání.\n"
-"Taky můžete napsat nové jméno nebo ji přeskočit."
+"Také můžete napsat nové jméno nebo ji přeskočit."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Jméno fronty může obsahovat pouze písmena, číslice a podtržítko"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8347,16 +8517,16 @@ msgstr ""
"Tiskárna se jménem %s již existuje,\n"
"chcete opravdu přepsat její konfiguraci?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nové jméno tiskárny"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Přenáším %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8365,29 +8535,29 @@ msgstr ""
"Byla přenesena výchozí tiskárna (\"%s\"). Má se nastavit jako výchozí také "
"na vzdáleném tiskovém systému %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Občerstvuji tisková data ...."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Nastavení vzdálené tiskárny"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Spouštím síť ...."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Nastavit síť nyní"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Síť není nastavena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8398,11 +8568,11 @@ msgstr ""
"spojení, ale síť není zatím nastavena. Pokud budete pokračovat bez nastavení "
"sítě, nebude možné použít tiskárnu, kterou požadujete. Jak chcete pokračovat?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Pokračovat bez nastavení sítě"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8416,7 +8586,7 @@ msgstr ""
"Mandrake, v sekci \"Síť a Internet\"/\"Připojení\" a následně nastavte "
"tiskárnu také v řídícím centru v sekci \"Hardware\"/\"Tiskárna\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8425,24 +8595,24 @@ msgstr ""
"Síť nefunguje a nelze ji spustit. Prosím zkontrolujte nastavení hardware. "
"Pak se opět pokuste provést nastavení vzdálené tiskárny."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Restartuji tiskový systém ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "vysoká"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoidní"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaluji tiskový systém v bezpečnostní úrovni %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8456,7 +8626,7 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
-"Pokoušíte se instalovat tiskový systém %s na počítač, bežící v bezpečností "
+"Pokoušíte se instalovat tiskový systém %s na počítač, běžící v bezpečností "
"úrovni %s.\n"
"\n"
"Tiskový systém pracuje jako démon (proces na pozadí), který čeká na tiskové "
@@ -8467,11 +8637,11 @@ msgstr ""
"\n"
"Chcete opravdu nastavit tiskový systém na tomto počítači?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Spustit tiskový systém při startu systému"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8491,63 +8661,63 @@ msgstr ""
"\n"
"Chcete nastavit zpět automatický start tiskového systému?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Ověřují nainstalovaný software..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
-msgstr "Odebírám LPRng..."
+msgstr "Odebírám LprNG..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Odebírám LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Zvolte tiskový systém pro tiskárnu"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Který tiskový systém chcete použít pro tisk?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Nastavuji tiskárnu \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instaluji Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Možnosti tiskárny"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Připravuji PrinterDrake ...."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Nastavování aplikací..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Chtěli byste nastavit tiskárnu?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Tiskový systém: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
-msgstr "Printerdrake"
+msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8559,7 +8729,7 @@ msgstr ""
"nastavit na vzdáleném CUPS serveru pro využití v aplikaci Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8568,28 +8738,32 @@ msgstr ""
"Jsou nastaveny následující tiskárny. Dvojitým kliknutím na každou z nich je "
"možné je modifikovat, nastavit jako výchozí nebo o nich získat informace."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Obnovit seznam tiskáren (pro získání všech vzdálených CUPS tiskáren)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Změna tiskového systému"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normání režim"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Konec"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Chcete nastavit další tiskárnu?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Změnit nastavení tiskárny"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8598,104 +8772,104 @@ msgstr ""
"Tiskárna %s\n"
"Co chcete změnit na této tiskárně?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Provést!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Typ připojení pro tiskárnu"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Jméno tiskárny, popis, umístění"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Výrobce tiskárny, model, ovladač"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Výrobce tiskárny, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Nastavit tuto tiskárnu jako výchozí"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Přidat tuto tiskárnu do Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Odebrat tiskárnu ze Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
-msgstr "Tisk testovací(ch) stránky(nek)"
+msgstr "Tisk testovacích stránek"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Nápověda pro tisk na této tiskárně"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Odebrat tiskárnu"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Odebírám starou tiskárnu \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Odebírám starou tiskárnu \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Výchozí tiskárna"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tiskárna \"%s\" je nyní nastavena jako výchozí."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Přidávám tiskárnu do Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Tiskárna \"%s\" byla úspěšně přidána do Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Přidání tiskárny \"%s\" do Star Office/OpenOffice.org se nezdařilo."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Odebírám tiskárnu ze Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
"Tiskárna \"%s\" byla úspěšně odebrána z aplikace Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Odebrání tiskárny \"%s\" ze Star Office/OpenOffice.org se nezdařilo."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Chcete opravdu odebrat tiskárnu \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Odebírám tiskárnu \"%s\" ..."
+msgid "Removing printer \"%s\"..."
+msgstr "Odebírám tiskárnu \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8779,24 +8953,62 @@ msgstr "Hesla nejsou shodná. Zkuste to znovu!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nemůžu přidat oddíl do _naformátovaného_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Nemůžu zapsat soubor %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid neuspěl"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid neuspěl (možná, že chybí raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Není dostatek oddílů pro RAID úrovně %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Tato úroveň musí být použita s rozmyslem. Sice můžete snadněji používat "
+"svůj\n"
+"systém, ale na druhou stranu je velmi citlivý: Nesmí být použit pro\n"
+"počítač připojený k Internetu. Pro přihlášení není zapotřebí žádné heslo."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"S touto bezpečnostní úrovní je možné používat systém jako server.\n"
+"Bezpečnost je nyní dostatečně vysoká, aby bylo možné používat systém jako "
+"server, ke kterému\n"
+"je možné připojit mnoho klientů. Poznámka: pokud je počítač používán pouze "
+"jako klient pro připojení k Internetu, je lepší zvolit nižší úroveň."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Rozšířené volby"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Volby"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Spustit zvukový systém ALSA (Advanced Linux Sound Architecture)"
@@ -8851,7 +9063,7 @@ msgstr ""
"HardDrake testuje hardware a umožňuje nový/změněný\n"
"hardware nastavit"
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache je WWW server. Je používán k poskytování HTML a CGI souborů."
@@ -8924,7 +9136,7 @@ msgstr ""
"Linux Virtual Server používaný pro sestavení vysoce výkonného\n"
"a dostupného serveru."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9001,7 +9213,7 @@ msgstr ""
"a NIS. Portmap server musí být spuštěn na počítačích, které fungují jako\n"
"servery pro protokoly, které používají mechanismus RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9055,7 +9267,7 @@ msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-"Protokol rwho umožňuje vzdáleným(remote) uživatelům získat seznam\n"
+"Protokol rwho umožňuje vzdáleným uživatelům získat seznam\n"
"všech uživatelů přihlášených na počítači s démonem rwho (je to podobné\n"
"službě finger)."
@@ -9096,7 +9308,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Sdílení souborů"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Systém"
@@ -9111,7 +9323,7 @@ msgstr "Databázové servery"
#: ../../services.pm_.c:170
#, c-format
msgid "Services: %d activated for %d registered"
-msgstr "Skužby: aktivováno %d z %d registrovaných"
+msgstr "Služby: aktivováno %d z %d registrovaných"
#: ../../services.pm_.c:186
msgid "Services"
@@ -9135,7 +9347,7 @@ msgid ""
"about this service, sorry."
msgstr ""
"Nejsou žádné další\n"
-"informace o službě, sorry."
+"informace o službě, promiňte."
#: ../../services.pm_.c:224
msgid "On boot"
@@ -9225,6 +9437,7 @@ msgstr ""
"GNU gcc kompilátor a další prostředky na vývoj Open Source aplikací"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Řídící centrum Mandrake"
@@ -9285,7 +9498,7 @@ msgid ""
msgstr ""
"Chcete se dozvědět o Linuxu jednoduchou, rychlou a snadnou cestou? "
"Poskytujeme zdarma školení Linuxu, stejně jako testy vašich znalostí "
-"prostřednictvím online školícího centra MandrakeCampus"
+"prostřednictvím on-line školícího centra MandrakeCampus"
#: ../../share/advertising/10-MDKexpert.pl_.c:9
msgid "MandrakeExpert"
@@ -9346,6 +9559,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instaluji balíčky..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Prosím odhlaste se a pak stiskněte Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Pro aktivaci změn se prosím znovu přihlaste na %s"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9354,6 +9576,145 @@ msgstr ""
"Nemůžu přečíst vaši tabulku oddílů, možná je příliš narušená :(\n"
"Pokusím se pokračovat v čištění špatných oddílů"
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Nastavení Mandrake Terminal Server"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Zapnout server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Vypnout server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Spustit server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Zastavit server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Disketa Etherboot/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Startovací image ze sítě"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Přidat/Odebrat uživatele"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Přidat/Odebrat klienty"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Nápověda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Spouštěcí disketa"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Spouštěcí ISO"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Sestavit celé jádro -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Bude to trvat několik minut."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Nebylo zvoleno žádné jádro!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Sestavit jedinou NIC -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Není zvolena žádná NIC!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Sestavit všechna jádra -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Smazat"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "Smazat všechny NBI"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Přidat uživatele -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Odebrat uživatele"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Přidat klienta -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Odebrat klienta"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Nastavení dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Zapsat nastavení"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "Prosím vložte disketu:"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Nelze pracovat s disketou!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Disketu nyní můžete vyjmout"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Není dostupná žádná disketová mechanika!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "ISO image pro Etherboot je %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Něco neproběhlo správně!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Je nutné nejprve vytvořit soubor /etc/dhcpd.conf!"
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Chyba!"
@@ -9404,6 +9765,10 @@ msgstr ""
"Vyberte prosím, který z kroků instalace má být proveden automaticky stejně "
"jako instalační program nebo bude ručně zadán"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Vytvářím disketu pro automatickou instalaci"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9416,12 +9781,12 @@ msgstr ""
"\n"
"Parametry pro automatickou instalaci jsou přístupné v sekci nalevo"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratuluji!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9429,28 +9794,19 @@ msgstr ""
"Disketa byla s úspěchem vytvořena.\n"
"Nyní lze provést znovu instalaci."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Automatická instalace"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Přidat položku"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Odstranit poslední položku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9460,7 +9816,7 @@ msgstr ""
" Report programu DrackBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9472,19 +9828,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9496,62 +9840,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "celkový průběh"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Zálohovat systémové soubory..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Záložní soubory pevného disku..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Zálohovat soubory uživatelů..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Průběh zálohování na pevný disk... "
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Zálohovat další soubory..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"seznam souborů poslaný na FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) Problémy FTP spojení: nebylo možné poslat data pro zálohu přes FTP.\n"
+" Problémy FTP spojení: Nebylo možné poslat vaše soubory se zálohou přes "
+"FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Chyba při posílání pošty. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr " Chyba při posílání pošty. \n"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Výběr souboru"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Vyberte soubory nebo adresáře a klikněte na 'Přidat'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9559,106 +9927,100 @@ msgstr ""
"\n"
"Zvolte prosím všechny volby, které potřebujete.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr "Tato volba zazálohuje a obnoví všechny soubory v adresáři /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Zálohovat systémové soubory ( adresář /etc )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Použít přírůstkovou zálohu (nepřepisovat starší zálohy)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Nezahrnout kritické soubory (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "Tato volba dovolí obnovit různé verze adresáře /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Zvolte prosím všechny uživatele, které chcete zálohovat."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Nezahrnout cache prohlížeče"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Použít přírůstkovou zálohu (nepřepisovat starší zálohy)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Odstranit vybrané"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Uživatelé"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Použít FTP připojení pro zálohu"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Zadejte prosím jméno počítače nebo IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Zadejte adresář, do kterého\n"
" bude umístěna záloha."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Zadejte své přihlašovací jméno"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Zadejte své heslo"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Pamatovat si heslo"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP připojení"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Bezpečné připojení"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Použít pro zálohování CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Vyberte si velikost CD média"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Zvolte pokud používáte CDRW média"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Pokud CDRW médium nejdříve smazat, zatrhněte"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9666,7 +10028,7 @@ msgstr ""
"Pokud chcete mít spouštěcí CD,\n"
" zatrhněte tuto volbu."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9674,68 +10036,79 @@ msgstr ""
"Zadejte jméno vaší vypalovačky CD\n"
" např.: 1,0,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Použít páskovou jednotku"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Zadejte jméno zařízení, na které se bude zálohovat"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Pokud CDRW médium nejdříve smazat, zatrhněte"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
"Zadejte prosím maximální velikost\n"
-" povolenou pro Drakbackup"
+" povolenou pro DrakBackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Zadejte adresář, kam bude umístěna záloha:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Použít kvóty pro záložní soubory."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Síť"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Pevný disk / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Změnit typ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "každou hodinu"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "každý den"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "každý týden"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "každý měsíc"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Použít démona"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9743,7 +10116,7 @@ msgstr ""
"Vyberte si interval mezi\n"
"jednotlivými zálohami"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9751,71 +10124,67 @@ msgstr ""
"Prosím zvolte si\n"
"médium pro zálohy."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Použít pro pevný disk démona"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Použít pro síť démona"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+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 "Ujistěte se, že mezi službami je přítomen cron démon."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Poslat report po záloze mailem na :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Co"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Kde"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kdy"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Další volby"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Nastavení pro DrakBackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Vyberte si, prosím, kam chcete zálohovat."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "na pevný disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "přes síť"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Prosím vyberte si, co chcete zálohovat"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Zálohovat systém"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Zálohovat uživatele"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Vybrat uživatele manuálně"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9823,7 +10192,7 @@ msgstr ""
"\n"
"Zdroje pro zálohu:\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9831,7 +10200,7 @@ msgstr ""
"\n"
"- Systémové soubory:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9839,7 +10208,7 @@ msgstr ""
"\n"
"- Soubory uživatelů:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9847,7 +10216,7 @@ msgstr ""
"\n"
"- Další soubory:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9856,16 +10225,45 @@ msgstr ""
"\n"
"- Uložit na pevný disk do adresáře: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Přípojení myši: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Uložit na FTP na počítač: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Uložit na FTP na počítač: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9874,7 +10272,7 @@ msgstr ""
"\t\t uživatelské jméno: %s\n"
"\t\t cesta: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9882,19 +10280,19 @@ msgstr ""
"\n"
"- Volby:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNezahrnout systémové soubory\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tZálohování používá tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tZálohování používá tar a gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9903,27 +10301,41 @@ msgstr ""
"\n"
"- Démon (%s) zahrnuje :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Pevný disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Sítí přes FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Sítí přes SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Sítí přes FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Sítí přes FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Pro první spuštění použijte Průvodce nebo Rozšířené.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9931,7 +10343,7 @@ msgstr ""
"Seznam dat pro obnovení:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9939,132 +10351,135 @@ msgstr ""
"Seznam poškozených dat:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Zrušte tuto volbu při dalším spuštění."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Záložní soubory jsou poškozené"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Všechna vybraná data byla "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Úspěšně obnoveno na %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Obnovit konfiguraci "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Obnovit také ostatní soubory."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Seznam uživatelů pro obnovení (od každého bude obnovena pouze poslední "
"záloha)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Zálohovat systémové soubory před:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Vyberte datum obnovení zálohy"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Použít pro zálohování pevný disk"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Zadejte adresář, kam bude umístěna záloha:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP připojení"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Bezpečné připojení"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Obnovit z pevného disku."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Zadejte adresář, kde jsou umístěny zálohy"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Vyberte další médium, kde jsou umístěny zálohy"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Další média"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Obnovit systém"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Obnovit uživatele"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Obnovit ostatní"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "vyberte cestu pro obnovu (kromě / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Provést novou zálohu před obnovou (pouze pro přírůstkovou zálohu)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Odebrat adresáře uživatele před obnovou."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Obnovit všechny zálohy"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Vlastní obnova"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Nápověda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Předchozí"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Uložit"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Vytvořit zálohu"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Obnovit"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Další"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10072,7 +10487,7 @@ msgstr ""
"Dříve než budete obnovovat, vytvořte zálohu...\n"
"nebo ověřte, že daná cesta je správná."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10082,31 +10497,35 @@ msgstr ""
" vámi zvolený report nebyl odeslán\n"
" Proveďte prosím nastavení sendmailu"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Seznam balíčků pro instalaci"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Tyto balíčky budou instalovány"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Chyba při posílání souborů přes FTP.\n"
" Prosím opravte nastavení pro FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Prosím zvolte data pro obnovu..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Prosím zvolte si médium pro zálohy..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Zkontrolujte prosím data pro zálohování..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10114,75 +10533,75 @@ msgstr ""
"Nebyl nalezen konfigurační soubor, \n"
"klikněte na Průvodce nebo na Rozšířené."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Vyvíjí se... čekejte prosím."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Zálohovat systémové soubory"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Zálohovat uživatelské soubory"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Zálohovat další soubory"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Celkový průběh"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "soubory poslané přes FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Posílám soubory..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr "Seznam dat, která budou na CROM."
+msgstr "Seznam dat, která budou na CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Zadejte rychlost vypalovací mechaniky"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Zadejte prosím jméno CD vypalovačky (např.: 1.0.0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Zvolte, pokud chcete mít instalační CD spustitelné."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Zálohovat z konfiguračního souboru"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Prohlédnout konfiguraci zálohy."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Průvodce konfigurací"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Rozšířená konfigurace"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Zálohovat nyní"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10241,7 +10660,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10255,7 +10674,7 @@ msgstr ""
" nastavte myhostname a mydomain v /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10331,7 +10750,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10382,13 +10801,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -10405,7 +10829,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
" Tento program je svobodný software; můžete ho šířit a/nebo modifikovat\n"
-" podle specifikace GNU General Public Licence, která byla publikáva\n"
+" podle specifikace GNU General Public Licence, která byla publikována\n"
" Free Software Foundation; buď verze 2, nebo (podle volby) pozdější verze.\n"
"\n"
" Tento program je distribuován s nadějí, že bude užitečný,\n"
@@ -10416,7 +10840,7 @@ msgstr ""
" nebo si o ní můžete napsat na adresu Free Software Foundation, Inc.,\n"
" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10491,7 +10915,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10509,7 +10933,7 @@ msgstr ""
"ji pošlete na server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10532,7 +10956,7 @@ msgstr ""
"data ručně.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10611,99 +11035,526 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalace %s neuspěla. Stala se tato chyba:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Nástroj společnosti Mandrake pro hlášení chyb"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Průvodce pro nové uživatele"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Nástroj na synchronizaci"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr "Samostatné nástroje"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Vzdálené ovládání"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Správce software"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Nástroj pro migraci z Windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "UserDrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Průvodci nastavením"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Aplikace:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Balíček: "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Jádro: "
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Verze: "
+
+#: ../../standalone/drakbug_.c:87
+#, fuzzy
+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"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+"\n"
+"\n"
+"Chcete-li poslat hlášení o chybě, klepněte na tlačítko pro nahlášení chyby.\n"
+"Otevře se okno s prohlížečem sítě Internet na adrese https://www.bugzilla."
+"com,\n"
+"kde najdete formulář k vyplnění. Výše uvedené informace budou na tento "
+"server\n"
+"taktéž přeneseny.\n"
+"\n"
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Není instalováno"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Hlášení"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "připojuji se k průvodci Bugzilla ..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Není k dispozici žádný prohlížeč sítě Internet! Prosím nainstalujte nějaký."
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Nastavení sítě (%d adaptéry(ů))"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Smazat profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Smazat profil:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nový profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Zadejte jméno vytvářeného profilu (nový profil je vytvořen jako kopie "
+"vybraného) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Jméno počítače: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Přístup na Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Typ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Brána(gateway):"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Rozhraní:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Čekejte prosím"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Nastavuji přístup na Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Nastavení LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Ovladač"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Rozhraní"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Nastavuji lokální síť..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Klikněte pro spuštění průvodce ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Průvodce..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Použít"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Čekejte prosím... Aktivuji konfiguraci"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Připojen"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nepřipojen"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Připojit..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Odpojit..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "Varování, bylo detekováno jiné připojení k Internetu, zřejmě je to síť"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemáte nakonfigurováno žádné rozhraní.\n"
+"Nastavte jej kliknutím na 'Konfigurovat'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Nastavení LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptér %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protokol o spuštění"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Spustit při startu"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivovat nyní"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivovat nyní"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Toto rozhraní ještě nebylo nastaveno.\n"
+"Spusťte průvodce konfigurací z hlavního okna"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemáte žádné připojení k Internetu.\n"
+"Vytvořte si jej kliknutím na 'Konfigurovat'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfigurace připojení k internetu"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfigurace připojení k internetu"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Typ připojení:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametry"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Brána(gateway)"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernetová karta"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "použití: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-iso8859-2,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Jméno modulu"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Velikost"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "vytváření zaváděcích disket"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "předvolené"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Chyba DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "verze jádra"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Obecné"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Expertní nastavení"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "volitelné argumenty pro mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Přidat modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "vnutit"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "pokud je potřeba"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "vynechat SCSI moduly"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "vynechat RAID moduly"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Odebrat modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Výstup"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Vytvořit disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Zkontrolujte, zda v je zařízení %s vloženo médium"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"V zařízení %s není žádné médium, nebo je médium chráněno proti zápisu.\n"
+"Vložte prosím nějaké."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Nelze provést fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Nelze korektně ukončit mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Hledám instalované fonty"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Odznačit instalované fonty"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "zpracovávám všechny fonty"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "nebyly nalezeny žádné fonty"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "hotovo"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "nelze nalézt žádné fonty v připojeném oddíle"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Znovu vybrat správné fonty"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "nelze nalézt žádný font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Hledat fonty mezi instalovanými"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopie fontu"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr "Instalace fontů True Type"
+msgstr "Instalace písem True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "čekejte prosím, právě běží ttmkfdir... "
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Instalace True Type fontů je dokončena"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konverze fontů"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "vytvářím type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Odkazy na Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "konverze ttf fontů"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "konverze pfm fontů"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Ignorovat dočasné soubory"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Restartovat XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Ignorovat soubory s fonty"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "restart xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10717,107 +11568,107 @@ msgstr ""
"- Fonty lze instalovat běžným způsobem. Ve výjimečných případech může špatný "
"font způsobit zamrznutí X serveru."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Zavádění fontů"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Načíst fonty z Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Odinstalovat fonty"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Rozšířené volby"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Seznam fontů"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Zvolte aplikace, které podporují fonty:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Obecné tiskárny"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Vyberte soubor s fontem nebo adresář a klikněte na 'Přidat'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Instalovat seznam"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "klikněte zde, pokud jste si jisti."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "zde pokud si nejste jisti."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Zrušit celý výběr"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Vybrat vše"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Odebrat seznam"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Úvodní testy"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopírovat fonty do systému"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instalovat & konvertovat fonty"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Poinstalační nastavení"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Odebrat fonty ze systému"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Nastavení po odebrání"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Sdílení Internetového Připojení"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Omlouváme se, ale podporujeme pouze jádra řady 2.4."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Sdílení Internetového připojení je zapnuto"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10829,31 +11680,31 @@ msgstr ""
"\n"
"Co chcete dále dělat?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "vypnout"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "odmítnout"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "překonfigurovat"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Zakazuji servery..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Sdílení Internetového připojení je nyní vypnuto."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Sdílení Internetového připojení je vypnuto"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10865,19 +11716,19 @@ msgstr ""
"\n"
"Co chcete dále dělat?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "povolit"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Povoluji servery..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Sdílení Internetového připojení je nyní zapnuto."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10892,21 +11743,21 @@ msgstr ""
"\n"
"Pozn.: potřebujete vyhrazený síťový adaptér pro nastavení lokální sítě (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rozhraní %s (používá modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Rozhraní %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ve vašem systému není žádný síťový adaptér!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10914,11 +11765,11 @@ msgstr ""
"Ve vašem počítači nebyl nalezen žádný síťový adaptér. Spusťte prosím program "
"pro nastavení hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Síťové rozhraní"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10933,17 +11784,17 @@ msgstr ""
"\n"
"Na tomto adaptéru bude nastavena lokální síť."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Prosím zvolte si, ke kterému síťovému adaptéru bude připojena LAN."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Síťové rozhraní je již nastaveno"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10958,15 +11809,15 @@ msgstr ""
"\n"
"Lze to také provést ručně, ale musíte vědět, co děláte."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatické přenastavení"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Zobrazit aktuální nastavení rozhraní"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10983,7 +11834,7 @@ msgstr ""
"IP atributy: %s\n"
"Ovladač: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11002,32 +11853,32 @@ msgstr ""
"potřeby.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokální síť"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "Adresa DHCP serveru"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Přenastavení rozhraní a DHCP serveru"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Číslo lokální síě nekončí na .0, zkouším znovu."
+msgstr "Číslo lokální sítě nekončí na .0, zkouším znovu."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Našel jsem možný konflikt v současném nastavení LAN adresy pro %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Našel jsem existující nastavení firewallu!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11035,20 +11886,20 @@ msgstr ""
"Varování! Bylo nalezeno existující nastavení firewallu. Po instalaci může "
"být zapotřebí nějaká ruční úprava."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Nastavuji..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Nastavuji skripty, instaluji software, startuji servery..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problém s instalací balíčku %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11058,23 +11909,23 @@ msgstr ""
"Nyní lze použít tento počítač pro sdílení připojení k Internetu pro vaši "
"lokální síť, která používá automatickou konfiguraci sítě (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Nastavení již bylo provedeno, ale nyní je vypnuto."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Nastavení již bylo provedeno, nyní je povoleno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Není nastaveno žádné sdílení Internetového připojení."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Nastavení sdílení připojení k Internetu"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11089,214 +11940,6 @@ msgstr ""
"\n"
"Klikněte na Konfigurovat, pokud chcete spustit průvodce nastavením."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Nastavení sítě (%d adaptéry(ů))"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Smazat profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Smazat profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nový profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Zadejte jméno vytvářeného profilu (nový profil je vytvořen jako kopie "
-"vybraného) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Jméno počítače: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Přístup na Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Brána(gateway):"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rozhraní:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Čekejte prosím"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Nastavuji přístup na Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Nastavení LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ovladač"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rozhraní"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Nastavuji lokální síť..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klikněte pro spuštění průvodce ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Průvodce..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Použít"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Čekejte prosím... Aktivuji konfiguraci"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Připojen"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nepřipojen"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Připojit..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odpojit..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr "Varování, bylo detekováno jiné připojení k Internetu, zřejmě je to síť"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemáte nakonfigurováno žádné rozhraní.\n"
-"Nastavte jej kliknutím na 'Konfigurovat'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Nastavení LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptér %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protokol o spuštění"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Spustit při startu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivovat nyní"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivovat nyní"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Toto rozhraní ještě nebylo nastaveno.\n"
-"Spusťte průvodce konfigurací z hlavního okna"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemáte žádné připojení k Internetu.\n"
-"Vytvořte si jej kliknutím na 'Konfigurovat'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfigurace připojení k internetu"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfigurace připojení k internetu"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Typ připojení:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametry"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Brána(gateway)"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernetová karta"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Úroveň zabezpečení"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Řídící centrum"
@@ -11305,63 +11948,93 @@ msgstr "Řídící centrum"
msgid "Choose the tool you want to use"
msgstr "Zvolte si nástroj, který chcete použít"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+"Aplikace XawTV není nainstalovaná!\n"
+"\n"
+"\n"
+"Máte-li TV kartu a nástroj DrakX ji ani nerozpoznal (není přítomen\n"
+"modul bttv v \"/etc/modules\"), ani nenainstaloval aplikaci XawTV, pošlete\n"
+"prosím výsledek příkazu \"lspcidrake -v -f\" na adresu \"install"
+"\\@mandrakesoft.com\"\n"
+"s předmětem zprávy \"undetected TV card\".\n"
+"\n"
+"\n"
+"Tuto aplikaci můžete doinstalovat příkazem \"urpmi xawtv\" spuštěným \n"
+"v konzoli pod uživatelem root."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "USA (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Čína (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "Čína (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japonsko (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "Japonsko (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japonsko (kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Východní Evropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Francie [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irsko"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Západní Evropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Austrálie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nový Zéland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Jižní Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11369,27 +12042,43 @@ msgstr ""
"Zadejte prosím\n"
"typ TV normy a zemi"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Norma TV:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Oblast :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Probíhá vyhledávání TV kanálů ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Vyhledávám TV kanály"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Nastala chyba při zkoumání TV kanálů"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "Aplikace XawTV není nainstalovaná!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Přeji hezký den!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nyní můžete spustit aplikaci XawTV (pod X Windows!)\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "Nebyla nalezena TV karta!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11419,7 +12108,7 @@ msgstr "Jaké je rozložení vaší klávesnice?"
#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Chcete, aby se klávesa BackSpace chovala v konzoli jako Delete?"
+msgstr "Chcete, aby se klávesa Backspace chovala v konzoli jako Delete?"
#: ../../standalone/livedrake_.c:24
msgid "Change Cd-Rom"
@@ -11439,9 +12128,9 @@ msgstr "Nelze spustit aktualizaci na běžící systém !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr "Změny jsou provedeny, ale pro aktivaci je nutné provést logout"
+msgstr "Změny jsou provedeny, ale pro aktivaci je nutné provést odhlášení"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11451,7 +12140,7 @@ msgstr "Zobrazit pouze pro vybraný den"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/_Soubor/_Nový"
+msgstr "/Soubor/_Nový"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
@@ -11489,10 +12178,6 @@ msgstr "/_Volby"
msgid "/Options/Test"
msgstr "/Volby/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Nápověda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Nápověda/_O aplikaci..."
@@ -11527,7 +12212,7 @@ msgstr "vyhledat"
#: ../../standalone/logdrake_.c:185
msgid "A tool to monitor your logs"
-msgstr "Nástroj na monitorování logů"
+msgstr "Nástroj na sledování logů"
#: ../../standalone/logdrake_.c:186
msgid "Settings"
@@ -11553,7 +12238,7 @@ msgstr "Kalendář"
msgid "Content of the file"
msgstr "Obsah souboru"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Varovné zprávy přes Mail/SMS"
@@ -11562,11 +12247,11 @@ msgstr "Varovné zprávy přes Mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "čekejte prosím, zpracovávám soubor: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Nastavení upozornění přes Mail/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11576,63 +12261,94 @@ msgstr ""
"\n"
"Zde lze nastavit posílání varovných zpráv.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Jméno domény"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Zastavit server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Poštovní server postfix, server pro diskusní skupiny Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Spustit server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Služby"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Tiskový server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "nastavení služeb"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Pokud jedna z vybraných služeb nepoběží, obdržíte varovnou zprávu"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "nahrát volby"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Pokud bude hodnota vetší než zadané číslo, obdržíte varovnou zprávu"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "nastavení varování"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Nastavuje způsob, jakým bude systém posílat varovné hlášky"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Uložit jako..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Jaký je typ vaší myši?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nebylo nalezeno serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulovat třetí tlačítko?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Načítám údaje o tiskárně ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Detekuji zařízení ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11667,8 +12383,8 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
-"Skener %s musí být nastaven pomocí nástroje printerdrake.\n"
-"Spustit printerdrake lze z řídícího centra Mandrake v sekci Hardware"
+"Skener %s musí být nastaven pomocí nástroje PrinterDrake.\n"
+"Spustit PrinterDrake lze z řídícího centra Mandrake v sekci Hardware"
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -11681,6 +12397,20 @@ msgstr ""
"Nyní lze skenovat dokumenty pomocí aplikace \"XSane\" z nabídky aplikací "
"Multimédia/Grafika."
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Některá zařízení v třídě hardware \"%s\" byla odstraněna:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Některá zařízení v třídě hardware \"%s\" byla přidána:\n"
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Konfigurace firewallu"
@@ -11721,7 +12451,7 @@ msgstr "Volba typu instalace"
#: ../../steps.pm_.c:16
msgid "Hard drive detection"
-msgstr "Detekce hardisků"
+msgstr "Detekce pevných disků"
#: ../../steps.pm_.c:17
msgid "Configure mouse"
@@ -11977,11 +12707,11 @@ msgstr "Průvodce konfigurací firewallu"
#: ../../tinyfirewall.pm_.c:199
msgid "No (firewall this off from the internet)"
-msgstr "Ne (zakázat na firewalu)"
+msgstr "Ne (zakázat na firewallu)"
#: ../../tinyfirewall.pm_.c:200
msgid "Yes (allow this through the firewall)"
-msgstr "Ano (povolit na firewalu)"
+msgstr "Ano (povolit na firewallu)"
#: ../../tinyfirewall.pm_.c:232
msgid "Please Wait... Verifying installed packages"
@@ -12037,8 +12767,8 @@ msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
-"Programy pro kancelář: textové procesory (kword, abiword), tabulkové "
-"procesory (kspread, gnumeric), prohlížeče pdf a další"
+"Programy pro kancelář: textové procesory (KWord, Abiword), tabulkové "
+"procesory (KSpread, Gnumeric), prohlížeče PDF a další"
#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
@@ -12054,7 +12784,7 @@ msgstr "Pracovní stanice s KDE"
#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm a další"
+msgstr "IceWM, Window Maker, Enlightenment, Fvwm a další"
#: ../../share/compssUsers:999
msgid "Multimedia - Video"
@@ -12062,7 +12792,8 @@ msgstr "Multimédia - video"
#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Skupina programů pro mail, newsy, web, přenos souborů a chat"
+msgstr ""
+"Skupina programů pro poštu, diskusní skupiny, web, přenos souborů a chat"
#: ../../share/compssUsers:999
msgid "Database"
@@ -12070,7 +12801,7 @@ msgstr "Databáze"
#: ../../share/compssUsers:999
msgid "PostgreSQL or MySQL database server"
-msgstr "Databázové servery PostreSQL nebo MySQL"
+msgstr "Databázové servery PostgreSQL nebo MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
@@ -12081,10 +12812,6 @@ msgid "Multimedia - Sound"
msgstr "Multimédia - zvuk"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utility"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentace"
@@ -12094,7 +12821,7 @@ msgstr "Konzolové nástroje"
#: ../../share/compssUsers:999
msgid "Postfix mail server, Inn news server"
-msgstr "Poštovní server postfix, server pro news Inn"
+msgstr "Poštovní server postfix, server pro diskusní skupiny Inn"
#: ../../share/compssUsers:999
msgid "Internet station"
@@ -12102,7 +12829,7 @@ msgstr "Internetová stanice"
#: ../../share/compssUsers:999
msgid "Multimedia station"
-msgstr "Multimédiální stanice"
+msgstr "Multimediální stanice"
#: ../../share/compssUsers:999
msgid "Configuration"
@@ -12142,11 +12869,11 @@ msgstr "Server"
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm a další"
+msgstr "Gnome, IceWM, Window Maker, Enlightenment, Fvwm a další"
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
-msgstr "Grafické programy jako např. Gimp"
+msgstr "Grafické programy jako např. GIMP"
#: ../../share/compssUsers:999
msgid "DNS/NIS "
@@ -12162,7 +12889,7 @@ msgstr "Síťový server"
#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
-msgstr "Pošta/Groupware/News"
+msgstr "Pošta/Groupware/Diskuse"
#: ../../share/compssUsers:999
msgid "Game station"
@@ -12185,12 +12912,8 @@ msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
-"Kolekce nástrojů pro čtení a posílaní mailů (pine, mutt, tin..) a pro "
-"prohlížení Webu"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivace, emulátory, minitoring"
+"Kolekce nástrojů pro čtení a posílaní el. pošty a příspěvků do diskusních "
+"skupin (pine, mutt, tin..) a pro prohlížení Webu"
#: ../../share/compssUsers:999
msgid "Personal Finance"
@@ -12226,7 +12949,7 @@ msgstr "Editory, shelly, souborové nástroje, terminály"
#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programy na správu financí jako např. gnucash"
+msgstr "Programy na správu financí jako např. GnuCash"
#: ../../share/compssUsers:999
msgid "Personal Information Management"
@@ -12239,3 +12962,157 @@ msgstr "Multimédia - vypalování CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Vědecká stanice"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "selhal běh fsck s návratovým kódem %d nebo signálem %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikace grafické karty: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Zvolte možnosti pro daný X server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor není nastaven"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafická karta ještě není nastavena"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Ještě nejsou zvolena rozlišení"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "zkuste změnit některé parametry"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Vyskytla se tato chyba:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Test skončí automaticky za %d sekund"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Je to správné nastavení?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Vyskytla se chyba, zkuste změnit některé parametry"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Ukázat vše"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Připravuji nastavení X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Co chcete dělat?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Změnit monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Změnit grafickou kartu"
+
+#~ msgid "Change Server options"
+#~ msgstr "Změnit parametry X Serveru"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Změnit rozlišení"
+
+#~ msgid "Show information"
+#~ msgstr "Zobrazit informace"
+
+#~ msgid "Test again"
+#~ msgstr "Znovu vyzkoušet nastavení X"
+
+#~ msgid ""
+#~ "Description of the fields:\n"
+#~ "\n"
+#~ "Bus: this is the physical bus on which the device is plugged (eg: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identification: \n"
+#~ "- pci devices : this list the vendor, device, subvendor and subdevice PCI "
+#~ "ids\n"
+#~ "\n"
+#~ "Description: this field describe the device\n"
+#~ "\n"
+#~ "Location on the bus: \n"
+#~ "- pci devices: this gives the PCI slot, device and function of this card\n"
+#~ "- eide devices: the device is either a slave or a master device\n"
+#~ "- scsi devices: the scsi bus and the scsi device ids\n"
+#~ "\n"
+#~ "Media class: class of hardware device\n"
+#~ "\n"
+#~ "Module: the module of the GNU/Linux kernel that handle that device\n"
+#~ "\n"
+#~ "Vendor: the vendor name of the device\n"
+#~ msgstr ""
+#~ "Vysvětlivky k polím:\n"
+#~ "\n"
+#~ "Sběrnice: fyzická sběrnice, do níž je zařízení zapojeno (např. PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Identifikace sběrnice: \n"
+#~ "- PCI zařízení: zobrazuje ID dodavatele, zařízení, subdodavatele a "
+#~ "podzařízení\n"
+#~ "\n"
+#~ "Popis: Toto pole blíže popisuje zařízení.\n"
+#~ "\n"
+#~ "Umístění na sběrnici:\n"
+#~ "- zařízení PCI: určuje PCI slot, zařízení a funkce této karty\n"
+#~ "- zařízení EIDE: zařízení je buď \"slave\" nebo \"master\"\n"
+#~ "- zařízení SCSI: SCSI sběrnice a ID zařízení na SCSI sběrnici\n"
+#~ "\n"
+#~ "Třída médií: třída hardwarového zařízení\n"
+#~ "\n"
+#~ "Modul: modul jádra operačního systému GNU/Linux, který zařízení "
+#~ "obsluhuje\n"
+#~ "\n"
+#~ "Dodavatel: Jméno dodavatele zařízení\n"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Multifunkční zařízení od HP bylo nastaveno pro možnost skenování. Nyní "
+#~ "lze skenovat příkazem \"ptal-hp %s scan ...\" z příkazového řádku. "
+#~ "Skenování z grafického prostředí nebo z programu GIMP není zatím na tomto "
+#~ "zařízení podporováno. Více informací naleznete v souboru \"/usr/share/doc/"
+#~ "hpoj-0.8/ptal-hp-scan.html\". Pokud máte HP LaserJet 1100 nebo 1200, lze "
+#~ "skenovat pouze v případě, že máte nainstalovánu podporu pro skenování.\n"
+#~ "\n"
+#~ "Nepoužívejte pro toto zařízení \"scannerdrake\"!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Použít pro pevný disk démona"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Použít pro síť démona"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Seznam balíčků pro instalaci"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 97fdf158a..ace5bdb10 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -1,38 +1,67 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Dafydd Tomos <dafydd@imaginet.co.uk>, 1999
-# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>, 2002
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-11 12:35-0000\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-02-23 10:00-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
-"Language-Team: Cymraeg/Welsh <cy@li.org>\n"
+"Language-Team: Cymraeg <cy@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-14\n"
+"Content-Type: text/plain; charset=iso-8859-14\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Ffurfweddu pob pen yn annibynnol"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Defnyddiwch estyniad Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "16 MB neu fwy"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Dewiswch wasanaethwr X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Gwasanaethwr X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Ffurfweddiad amlben"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,41 +69,44 @@ msgstr ""
"Mae eich system yn cynnal ffurfweddiad amlben.\n"
"Beth hoffech ei wneud?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Cerdyn graffig"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Dewiswch gerdyn graffig"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Ffurfweddiad XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Dewiswch wasanaethwr X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Gwasanaethwr X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Ffurfweddu pob pen yn annibynnol"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Dewiswch yrrwr X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Gyrrwr X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree86: %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s gyda cyflymu caledwedd 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,33 +117,18 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gyda cyflymu caledwedd 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
-"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +141,58 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
+"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (gyrrwr gosod dangoswr)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Ffurfweddiad XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Dewiswch opsiynau ar gyfer y gwasanaethwr"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Cadw'r newid?\n"
+"Y ffurfweddiad presenol yw:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Dewiswch fonitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Arddull"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generig"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Dadwneud"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -170,511 +214,326 @@ msgstr ""
"hynny.\n"
"Os oes gennych amheuaeth, dewiswch raddfa is."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Graddfa adfywio llorweddol"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Graddfa adfywio fertigol"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor heb ei ffurfweddu"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Cerdyn graffig heb ei ffurfweddu eto"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Cydraniad heb ei ddewis eto"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Profi'r ffurfweddiad"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 lliw (8 did)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ceisiwch newid rhai paramedrau"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil o liwiau (15 did)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Digwyddodd gwall:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil o liwiau (16 did)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Gadael mewn %d eiliad"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliwn o liwiau (24 did)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ydi'r gosodiad hwn yn gywir?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biliwn o liwiau (32 did)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Digwyddodd gwall, ceisiwch newid rhai paramedrau"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Cydraniadau"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Cydraniad"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Cerdyn graffeg: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Gwasanaethwr XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Rhagor"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Diddymu"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Iawn"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modd Arbennigwr"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Dangos y cyfan"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Cydraniadau"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Profi'r ffurfweddiad"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Gosodiad yr yr allweddell: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Math o lygoden: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dyfais llygoden: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizSync Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertRefresh Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Cerdyn graffeg: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Dynodiad y cerdyn graffeg: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Cof graffeg: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dyfnder lliw: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Cydraniad: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "GwasanaethwrXFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Gyrrwr XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Yn parataoi cyfluniad X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Beth ydych eisiau ei wneud?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Newid Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Newid cerdyn Graffeg"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Dewisiadau newid Gwasanaethwr"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Newid Cydraniad"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Dangos gwybodaeth"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Profi eto"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Gadael"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Cadw'r newid?\n"
-"Y ffurfweddiad presenol yw:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X wrth ddechrau"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar ôl cychwyn\n"
"Hoffech chi X i ddechrau wedi i chi ail-gychwyn?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 lliw (8 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil o liwiau (15 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil o liwiau (16 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliwn o liwiau (24 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biliwn o liwiau (32 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "16 MB neu fwy"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA safonol, 640x480 ar 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Uwch VGA, 800x600 ar 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Cydnaws a 8514, 1024x768 rhyngleswyd ar 87 Hz (nid 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 rhyngleswyd ar 87Hz, 800x600 ar 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA di-rygnlesig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA Amledd Uchel, 1024x768 ar 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor sydd yn medru dangos 1600x1200 ar 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor sydd yn medru dangos 1600x1200 ar 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Adran gyntaf o'r rhaniad cychwyn"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r gyrrwr (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Gosodiad SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Lle ydych chi eisiau gosod y llwythwr cychwyn?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Gosodiad LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO gyda dewislen testun"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "Lilo gyda dewislen graffig"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Cychwyn o DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Prif ddewisiadau Bootloader"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader ar waith"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Gosodiad Bootloader"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nid yw'n gweithio gyda hen BIOSau)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Cryno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "cryno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modd fideo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn delwedd rhagosodedig"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Cyfrinair"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Cyfyngu dewisiadau llinell orchymyn"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "cyfyngu"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Union faint o RAM os oes angen (canfod %dMB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Galluogi aml-broffil"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Rhowch maint RAM mewn MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cydfynd"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Neges Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Agor Oedi Cadarnwedd"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Goramser cychwyn y cnewyllyn"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Galluogi cychwyn o CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Galluogi Cychwyn OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Systm Weithredu Rhagosodedig?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -688,83 +547,83 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Dyma'r cofnodion gwahanol.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ychwanegu"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gorffen"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Newid"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Systwmau Gweithredu eraill (SunOS..)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Systemau gweithredu Eraill (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Delwedd"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Gwraidd"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Atodi"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Darllen-ysgrifennu"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabl"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Anniogel"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Rhagosodedig"
@@ -796,53 +655,78 @@ msgstr "Rhaid pennu rhaniad cyfnewid"
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Wedi canfod rhyngwynebau %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Oes gennych un arall?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych rhyngwynebau %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Na"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Iawn"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Gweler gwyboadeth am galedwedd"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Gosod gyrrwr ar gyfer cerdyn %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modiwl %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, 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 ""
+"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
+"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x fel "
+"'0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Medrwch nawr ei ddewis i fodiwl. %s.\n"
+"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
+"e.e, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Dewisiadau modiwl:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pa yrrwr %s ddylwn drio?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -862,40 +746,15 @@ msgstr ""
"unrhyw\n"
"ddifrod"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Atoholi"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Enwi dewisiadau"
-#: ../../any.pm_.c:725
-#, 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 ""
-"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
-"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x fel "
-"'0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Medrwch nawr ei ddewis i fodiwl. %s.\n"
-"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
-"e.e, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Dewisiadau modiwl:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,50 +763,55 @@ msgstr ""
"Methodd llwytho modiwl %s\n"
"Hoffech chi drio eto gyda pharamedrau eraill?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "caniatáu \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -956,32 +820,32 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Enw cywir"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Enw defnyddiwr"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Cragen"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Eicon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Awtomewngofnodi"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -990,87 +854,67 @@ msgstr ""
"defnyddiwr\n"
"Hoffech chi wneud hyn?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 "Gallwch ddewis ieithoedd eraill fydd ar gael ar ôl gosod"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Popeth"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Arddull"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Dim rhannu"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Dileu"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1078,31 +922,31 @@ msgstr ""
"Mae rhannu yn ôl defnyddiwr yn defnyddio \"rhannu ffeiliau\" grwp.\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Gwael"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Safonol"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Uchel"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Uwch"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoia"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1113,7 +957,7 @@ msgstr ""
"i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1121,7 +965,7 @@ msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1129,7 +973,7 @@ msgstr ""
"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
"cael ei gysylltu â'r Rhyngrwyd fel cleient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1137,13 +981,14 @@ msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
"bosibl.\n"
@@ -1152,34 +997,34 @@ msgstr ""
"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeëdig.\n"
"Mae nodweddion diogelwch ar eu uchaf."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Dewiswch lefel diogelwch"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Lefel diogelwch"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1196,52 +1041,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "gorchmynion cyn cychwyn, neu 'o' am y llinell orchymyn."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "dim digon o le yn /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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Penbwrdd"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Dewislen Cychwyn"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y llwythwr cychwyn ar adran %s\n"
@@ -1254,15 +1099,19 @@ msgstr "nid yw cymorth wedi ei weithredu eto.\n"
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ffeil"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ffeil/_Gadael"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1297,14 +1146,14 @@ msgstr "Modd Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Ryych yn defnyddio %s fel Rheolwr Cychwyn.\n"
"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Ffurfweddu"
@@ -1314,7 +1163,7 @@ msgid "System mode"
msgstr "Modd System"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Cychwyn y system X-Window o'r cychwyn"
#: ../../bootlook.pm_.c:148
@@ -1325,14 +1174,16 @@ msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, penbwrdd)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Iawn"
@@ -1380,7 +1231,7 @@ msgstr "Nid wyf yn medru creu lluniau o'r sgrin cyn rhannu"
msgid "Screenshots will be available after install in %s"
msgstr "Bydd lluniau o'r sgrin ar gale ar ôl gosod yn %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ffrainc"
@@ -1388,7 +1239,7 @@ msgstr "Ffrainc"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Gwlad Belg"
@@ -1412,11 +1263,12 @@ msgstr "Norwy"
msgid "Sweden"
msgstr "Sweden"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Yr Iseldiroedd"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Yr Eidal"
@@ -1424,7 +1276,7 @@ msgstr "Yr Eidal"
msgid "Austria"
msgstr "Awstria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Yr Unol Daleithiau"
@@ -1432,8 +1284,8 @@ msgstr "Yr Unol Daleithiau"
msgid "Please make a backup of your data first"
msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Darllenwch yn ofalus!"
@@ -1447,11 +1299,12 @@ msgstr ""
"ddigon)\n"
"ar ddechrau'r ddisg."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Gwall"
@@ -1459,11 +1312,11 @@ msgstr "Gwall"
msgid "Wizard"
msgstr "Dewin"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Dewiswch weithred"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1475,77 +1328,77 @@ msgstr ""
"Awgrymaf eich bod yn newid maint y rhaniad\n"
"(cliciwch arno, ac yna clicio \"Newid maint\"]"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Cliciwch ar raniad"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Manylion"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "jwrnaleiddiwyd FS?"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Gwag"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Arall"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Mathau ffeil-system:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Creu"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Math"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Defnyddiwch \"%s\" yn lle hynny"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Dileu"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Defnyddiwch \"Dad-osod\" yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1553,97 +1406,102 @@ msgstr ""
"Wedi newid y math o raniad %s bydd yr holl ddata ar y rhaniad yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Dewiswch raniad"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Dewiswch rhaniad arall"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Gadael"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Cyffredinol > Arbennigwr"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Arbennigwr > Cyffredinol"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Dadwneud"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Parhau beth bynnag?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Gorffen heb arbed"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu y tabl rhaniadau?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Awto ddynodi"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Clirio i gyd"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Rhagor"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Gwybodaeth am y ddisg caled"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Alla'i ddim ychwanegu unrhyw raniadau ychwanegol"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "I gael mwy o raniadau, dilëwch un er mwyn gallu creu rhaniad estynedig"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Cadw'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Adfer y tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ail-lwytho'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Cyfrwng symudadwy'n awto-osod"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Dewiswch ffeil"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1651,11 +1509,11 @@ msgstr ""
"Nid oes gan y tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Rhybudd"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1663,122 +1521,129 @@ msgstr ""
"Rhowch flopi yn y disg-yrrwr\n"
"Mi fydd yr holl wybodaeth ar y fflopi yma yn gael ei ddileu"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Yn trio achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Gwybodaeth fanwl"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Pwynt gosod"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Dewisiadau"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Gosod"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ychwanegu i RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ychwanegu i LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Dad-osod"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Tynnu o RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Tynnu o LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Newid RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Defnyddiwch ar gyfer cylchol"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Creu rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector dechreuol: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Math o ffeilsystem: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Pwynt gosod:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Dewis"
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Tynnu'r ffeil cylch-ol?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Newid math y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Pa fath o system ffeil ydych chi eisiau?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Newid o ext2 i ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Lle'r hoffech chi odod y ffeil cylch-ol %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Lle ydych am osod dyfais %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1787,128 +1652,133 @@ msgstr ""
"gyfer cylch-ol\n"
"Tynnu'r cylch-ol yn gyntaf"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Cyfrifo ffiniau system ffeiliau FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Nid oes modd newid maint y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Dylai'r holl ddata ar y rhaniad gael ei ategu"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ar ôl newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Dewiswch y maint newydd"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Yn symud rhaniad.."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Dewis RAID presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "newydd"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Dewis LVM presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Enw LVM"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Niid oes modd defnyddio'r rhaniad ar gyfer cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Enw ffeil cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Rhowch enw ffeil"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Mae'r ffeil yn cael ei ddweis eisoes gam gylch-ol arall, dewiswch un arall"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Dewisiadau gosod"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Amrywiol"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dyfais"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "lefel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "maint darn"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Pa fath o rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1920,7 +1790,7 @@ msgstr ""
"Naill ai nad ydych yn defnyddio LILO a ddim angen /boot neu byddwch yn "
"defnyddio LILO a ni fydd yn gweithio."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1932,7 +1802,7 @@ msgstr ""
"Os ydych yn bwriadu defnyddio y rheolwr bwtio LILO, nodwch fe ddylech greu "
"rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1942,130 +1812,130 @@ msgstr ""
"Nid oes llwythwr cychwyn yn medru trin hwn heb rhaniad /boot\n"
"Cofiwch ychwanegu rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg-yrrwr %s am gael ei ysgrifennu i'r disg!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ail-fwtio cyn i'r newidiadau gymeryd lle"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Yn fformatio ffeil cylch-ol %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Yn fformatio rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Cuddio ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copďo %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Tynnu %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dyfais: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg-yrrwr yn DOS: %s (dim ond dyfalu)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Math: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Enw :"
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Maint: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d i silindr %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Wedi fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Gosodwyd\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2074,7 +1944,7 @@ msgstr ""
"Ffeil(iau) Cylch-ol:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2082,27 +1952,27 @@ msgstr ""
"Y rhaniad i'w bwtio fel rheol\n"
" (ar gyfer bwt MS-DOS, nid ar gyfer lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Maint darn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disg RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Enw ffeil cylch-ol: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2114,7 +1984,7 @@ msgstr ""
"yw'r rhaniad hwn. Gwell gadael\n"
"llonnydd iddo.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2126,63 +1996,63 @@ msgstr ""
"hwn ar gyfer cychwyniad\n"
"dwbl eich system\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Maint: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Gwybodaeth:"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Diag LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Math tabl rhaniad: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "ar fws %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Allwedd amgryptio system ffeil : "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Mae'r allwedd amgryptio'n rhy syml ( mae'n rhaid bod o leiaf %d nod o hyd)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Nid yw'r allweddi amgryptio'n cydfynd"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Allwedd amgryptio"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Allwedd amgryptio (eto)"
@@ -2191,35 +2061,65 @@ msgid "Change type"
msgstr "Newid y math"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Cliciwch ar gyfrwng"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Dilysu"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Rhyngrwyd"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Enw defnyddiwr"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Enw defnyddiwr"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Parth NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Chwiliwch am wasanaethwyr"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "mi fethodd y %s fformatio o %s"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng gnhyfeiriadur %s"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
@@ -2236,67 +2136,321 @@ msgstr "gyda /usr"
msgid "server"
msgstr "Gwasanaethwr"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar rhaniadau llai na 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Rjhaid i bwyntiau gosod gynnwys / arweiniol"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda pwynt gosod %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dyai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Mae angen gwir system ffeilio (ext2, reiserfs) ar gyfer y pwynt gosod\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le ar gyfer awtoddynodi"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Dim i'w wneud"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
"arnynt. Gwiriwch eich caledwedd am ffynhonell yr anhawster."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Does gennych chi ddim rhaniadau!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Defnyddio awto ganfod"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generig"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Cof Cerdyn (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "gosodiad llwyth"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Newid y math"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Gadael"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Cymorth"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Cymorth"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Cymorth/_Ynghylch..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Llygoden"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Cof Cerdyn (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Diddymu"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Llygoden"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Disgrifiad"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Dilysu"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Dewiswch ffeil"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dyfais mynedfa"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 fotwm"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Canfod disg caled"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Gweler gwyboadeth am galedwedd"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Dangos gwybodaeth"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Ffurfweddu llygoden"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "canfyddwyd ar borth %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Arhoswch"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d eiliad"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Tynnu argraffydd \"%s\"..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Atoholi"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2310,7 +2464,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2452,9 +2606,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2795,7 +2948,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2807,9 +2960,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2849,6 +3001,7 @@ msgstr ""
"angen ei fformatio gan y bydd DrakX yn ailysgrifennu'r holl ddisg."
#: ../../help.pm_.c:280
+#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2883,21 +3036,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2913,9 +3065,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Yn awr mae angen i chi ddewis lle ar eich disg caled i osod eich\n"
"system weithredu Linux Mandrake. Os yw eich disg caled yn wag neu\n"
@@ -3007,9 +3159,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3182,6 +3333,7 @@ msgstr ""
"Os nad ydych yn siwr beth i'w ddewis, dewiswch y rhagosodedig."
#: ../../help.pm_.c:442
+#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3203,38 +3355,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3403,6 +3549,7 @@ msgid "Please be patient. This operation can take several minutes."
msgstr "Amynedd... Gall y weithred hon gymryd rhai munudau."
#: ../../help.pm_.c:547
+#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
@@ -3413,11 +3560,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3474,7 +3621,7 @@ msgstr ""
"oes gennych wybodaeth drylwyr o GNU/Linux, felly peidiwch â dewis hwn os\n"
" nad ydych yn gwybod beth rydych yn ei wneud."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3505,7 +3652,7 @@ msgstr ""
" cynnal.\n"
" "
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3534,7 +3681,7 @@ msgstr ""
"Sylwer bod modd gosod myw nag un iaith. Unwaith i chi ddewis unrhyw \n"
"leoleiddiad ychwanegol cliciwch y botwm \"Iawn\" i barhau."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3561,7 +3708,7 @@ msgstr ""
"fod y gosodiadau'n gweithio. Os nad yw'r llygoden yn gweithio'n iawn pwyswch "
"ar y bylchwr neu [Return] i \"Dileu\" a dewis eto."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3570,23 +3717,24 @@ msgstr ""
"yn\n"
"\"ttyS0\" yn GNU/Linux, e.e."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
+#, fuzzy
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3651,7 +3799,8 @@ msgstr ""
"weinyddu,\n"
" byddwch angen dewis \"Ffeiliau lleol\" ar gyfer dilysu."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
+#, fuzzy
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3673,7 +3822,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3681,7 +3830,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3760,7 +3909,7 @@ msgstr ""
"\"Ychwanegu\" i greu enw newydd; a \"Gorffen\" i fynd ymlaen i'r cam nesaf "
"o'r gosod."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3785,7 +3934,7 @@ msgstr ""
"disg\n"
" cychwyn ar gyfer y systemau gweithredu rheini!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3798,29 +3947,29 @@ msgstr ""
"Os nad ydych yn gwybod yn union beth rydych yn ei wneud, dewiswch \"First\n"
"sector of drive (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
+#, fuzzy
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3856,7 +4005,8 @@ msgstr ""
"gyffredinol, mae CUPS yn well am ei fod yn syml ac yn well wrth weithio ar "
"draws rhwydwaith."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
+#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3881,7 +4031,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"Mae DrakX yn canfod unrhyw ddyfais IDE sydd ar eich cyfrifiadur. Bydd yn\n"
@@ -3916,7 +4066,8 @@ msgstr ""
"(os\n"
" ydych wedi defnyddio'r caledwedd gyda Windows ar eich system)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
+#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3926,9 +4077,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3940,7 +4090,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -4018,7 +4168,8 @@ msgstr ""
"chi\n"
" bwyso ar [Tab] i weld dewisiadau'r cychwyn."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
+#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4045,9 +4196,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4090,10 +4240,11 @@ msgstr ""
" * System Weithredu Rhagosodedig: mae modd dewis pa system weithredu fydd\n"
"yn cychwyn drwy ragosodiad pan ddaw'r Open Firmware i ben."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
+#, fuzzy
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4101,12 +4252,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4156,7 +4306,7 @@ msgstr ""
" yn cael ei ddangos yma. Mae modd clicio ar y botwm i newid y paramedrau\n"
" cysylltiedig."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4166,7 +4316,7 @@ msgstr ""
"Mandrake Linux newydd. Byddwch ofalus, bydd yr holl ddata sydd arno'n\n"
"cael ei ddileu ac ni fydd modd ei adfer!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4184,7 +4334,7 @@ msgstr ""
"Cliciwch \" Diddymu\" i ddiddymu'r weithred hon heb golli unrhyw ddata a "
"rhaniadau sy'n bresennol ar y ddisg galed."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4195,12 +4345,12 @@ msgstr ""
"(mae ffeil %s ar goll), mae hyn yn golygu, fel arfer, nad yw eich disg "
"cychwyn yn cydweddu gyda'r cyfrwng Gosod (crëwch ddisg cychwyn meddal newydd)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Rhaid fformatio %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4223,20 +4373,20 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb parth NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4244,7 +4394,7 @@ msgstr ""
"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Gwall wrth ddarllen ffeil %s"
@@ -4274,7 +4424,7 @@ msgstr "Rhaid cael rhaniad cyfnewid"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4282,59 +4432,59 @@ msgstr ""
"\n"
"Parhau beth bynnag?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Rhaid bod gennych raniad FAT wedi ei osod yn /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Defnyddiwch le gwag"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nid oes digon o le i ddynodi rhaniadau newydd"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Defnyddiwch y rhaniadau cyfredol"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nid oes rhaniad cyfredol i'w ddefnyddio"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Defnyddiwch rhaniad Windows ar gyfer cylch-ol"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pa raniad hoffech chi ei ddefnyddio ar gyfer Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Dewiswch y maint"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Maint rhaniad gwraidd mewn MB :"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Maint rhaniad cyfnewid mewn MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Defnyddiwch y lle gwag ar raniad Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Pa raniad ydych chi am newid ei faint?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Mesur ffiniau system ffeilio Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4343,11 +4493,14 @@ msgstr ""
"Nid yw'r newidiwr maint FAT yn medru trin eich rhaniad.\n"
"digwyddodd y gwall canlynol: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "Mae eich rhaniad Windows yn rhy ysgyriog, rhedwch \"defrag\" yn gyntaf"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4367,54 +4520,54 @@ msgstr ""
"Dylech hefyd wneud copi wrth gefn o'ch data.Pan rydych yn siwr, cliciwch "
"Iawn."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Pa faint ydych am ei gadw ar gyfer Windows ar"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "rhaniad %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Methodd newid maint FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nid oes rhaniadau FAT i newid eu maint neu i'w defnyddio fel cylch-ôl (neu "
"nad oes digon o le ar ôl)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Dileu'r ddisg gyfan"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Tynnu Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Mae gennych fwy nag un disg caled, ar ba un ydych am osod linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Bydd pob rhaniad a'u data yn cael ei ddileu ar yrrwr %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Rhannu disg unigol"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Defnyddiwch fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4423,11 +4576,11 @@ msgstr ""
"Medrwch rhannu %s\n"
"Wedi gorffen, peidiwch anghofio cadw gyda 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Does gennych ddim digon o le rhydd ar eich rhaniad Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Methu canfod lle ar gyfer gosod"
@@ -4435,16 +4588,16 @@ msgstr "Methu canfod lle ar gyfer gosod"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Daeth dewin Rhannu DrakX o hyd i'r atebion canlynol:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Methodd rhannu: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Cychwyn y rhwydwaith"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Cau'r rhwydwaith"
@@ -4456,12 +4609,12 @@ msgstr ""
"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
"Mae'n beryglus i barhau."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pwynt gosod dyblyg %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4473,12 +4626,12 @@ msgstr ""
"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Does dim gyrrwr disg meddal ar gael"
@@ -4488,9 +4641,9 @@ msgstr "Does dim gyrrwr disg meddal ar gael"
msgid "Entering step `%s'\n"
msgstr "Cychwyn cam '%s\"\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4500,198 +4653,152 @@ msgstr ""
"testunol. I wneud hynny, gwasgwch F1 wrth gychwyn ar y CD-ROM ac yna rhoi "
"'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Gosod Dosbarth"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Dewiswch un o'r dosbarthiadau canlynol o osodiad::"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Cyfanswm maint y grwpiau rydych wedi eu dewis yw tua %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Os hoffech chi osod llai na'r maint hwn\n"
-"dewiswch canran y pecynnau i'w gosod.\n"
-"\n"
-"Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-"isel; tra bydd canran o 100% yn llwytho'r holl becynnau."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Dim ond ar gyfer %d%% o'r pecynnau hyn mae gennych le.\n"
-"\n"
-"Os hoffech osod llai na hyn,\n"
-"dewiswch canran y pecynnau rydych am eu gosod.\n"
-"Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-"isel; tra bydd canran o %d%% yn llwytho'r gymaint o becynnau ag\n"
-"y mae modd."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Dydd modd eu dewis yn fwy penodol yn y cam nesaf."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Cyfanswm y pecynnau i'w gosod"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Dewis y Grwp Pecyn"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Dewis pecynnau unigol."
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Cyfanswm maint: %d/%d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pecyn gwallus"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Enw: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Fersiwn: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Maint: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Pwysigrwydd: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ol i'w osod"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Rhaid i'r pecyn gael ei uwchraddio\n"
"Ydych chi'n siwr eich bod am ei ddad-ddewis?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Dangoswch y pecynnau dewis awtomatig"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Gosodiad"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "LLwytho/Cadw ar ddisg meddal"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Diweddaru'r dewis pecynnau"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Gosodiad lleiaf"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Gosod"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Amcangyfrif"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Amser yn weddill"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Arhoswch, paratoi'r gosodiad"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pecyn"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Gosod pecynnau %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Derbyn"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Gwrthod"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4705,17 +4812,17 @@ msgstr ""
"Rhowch yr CD-ROM sydd wedi ei labeli \"%s\" yn eich gyrrwr a chlicio Iawn\n"
"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Mynd yn ein blaen beth bynnag?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Roedd gwall wrth drefnu pecynnau"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Digwyddodd gwall wrth osod pecyn"
@@ -4789,11 +4896,11 @@ msgstr "Digwyddodd gwall"
msgid "Do you really want to leave the installation?"
msgstr "Ydych chi wir eisiau gadael y gosodiad?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Cytundeb trwyddedu"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4808,7 +4915,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -5026,109 +5133,113 @@ msgstr ""
"Barn, Paris - Ffrainc. Am unrhyw gwestiwn ynghylch yddogfen hon cysylltwch â "
"MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Allweddell"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Dewiswch gynllun eich alweddell"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Dyma restr lawn o'r allweddellau ar gael"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Pa ddosbarth o osodiad ydych chi ei eisiau?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Gosod/Diweddaru"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Ydi hwn yn osodiad neu diweddariad?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Argymhellwyd"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Arbennigwr"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Diweddaru"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Diweddaru'r pecynnau'n unig"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porth Llygoden"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Efelychiad botymau"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Efelychiad Botwm 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Efelychiad Botwm 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Ffurfweddu cardiau PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Ffurfweddu IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "dim rhaniadau ar gael"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Sganio rhaniadau i ganfod pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Dewiswch y pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5140,7 +5251,7 @@ msgstr ""
"\n"
"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5148,7 +5259,7 @@ msgstr ""
"Methodd DrakX a darllen y tabl rhaniad yn gywir.\n"
"Mae'n beryglus parhau!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5156,76 +5267,79 @@ msgstr ""
"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Ni chanfyddwyd rhaniad gwraidd i wneud diweddariad"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rhaniad Gwraidd"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Beth yw'r rhaniad gwraidd (/) ar eich system?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Gwirio blociau gwallus?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Yn fformatio rhaniadau"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creu a fformatio ffeil %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Dim digon o le cyfnewid i gyflawni'r gosodiad, ychwanegwch rhagor"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Chwilio am y pecynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Chwilio am y pecynnau sydd ar gael"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Canfod pecynnau i'w uwchraddio"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Nid oes gan eich system ddigon o le ar ôl ar gyfer gosodiad neu uwchraddiad "
"(%d> %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Cwblhawyd (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Lleiafswm (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Argymhellwyd (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5233,35 +5347,35 @@ msgstr ""
"Dewiswch llwytho neu ddewis cadw pecyn ar ddisg meddal.\n"
"Mae'r fformat yr un ar ddisgiau meddal wedi eu cynhyrchu drwy auto_install."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Llwytho o o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Llwytho o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Dewis pecynnau"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Cadw ar ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Mae'r maint ddewiswyd yn fwy na'r lle ar gael"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Math o osodiad"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5269,19 +5383,19 @@ msgstr ""
"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Gyda X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Gyda dogfennaethelfennol (argymhellir!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5291,16 +5405,16 @@ msgstr ""
"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom wedi ei labelu \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Paratoi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5309,23 +5423,23 @@ msgstr ""
"Gosod pecyn %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Ffurfweddiad ôl osod"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Rhowch y disg meddal Diweddaru Modiwlau yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5398,13 +5512,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5416,147 +5532,177 @@ msgstr ""
"\n"
"Ydych chi am osod y diweddariadau?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Cysylltu â'safle Mandrake Linux i estyn rhestr o'r drychau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Cysylltu â'r drych i estyn y rhestr o becynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Cloc caledwedd wedi ei osod i GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Gweinydd NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Gwasanaethwr CUPS pell"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nid oes argraffydd"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "A oes gennych gerdyn sain ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Rhedwch \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Crynodeb"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Llygoden"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Cylchfa amser"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Argraffydd"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Cerdyn ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Cerdyn Teledu"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Ffeiliau lleol"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Gosod cyfrinair gwraidd"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Dim cyfrinair"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilysu"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Sail dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Gwasanaethwr LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Parth NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Gwasanaethwr NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Dilysu LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Estyn Ffontiau Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Gweinydd NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5587,19 +5733,19 @@ msgstr ""
"gyrrwr\n"
" cyntaf a chliciwch \"Iawn\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Gyrrwr disg meddal cyntaf"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Ail ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Hepgor"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5624,7 +5770,7 @@ msgstr ""
"greu disg cychwyn ar gyfer eich system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5638,28 +5784,28 @@ msgstr ""
"bydd creu disg cychwyn ar ddisg meddal 1.44Mb'n debygol o fethu,\n"
"oherwydd mae XFS yn gofyn am yrrwr mawr iawn)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Nid oes gyrrwr disg meddal ar gael"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Dewiswch y gyrrwr disg meddal i'w ddefnyddio i greu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Rhowch ddisg meddal yn %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Creu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Paratoi llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5673,11 +5819,11 @@ msgstr ""
"rhaid defnyddio BootX i gychwyn\n"
"eich peiriant."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Ydych chi eisiau defnyddio aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5685,15 +5831,15 @@ msgstr ""
"Gwall gosod aboot, \n"
"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Gosod llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5711,18 +5857,17 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5732,7 +5877,8 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gorffen?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5743,7 +5889,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5757,17 +5903,22 @@ msgstr ""
"Linux, cysylltwch a'r atodiad, sydd i'w gael yn:\n"
"\n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
"yr Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5782,15 +5933,15 @@ msgstr ""
"\n"
"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Awtomeiddwyd"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ail chwarae"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Cadw'r dewis becynnau"
@@ -5817,44 +5968,24 @@ msgstr "consolehelper ar goll"
msgid "Choose a file"
msgstr "Dewis ffeil"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Uwch"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Elfennol"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Arhoswch"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Gwybodaeth"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Estyn y goeden"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Cau'r goeden"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Dewis gwael, ceisiwch eto\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Eich dewis? (rhagosodedig %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5863,31 +5994,35 @@ msgstr ""
"Gwybodaeth i'w gyflawyno:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Eich dewis? (0/1, rhagosodedig %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Botwm '%s'.%s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Ydych chi eisiau clicio ar y botwm hwn?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Eich dewis? (rhagosodedig `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Mae yna lawer i ddewis o (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5897,7 +6032,7 @@ msgstr ""
"neu wasgwch Enter i barhau.\n"
"Eich dewis?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5906,327 +6041,327 @@ msgstr ""
"=>Hysbysiad, mae label wedi newid:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Ail-gyflwyno"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Almaeneg"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spaenaidd"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Ffinaidd"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ffrengig"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norwyaidd"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pwylaidd"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rwsiaidd"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Swedaidd"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Bysellfwrdd DG"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Bysellfwrdd UDA"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albaniaidd"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenaidd (hen)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenaidd (teipiadur)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenaidd (ffonetig)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjan (lladin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgaidd"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bwlgaraidd (ffonetig)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bwlgaraidd (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilaidd (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusaidd"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Swisaidd (gosodiad Almaenig)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Swisaidd (gosodiad Ffrengig)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Almaenaidd (dim bysellau marw)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danaidd"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (UDA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwyaidd)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedaidd)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonaidd"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgaidd (gosodiad \"Rwsiaidd\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgaidd (gosodiad \"Lladinaidd\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Groegaidd"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hwngaraidd"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croataidd"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelaidd"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelaidd (Ffonetig)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranaidd"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Eislandaidd"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Eidalaidd"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Siapaëaidd 106 bysell"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Bysellfwrdd Coreaidd"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Lladin America"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuenaidd AZERTY (hen)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuenaidd AZERTY (newydd)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuenaidd \"rhes rhif\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuenaidd \"ffonetig\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latfiaidd"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonaidd"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Isalmaenaidd"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portiwgalaidd"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romanaidd (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romanaidd (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rwsiaidd (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slfenaidd"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slofacaidd (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovacaidd (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbaidd (cyrilig)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Bysellfwrdd Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Bysellfwrdd Tajig"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Twrcaidd (model traddodiadol \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Twrcaidd (model modern \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Wcranaidd"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Bysellfwrdd UDA (rhyngwladol)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Fietnamëaidd \"rhes rhifol\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Iwgoslafaidd (lladin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Bysell Alt dde"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Y ddwy fysell Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Bysellau Control a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Bysell CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Bysellau Ctrl ac Alt gyda'i gilydd"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Bysellau Alt a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Bysell \"Dewislen\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Bysell \"Windows\" chwith"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Bysell \"Windows\" de"
@@ -6239,7 +6374,31 @@ msgstr "Gosodiadau cylch %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Rhif ffôn"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Fformatio rhaniadau"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6282,10 +6441,6 @@ msgstr "1 botwm"
msgid "Generic 2 Button Mouse"
msgstr "Llygoden 2 Fotwm Generig"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generig"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Olwyn"
@@ -6350,38 +6505,54 @@ msgstr "dim"
msgid "No mouse"
msgstr "Dim llygoden"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Profwch y llygoden"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "I ysgogi'r llygoden,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "SYMUDWCH YR OLWYN!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Gorffen"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Nesaf ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Cynt"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ydi hyn yn gywir?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Gwybodaeth"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Estyn y goeden"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Cau'r goeden"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Cysylltu â'r We"
@@ -6428,7 +6599,7 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system.\n"
"Nid wyf yn medru gosod y math yma o gysylltiad."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Dewiswch rhag wyneb y rhwydwaith"
@@ -6442,7 +6613,7 @@ msgstr ""
msgid "no network card found"
msgstr "heb ganfod cerdyn rhwydwaith"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Ffurfweddu'r rhwydwaith"
@@ -6458,15 +6629,15 @@ msgstr ""
"yr enw gwesteiwr i weithio. Dylai eich enw gwesteiwr\n"
"fod yn enw cymhwysol llawn megis \"fymlwch.fynesg.fyco.com\""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Enw gwesteiwr"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Dewin Ffurfweddu'r Rhwydwaith"
@@ -6522,7 +6693,7 @@ msgstr "Ffurfweddiad ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Dewiswch eich darparwr.\n"
"Os nad yw ar eich rhestr, dewiswch Heb ei Restri"
@@ -6541,14 +6712,14 @@ msgstr "Protocol ar gyfer gweddill y byd"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocol ar gyfer gweddill y byd\n"
" dim D-Channel (llinell les)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Pa brotocol ydych chi eisiau ei ddefnyddio?"
#: ../../network/isdn.pm_.c:199
@@ -6572,7 +6743,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Os oes gennych gerdyn, dylai'r gwerthoedd ar y sgrin nesaf fod yn gywir.\n"
@@ -6588,13 +6760,13 @@ msgid "Continue"
msgstr "Parhau"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Pa un yw eich cerdyn IDSN?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Rwyf wedi canfod cerdyn IDSN, ond nid wyf yn gwybod pa fath. Dewiswch un "
"cerdyn PCI ar y sgrin nesaf."
@@ -6611,47 +6783,47 @@ msgstr "Dewiswch ba borth cyfresol mae eich modem wedi cysylltu iddo."
msgid "Dialup options"
msgstr "Dewisiadau cyswllt ffôn"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Enw'r cysylltiad"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Rhif ffôn"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Dynodiad Mewngofnodi"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Seiliedig ar sgript"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Seiliedig ar derfynnell"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Enw parth"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Gwasanaethwr DNS Cyntaf (dewisol)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Ail Wasanaethwr DNS (dewisol)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6659,7 +6831,7 @@ msgstr ""
"\n"
"Medrwch ddatgysylltu neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6667,11 +6839,11 @@ msgstr ""
"\n"
"Medrwch ailffurfweddu eich cysylltiad"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Rydych wedi eich cysylltu â'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6679,32 +6851,32 @@ msgstr ""
"\n"
"Medrwch gysylltu â'r Rhyngrwyd neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Nid ydych wedi eich cysylltu â'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Cysylltu"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Dadgysylltu"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Ffurfweddu'r gysylltiad"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Cysylltiad â'r rhyngrwyd a'i ffurfweddiad "
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Rydym am ffurfweddu cysylltiad %s"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6723,12 +6895,12 @@ msgstr ""
"\n"
"Pwyswch Iawn i barhau."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ffurfweddiad y Rhwydwaith"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6740,9 +6912,9 @@ msgstr ""
"Cliciwch Iawn i gadw eich ffurfweddiad, neu ddileu i ail ffurfweddi eich "
"cysylltiad Rhyngrwyd a Rhwydwaith.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6752,66 +6924,72 @@ msgstr ""
"Rydym ar fin ffurfweddi eich cysylltiad rhyngrwyd/rhwydwaith.\n"
"Os nad ydych am ddefnyddio awto ganfod, dad-diciwch y blwch dewis.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Dewiswch broffil i'w ffurfweddu"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Defnyddio awto ganfod"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modd Uwch"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Canfod dyfeisiadau..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Cysylltiad modem arferol"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "canfyddwyd ar borth %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Cysylltiad ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "canfyddwyd %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Cysylltiad ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "canfyddwyd ar rhyngwyneb %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "canfyddwyd cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "cysylltiad LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "cerdyn ethernet wedi ei ganfod"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Dewiiwch y math o gysylltiad rydych am ei ffurfweddu"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6821,23 +6999,23 @@ msgstr ""
"Dewiswch ba un rydych am ei ddefnyddio.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Cysylltiad â'r Rhyngrwyd"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Ydych chi eisiau agor y cysylltiad wrth gychwyn y cyfrifiadur?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Ffurfweddiad y rhwydwaith"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Rhaid ail gychwyn y rhwydwaith"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6848,7 +7026,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6858,7 +7036,7 @@ msgstr ""
"Bydd y ffurfweddiad yn cael ei osod ar eich system\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6867,19 +7045,19 @@ msgstr ""
"amgylchedd X i osgoi unrhyw anawsterau'n perthyn i enwau gwesteiwr.\n"
"."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Digwyddod anhawsterau yn ystod y ffurfweddiad.\n"
"Profwch eich cysylltiad drwy net_monitor neu mcc. Os nad yw eich cysylltiad "
"yn gweithio, efallai y byddwch eisiau ailgychwyn y ffurfweddiad"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6889,7 +7067,7 @@ msgstr ""
"Derbyniwch y cynnig i gadw'r ddyfais wedi ei ffurfweddi.\n"
"Bydd newid y meysydd islaw'n newid y ffurfweddiad."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6899,38 +7077,43 @@ msgstr ""
"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
"(e.e.1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Ffurfweddu dyfais rhwydwaith %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (gyrrwr %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Cyfeiriad IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP awtomatig"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Cychwyn y peiriant"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6942,64 +7125,64 @@ msgstr ""
"megis \"fymlwch.fynesg.fyngho.com\".\n"
"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Gwasanaethwr DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Mynedfa (e.e. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dyfais mynedfa"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Ffurfweddiad dirprwyon"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Dirprwy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Dirprwy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Dylai dirprwyon fod yn gyfanrif!"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Dylai rhif porth fod yn ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Ffurfweddiad rhyngrwyd"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Hoffech chi gysylltu â'r Rhyngrwyd nawr?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Profi eich cysylltiad..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Mae'r system wedi cysylltu â'r Rhyngrwyd."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Am resymau diogelwch, bydd yn cael ei ddatgysylltu."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7007,111 +7190,116 @@ msgstr ""
"Nid yw'n ymddangos i'ch system gysylltu â'r rhyngrwyd.\n"
"Ailffurfweddwch eich cysylltiad."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Ffurfweddiad y Cysylltiad"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Llanwch neu diciwch y maes islaw"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ y cerdyn"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Cof Cerdyn (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO'r Cerdyn"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_O y cerdyn"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 y cerdyn"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Eich rhif ffôn personol"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Enw darparwr (eng. darparwr.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Rhif ffôn y darparwr"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns 1 y darparwr (dewisol)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns 2 y darparwr (dewisol)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Dewiswch eich gwlad"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modd deialu"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Cyflymder y cysylltiad"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Oediad yn y cysylltiad (mewn eiliadau)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Mewngofnod Cyfrif (enw defnyddiwr)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Cyfrinair y Cyfrif"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "maethodd y gosodiad"
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Nid yw'r rhainad estynedig yncael ei gynnal ay y platfform hwn"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Mae gennych dwll yn nhabl eich rhaniad ond nid wyf yn medru ei ddefnyddio\n"
"Yr unig ateb yw i symud eich rhaniadau cynradd fel bo'r twll nesaf at y "
"rhaniadau estynedig "
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Methodd adfer o ffeil %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Ffeil wrth gefn gwallus"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Gwall wrth ysgrifennu i ffeil %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7121,186 +7309,186 @@ msgstr ""
"Mae prawf i fesur ei gyfanrwydd wedi methu. \n"
"Nid oes gwerth ysgrifennu i'r ddisg"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "rhaid cael"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "pwysig"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "hyfryd iawn"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "hyfryd"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "efallai"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Argraffydd lleol"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Argraffydd pell"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Argraffydd ar wasanaethwr CUPS pell"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Argraffydd ar wasanaethwr lpd pell"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Argraffydd rhwydwaith (TCP/Soced)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Argraffydd ar wasanaethwr NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Rhowch URI dyfais argraffydd"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Peipio'r gwaith i orchymyn"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Model anhysbys"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Argraffyddion Lleol"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Argraffyddion Pell"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", argraffydd USB \\/\"%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dyfais amlbwrpas ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", dyfais amlbwrpas ar USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", dyfais amlbwrpas ar HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ",dyfais amlbwrpas"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", argraffu i %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr LPD \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "ar wasanaethwr Windows \"%s\", rhannu \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr Novell \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", defnyddio gorchymyn %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Argraffydd crai (dim gyrrwr)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(ar %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(ar y peiriant hwn)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Ar wasanaethwr CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr "(Rhagosodedig)"
@@ -7322,11 +7510,11 @@ msgstr ""
"Nid oes angen ffurfweddu argraffyddion ar wasanaethwyr CUPS pell: byddant yn "
"cael eu canfod yn awtomatig."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Furfweddiad CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Enwch wasanaethwr CUPS"
@@ -7370,7 +7558,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Dylai cyfeiriad IP edrych fel 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Dylai rhif porth fod yn gyfanrif!"
@@ -7378,7 +7566,7 @@ msgstr "Dylai rhif porth fod yn gyfanrif!"
msgid "CUPS server IP"
msgstr "IP gwasanaethwr CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Porth"
@@ -7386,20 +7574,12 @@ msgstr "Porth"
msgid "Automatic CUPS configuration"
msgstr "Furfweddiad CUPS Awtomatig"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Canfod dyfeisiadau..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Profwch y pyrth"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Ychwanegu argraffydd newydd"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7422,13 +7602,13 @@ msgstr ""
"yn rhoi mynediad i'r holl yrwyr argraffyddion sydd ar gael, dewisiadau "
"gyrwyr a mathau o gysylltiadau argraffyddion."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Argraffydd Lleol"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7459,11 +7639,11 @@ msgstr ""
"awto ganfod. Defnyddiwch \"Modd Arbenigwr\" printdrake pan fyddwch am osod "
"argraffydd pell os nad yw printerdrake yn ei restri'n awtomatig."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Awto ganfod argraffyddion"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7483,11 +7663,11 @@ msgstr ""
"gosodiadau dewis rhagosodedig (mewnflwch papur, ansawdd y printiad,...0, "
"dewiswch \"Argraffydd\" yn adran \"Caledwedd\" Canolfan Rheoli Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Awto ganfod Argraffyddion"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7502,33 +7682,37 @@ msgstr ""
"\n"
"Ydych eisiau i'ch argraffydd gael ei awto ganfod?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Defnyddio awto ganfod"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Gosod argraffydd gyda llaw"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Profwch y pyrth"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Canfyddwyd %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Argraffydd ar borth paralel \\/\"%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Argraffydd USB \\/\"%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7540,11 +7724,11 @@ msgstr ""
"dev/,...., cyfatebol i LPT1:, LPT2,..., argraffydd USB 1af: /dev/usb/lp0, "
"ail argraffydd USB: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Rhaid cynnig enw dyfais neu ffeil!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7552,7 +7736,7 @@ msgstr ""
"Heb ganfood argraffydd lleol!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7560,7 +7744,7 @@ msgstr ""
"Dim ond ar ôl cwblhau'r gosodiad mae modd gosod argraffyddion rhwydwaith. "
"Dewiswch \"Caledwedd\" ac yna \"Argraffydd\" yng Nghanolfan Rheoli Mandrake"
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7568,7 +7752,7 @@ msgstr ""
"I osod argraffyddion rhwydwaith, cliciwch \"Diddymu\", trowch i \"Modd "
"Arbenigwr\", clicio \"Ychwanegu argraffydd newydd\" eto."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7576,7 +7760,7 @@ msgstr ""
"Cafodd yr argraffydd canlynol ei awto ganfod, os nad hwn yw'r un rydych am "
"ei ffurfweddu, rhowch enw dyfais/enw ffeil ar y llinell mewnbwn."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7585,7 +7769,7 @@ msgstr ""
"argraffydd rydych am ei osod neu rhowch enw dyfais/ffeil yn y llinell "
"mewnbwn."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7597,7 +7781,7 @@ msgstr ""
"byddai'n well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7610,7 +7794,7 @@ msgstr ""
"well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7618,11 +7802,11 @@ msgstr ""
"Dewiswch y porth y mae eich argraffydd wedi cysylltu iddo neurhowch enw "
"dyfais/ffeil ar y ninell mewnbwn"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Dewiswch y porth mae'r argraffydd wedi cysylltu iddo."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7630,52 +7814,65 @@ msgstr ""
" (Pyrth paralel: /dev/lp0, /dev/lp1, ..., yn cyfateb i LPT1:, LPT2:, ..., "
"argraffydd USB cyntaf: /dev/usb/lp0, ail argraffydd USB : /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Rhaid dewis/rhoi argraffydd/dyfais!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Ffurfweddiad gyda llaw"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"A yw eich argraffydd yn ddyfais amlbwrpas gan HP (OfficeJet, PSC, "
"PhotoSmart LaserJet 1100/1200/1220/3200/3300 gyda sganiwr)"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Gosod pecynnau HPOJ"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Gwirio a ffurfweddu dyfais HPOJ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Gosod pecynnau SANE"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Gosod pecynnau..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Sganio eich dyfais HP aml bwrpas"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Sganio eich dyfais HP aml bwrpas"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Gwneud porth argraffydd ar gael ar gyfer CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Darllen cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Dewisiadau Argraffydd lpd Pell"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7683,27 +7880,27 @@ msgstr ""
"I ddefnyddio argraffydd lpd pell, rhaid darparu enw gwesteiwr gwasanaethwr "
"yr argraffydd ac enw'r argraffydd ar y gwasanaethwr hwnnw."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Enw gwesteiwr pell"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Enw'r argraffydd pell"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Mae enw'r gwesteiwr pell ar goll!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Mae enw'r argraffydd pell ar goll!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dewisiadau Argraffydd SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7716,35 +7913,35 @@ msgstr ""
"rydych am gael mynediad iddo ac unrhyw enw defnyddiwr, cyfrinair a "
"gwybodaeth am grwp gwaith perthynol."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Gwasanaethwr gwesteiwr SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP Gwasanaethwr SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Rhannu enw"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grwp gwaith"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Rhaid rhoi un ai enw'r gwasanaethwr neu IP'r gwasanaethwr!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Mae enw rhannu Samba ar goll!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7768,7 +7965,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7777,7 +7974,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7785,11 +7982,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Dewisiadau Argraffydd NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7801,27 +7998,27 @@ msgstr ""
"â'r rhes waith argraffu am yr argraffydd rydych am gael mynediad iddo ac "
"unrhyw enw defnyddiwr a chyfrinair perthnasol."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Gwasanaethwr Argraffydd"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Enw Rhes Argraffu"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Mae enw gwasanaethwr NCP ar goll!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Mae enw rhes NCP ar goll"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Dewisiadau Argraffydd TCP/Soced"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7833,19 +8030,19 @@ msgstr ""
"porth, fel rheol, yw 9100, gall amrywio ar wasanaethwyr eraill. Gweler "
"llawlyfr eich caledwedd"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Enw'gwesteiwr yr argraffydd"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Mae enw'r gwesteiwr argraffu ar goll!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI Dyfais Argraffu"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7855,11 +8052,11 @@ msgstr ""
"gyflawni manylyn un ai CUPS neu Foomatic. Sylwer nad yw pob math o URI cyn "
"cael eu cynnal gan bob sbwlydd ."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Rhaid cynnig URI dilys!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7867,27 +8064,23 @@ msgstr ""
"Mae pob argraffydd angen enw (e.e. \"argraffydd\". Nid oes angen llanw "
"meysydd Disgrifiad a Lleoliad. Lle ar gyfer sylwadau'r defnyddiwr sydd yma."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Enw'r argraffydd"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Disgrifiad"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lleoliad"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Paratoi cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model eich argraffydd"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7913,24 +8106,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Mae'r model yn gywir"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Dewiswch y model gyda llaw"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Dewis model yr argraffydd"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Pa fath o argraffydd sydd gennych?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7944,7 +8137,7 @@ msgstr ""
"Chwiliwch am y model cywir pan fo'r cyrchwr yn sefyll ar y model anghywir "
"neu ar \"Argraffydd bras\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7952,11 +8145,11 @@ msgstr ""
"Nid yw eich argraffydd wedi ei rhestri, dewiswch un cyfatebol (gw. llawlyfr "
"eich argraffydd) neu un tebyg."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Ffurfweddiad OKI winprinter "
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7973,11 +8166,11 @@ msgstr ""
"brawf. Os na wnewch chi hynny, ni fydd yr argraffydd yn gweithio. Bydd eich "
"gosodiad ynghylch ymath o gysylltiad yn cael ei anwybyddu gan y gyrrwr."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Ffurfweddiad inkjet Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7988,7 +8181,7 @@ msgstr ""
"argraffyddion lleol, yn unig. Cysylltwch eich argraffydd i borth lleol neu "
"ffurfweddwch ef i'r peiriant mae'n gysylltiedig ag ef."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8010,7 +8203,7 @@ msgstr ""
"dudalennau'r alinio'r pen argraffu gyda \"lexmarkmaintain\" a newid "
"gosodiadau aliniad y pen gyda'r rhaglen."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8027,22 +8220,22 @@ msgstr ""
"argraffiad ansawdd/cydraniad uchel iawn yn medru arafu'r argraffu'n "
"sylweddol.."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Rhaid i ddewis %s fod yn gyfanrif"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Rhaid i ddewis %s fod yn rhif!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Dewis %s allan o amrediad!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8051,11 +8244,11 @@ msgstr ""
"Ydych chi am osod argraffydd (\"%s\")\n"
"fel yr argraffydd rhagosodedig?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Tudalennau prawf"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8067,39 +8260,39 @@ msgstr ""
"ei argraffu ac ar argraffydd laser heb lawer o gof mae'n bosibl na ddaw o "
"gwbl. Yn y rhan fwyaf o achosion, mae'r prawf tudalen safonol yn ddigonol."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Dim tudalennau prawf"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Argraffu"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Tudalen prawf safonnol"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Prawf tudalen arall (Llythyr)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Prawf tudalen arall (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Tudalen prawf llun"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Peidiwch argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Argraffu tudalen(nau) prawf..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8114,7 +8307,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8122,15 +8315,15 @@ msgstr ""
"Mae tudalen(nau) prawf wedi eu hanfon at yr argraffydd.\n"
"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "A weithiodd hwnnw'n iawn?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Argraffydd bras"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8143,7 +8336,7 @@ msgstr ""
"\"xpp <file>\" neu \"kprinter <file>\". Mae'r offeryn graffigol yn caniatáu "
"chi ddefnyddio'r argraffydd ac i newid gosodiadau dewis yn hawdd.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8153,8 +8346,8 @@ msgstr ""
"deialogau argraffu mewn nifer o raglenni, ond yma nid ydynt yn darparu'r "
"enw ffeil am fod y ffeil i'r argraffydd yn cael ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8167,11 +8360,11 @@ msgstr ""
"tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r llinell "
"gorchymyn, e.e \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Er mwyn cael gwybodaeth am y dewisiadau sydd ar gael ar gyfer yr argraffydd "
@@ -8179,7 +8372,7 @@ msgstr ""
"dewis argraffu\"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8188,7 +8381,7 @@ msgstr ""
"presennol:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8197,8 +8390,8 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch "
"orchymyn \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8208,7 +8401,7 @@ msgstr ""
"nifer o raglenni. Ond peidiwch â rhoi'r enw ffeil yma oherwydd bod y ffeil "
"i'w argraffu wedi ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8216,7 +8409,7 @@ msgstr ""
"I edrych ar y rhestr o'r dewisiadau sydd ar gael ar gyfer yr argraffydd "
"cyfredol cliciwch ar fotwm \"Rhestr dewisiadau argraffu\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8225,7 +8418,7 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch y "
"gorchymyn \"%s <file>\" or \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8242,7 +8435,7 @@ msgstr ""
"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8255,38 +8448,49 @@ msgstr ""
"ar gyfer tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r "
"llinell gorchymyn, e.e \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Cau"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Argraffu/Sganio ar \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Argraffu ar argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Cau"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Rhestr ddewis argraffu"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8300,38 +8504,30 @@ msgstr ""
"\n"
"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
-"sganio. Medrwch sganio o'r llinell orchymyn gyda \"ptal-hp %s scan ...\".. "
-"Nid yw sganio drwy gyfrwng rhyng wyneb graffigol na GIMP yn cael ei gynnal "
-"eto ar gyfer eich dyfais. Mae rhagor o wybodaeth i'w gael yn ffeil \"/usr/"
-"share/doc/hpoj-0.8/ptal-hp-scan.html\" ar eich system. Os oes gennych HP "
-"LaserJet 1100 neu 1200 yna dim ond os oes gennych y dewis sganio wedi ei "
-"osod mae modd sganio.\n"
-"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Darllen data argraffydd..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8346,7 +8542,7 @@ msgstr ""
"cael eu trosi, ond ni fydd y gwaith argraffu'n cael eu trosi.\n"
"Ni fydd yr holl waith argraffu'n cael eu trosi, am y rhesymau canlynol:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8354,18 +8550,18 @@ msgstr ""
"Nid yw CUPS yn cefnogi argraffyddion ar wasanaethwyr Novell neu "
"argraffyddion sy'n anfon data mewn gorchymyn ffurf -rhydd.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"Mae PDQ yn cynnal argraffyddion lleol, LDP pell, a Socket/TCP, yn unig.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "Nid yw LPD na LPRng yn cynnal argraffyddion IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8373,7 +8569,7 @@ msgstr ""
"Yn ogystal, nid oes modd trosglwyddo rhesi grewyd gan y rhaglen hon na "
"\"foomatic-configure\"."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8383,7 +8579,7 @@ msgstr ""
"Hefyd nid oes modd trosglwyddo argraffyddion ffurfweddwyd gyda ffeiliau PPD "
"ddarparwyd gan eu gwneuthurwyr na gyrrwyr CUPS brodorol."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8393,15 +8589,15 @@ msgstr ""
"Nodwch yr argraffydd rydych am ei drosglwddo a chliciwch\n"
"\"Trosglwyddo\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Peidio trosglwyddo argraffydd"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Trosglwyddo"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8412,12 +8608,12 @@ msgstr ""
"Cliciwch \"Trosglwyddo\" i ysgrifennu drosto.\n"
"Mae modd i chi osod enw newydd arno neu ei hepgor."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Dylai enw'r argraffydd gynnwys llythrennau, rhifau a'r tanlinellu, yn unig"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8426,16 +8622,16 @@ msgstr ""
"Mae argraffydd \"%s\" yn bodoli eisoes,\n"
"ydych chi wir eisiau ailysgrifennu ei ffurfweddiad?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Enw'r argraffydd newydd"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Trosglwyddo %s..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8445,29 +8641,29 @@ msgstr ""
"(\"%s\"). A ddylai fod yn argraffydd rhagosodedig y system argraffu newydd %"
"s ?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Adnewyddu data'r argraffydd..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Ffurfweddiad argraffydd pell"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Cychwyn y rhwydwaith..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Ffurfweddwch y rhwydwaith"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Nid yw swyddogaethau'r rhwydwaith wedi ei ffurfweddu"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8479,11 +8675,11 @@ msgstr ""
"fynd ymlaen heb ffurfweddiad rhwydwaith, ni bydd modd i chi ddefnyddio'r "
"argraffydd rydych yn ei ffurfweddu ar hyn o bryd. Beth ydych am ei wneud?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Mynd yn eich blaen heb ffurfweddu'r rhwydwaith"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8499,7 +8695,7 @@ msgstr ""
"argraffydd, eto gan ddefnyddio Canolfan Rheoli Mandrake, adran \"Caledwedd\"/"
"\"Argraffydd\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8509,24 +8705,24 @@ msgstr ""
"Gwiriwch eich ffurfweddiad a'ch caledwedd. Yna ceisiwch ail ffurfweddi eich "
"argraffydd."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Ailgychwyn system argraffu..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "uchel"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "Paranoia"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Gosod system argraffu yn lefel diogelwch %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8550,11 +8746,11 @@ msgstr ""
"\n"
"Ydych chi wir eisiau ffurfweddu argraffu ar y peiriant hwn?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Cychwyn y system argraffu wrth gychwyn y cyfrifiadur"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8576,63 +8772,63 @@ msgstr ""
"\n"
"Ydych chi am i'r cychwyn awtomatig gael ei droi ymlaen eto?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Gwirio'r meddalwedd sydd wedi ei osod..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Tynnu LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Tynnu LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Dewiswch Sbwlydd Argraffydd"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pa system argraffu(sbwlydd) ydych chi am ei ddefnyddio?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Ffurfweddu argraffydd \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Gosod Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Dewisiadau argraffydd"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Paratoi PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Ffurfweddi'u rhaglenni"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Hoffech chi ffurfweddu argraffu?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "System argraffu."
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8644,7 +8840,7 @@ msgstr ""
"amdano; neu i wneud argraffydd CUPS pell ar gael ar gyfer Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8653,29 +8849,33 @@ msgstr ""
"Mae'r argraffyddion canlynol wedi eu ffurfweddi. Cliciwch ar un i newid ei "
"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth amdano."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Adnewyddu rhestr argraffyddion (dangos pob argraffydd CUPS pell sydd ar gael)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Newidiwch y system argraffu"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Modd Arferol"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Gadael"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Ydych chi eisiau ffurfwedu argraffydd arall?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Newid ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8684,69 +8884,69 @@ msgstr ""
"Argraffydd %s\n"
"Beth ydych am ei newid ar yr argraffydd hwn?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Gwna!!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Math o gyswllt argraffydd"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Enw'r argraffydd, disgrifiad, lleoliad"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Gwneuthurwr yr argraffydd, model, gyrrwr"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Gwneuthurwr yr argraffydd, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Gosod yr argraffydd fel y rhagosodedig"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Ychwanegwchyr argraffydd hwn i Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Gwybod sut i ddefnyddio'r argraffydd"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Tynnu argraffydd"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Tynnu hen argraffydd \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Argraffydd rhagosodedig"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Mae argraffydd \"%s\" wedi ei osod fel yr argraffydd rhagosodedig."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
@@ -8754,17 +8954,17 @@ msgstr ""
"Mae argraffydd \"%s\" wedi ei ychwanegu'n llwyddiannus i Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
@@ -8772,19 +8972,19 @@ msgstr ""
"Cafodd argraffydd \"%s\" ei dynnu'n llwyddiannus o Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Methwyd â thynnu argraffydd \"%s\" o Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ydych chi wir eisiau tynnu argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Tynnu argraffydd \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8869,24 +9069,63 @@ msgstr "Nid yw'r cyfrineiriau'n cydweddi. Rhowch gynnig arall arni!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Methu ychwanegu rhaniad to_formatted_RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Methu ysgrifenu ffeil %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "methodd mkraid"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "methodd mkraid (efallai bod raidtools ar goll)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Rhaid defnyddio'r lefel hwn a gofal. Mae'n gwneud eich system yn haws ei\n"
+"ddefnyddio ond mae'n sensitif iawn: rhaid peidio ei ddefnyddio fel peiriant "
+"i'w\n"
+"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
+"bosibl.\n"
+"Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gwasanaethwr sy'n "
+"derbyn\n"
+"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
+"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Dewisiadau Uwch"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Dewisiadau"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Cychwynnwch system sain ALSA (Pensaernďaeth Sain Linux Uwch)"
@@ -8945,7 +9184,7 @@ msgstr ""
"Mae HardDrake yn rhedeg archwiliwr caledwedd, a gall yn ôl \n"
"eich dewis, ffurfweddu caledwedd newydd neu sydd wedi newid."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9021,7 +9260,7 @@ msgstr ""
"Mae Gwasanaethwr Rhith Linux yn cael ei ddefnyddio i adeiladu \n"
"gwasanaethwyr cyflym a chyraeddadwy."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9104,7 +9343,7 @@ msgstr ""
"sy'n\n"
"gwneud defnydd o fecanwaith RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9202,7 +9441,7 @@ msgstr "Rhyngrwyd"
msgid "File sharing"
msgstr "Rhannu Ffeiliau"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "System"
@@ -9330,6 +9569,7 @@ msgstr ""
"gcc GNU yn ogystal ag amgylcheddau datblygiadol Cod Agored gorau oll"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Canolfan Rheoli Mandrake"
@@ -9451,6 +9691,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9459,6 +9708,160 @@ msgstr ""
"Methu darllen eich tabl rhaniadau. Mae'n rhy lwgr i mi :[\n"
"Af ymlaen i flancio rhaniadau gwael"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Gwasanaethwr Cronfa Ddata"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Gwasanaethwr Cronfa Ddata"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Ychwanegu defnyddiwr"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Cymorth"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Heb gysylltu"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Dileu"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Dewis Popeth"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Ychwanegu defnyddiwr"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Ffurfweddu..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ailffurfweddu"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Does dim gyrrwr disg meddal ar gael"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Gwall!"
@@ -9508,6 +9911,11 @@ msgstr ""
"Dewiswch ar gyfer pob cam a fydd yn ail chwarae fel eich gosodiad, neu a "
"fydd gyda llaw"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Creu disg meddal awto gosod"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9520,12 +9928,12 @@ msgstr ""
"\n"
"Mae paramedrau'r awto osod i'w cael yn yr adran ar y chwith"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Llongyfarchiadau!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9533,28 +9941,19 @@ msgstr ""
"Mae'r disg meddal wedi ei gynhyrchu'n llwyddiannus. \n"
"Medrwch ail chwarae eich gosodiad."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Awto Gosod"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Ychwanegu eitem"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Tynnu'r eitem olaf"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9564,7 +9963,7 @@ msgstr ""
" Adroddiad DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9576,19 +9975,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9600,63 +9987,87 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "cyfanswm y cynnydd"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Ffeiliau system wrth gefn"
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Cynnydd Disg Caled wrth Gefn..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Cadw wrth gefn ffeiliau eraill..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"rhestr ffeil yrrwyd gan FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth "
"gefn drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Gwall wrth anfon e-bost. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Dewis ffeiliau"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9664,26 +10075,26 @@ msgstr ""
"\n"
"Gwiriwch pob dewis sydd angen arnoch.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Mae'r dewisiadau hyn yn medru cadw wrth gefn ac adfer pob ffeil yn eich "
"cyfeiriadur /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9691,83 +10102,77 @@ msgstr ""
"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
"o'ch cyfeiriadur /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Gwiriwch pob defnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Peidio cynnwys storfa'r porwr"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Tynnu'r Dewis"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Defnyddwyr"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Defnyddiwch cysylltiad FTP i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Rhowch enw'r gwesteiwr neu'r IP"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Rhowch y cyfeiriadur i osod y cadw\n"
"wrth gefn ar y gwesteiwr hwn."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Rhowch eich mewngofnod"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Rhowch eich cyfrinair"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Cofiwch y cyfrinair"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Cysylltiad FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Cysylltiad Diogel"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Dewiswch eich gofod CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9775,7 +10180,7 @@ msgstr ""
"Gwiriwch os ydych am gynnwys\n"
" cychwyn gosod ar eich CD"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9783,16 +10188,21 @@ msgstr ""
"Rhowch enw dyfais eich Ysgrifennwr CD\n"
"ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Defnyddiwch dâp i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Rhowch enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9800,51 +10210,57 @@ msgstr ""
"Rhowch y maint mwyaf\n"
"i'w ganiatáu ar gyfer Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Rhwydwaith"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Disg Caled / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Math"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "bob awr"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "bob dydd"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "bob wythnos"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "bob mis"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Defnyddiwch ddaemon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9852,7 +10268,7 @@ msgstr ""
"Dewiswch faint o amser\n"
"fydd rhwng pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9860,72 +10276,68 @@ msgstr ""
"Dewiswch y cyfrwng ar\n"
"gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Defnyddiwch y Disg Caled gyda'i ddaemon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Defnyddiwch FTP gyda daemon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+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 ""
"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau"
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Beth"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Lle"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Pryd"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Dewisiadau Eraill"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Ffurfweddiad Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "ar Ddisg Caled"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "ar draws Rhwydwaith"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "System cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Defnyddwyr Cadw wrth Gwfn"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Dewis defnyddwyr gyda llaw"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9933,7 +10345,7 @@ msgstr ""
"\n"
"Ffynhonell Cadw wrth Gefn:\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9941,7 +10353,7 @@ msgstr ""
"\n"
"- Ffeiliau System: \n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9949,7 +10361,7 @@ msgstr ""
"\n"
"- Ffeiliau Defnyddiwr:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9957,7 +10369,7 @@ msgstr ""
"\n"
"- Ffeiliau Eraill: \n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9966,16 +10378,45 @@ msgstr ""
"\n"
"Cadw ar Ddisg caled ar lwybr: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dyfais llygoden: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Cadw ar FTP ar y gwesteiwr: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Cadw ar FTP ar y gwesteiwr: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9984,7 +10425,7 @@ msgstr ""
"\t\t enw defnyddiwr:%s\n"
"\t\t ar lwybr: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9992,19 +10433,19 @@ msgstr ""
"\n"
"-Dewisiadau:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10013,27 +10454,41 @@ msgstr ""
"\n"
"- Daemon (%s) i gynnwys :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Disg Caled.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Rhwydwaith drwy SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Rhwydwaith drwy FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Rhwydwaith drwy FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10041,7 +10496,7 @@ msgstr ""
"Rhestr o ddata i'w adfer:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10049,134 +10504,137 @@ msgstr ""
"Rhestr o ddata llwgr:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Mae eich dewis data wedi ei "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Ei adfer yn Llwyddiannus ar %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Adfer y Furfweddiad"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Iawn i adfer ffeiliau eraill"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn ôl y defnyddwyr, sy'n "
"bwysig )"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "dewiswch y data i'w adfer"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Rhowch y cyfeiriadur i gadw iddo:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "Cysylltiad FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Cysylltiad Diogel"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Adfer o'r Ddisg Caled."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Dewis cyfrwng arall i adfer ohono"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Cyfrwng Arall"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Adfer y system"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Adfer Defnyddwyr"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Adfer Arall"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "dewis llwybr arall i adfer ( yn lle / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Gwnewch cadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
"yn unig )"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Adfer pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Adfer Dewisol"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Cymorth"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Cynt"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Gorffen"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Adeiladu Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Adfer"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Nesaf"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10184,7 +10642,7 @@ msgstr ""
"Crëwch gadw wrth gefn cyn ei adfer...\n"
" neu gwiriwch fod eich llwybr i'w gadw'n gywir."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10194,31 +10652,35 @@ msgstr ""
" chafodd eich adroddiad e-bost mo'i anfon\n"
" Ffurfweddwch eich sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Rhestr Pecynnau i'w Gosod"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Gwall wrth anfon ffeil drwy FTP.\n"
" Cywirwch eich ffurfweddiad FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Dewiswch y data i'w adfer..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Dewiswch y data i'w gadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10226,75 +10688,75 @@ msgstr ""
"Ni chanfyddwyd y ffeil ffurfweddu \n"
"cliciwch Dewin neu Uwch."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "O dan ddatblygiad...arhoswch."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Ffeiliau System Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Cadw'r ffeiliau eraill wrth gefn"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Cyfanswm Cynydd"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "anfon ffeil drwy FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Anfon ffeiliau..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Rhestr data i'w gynnwys ar CDROM"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Rhowch gyflymder yr ysgrifennydd CD"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Rhowch enw dyfais eich Ysgrifennydd CD (ex: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Ticiwch os ydych eisiau cynnwys cychwyn gosod ar eich CD."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Ffurfweddiad y Dewin"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Ffurfweddiad Uwch"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Cadw wrth Gefn Nawr"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10352,7 +10814,7 @@ msgstr ""
" ...\n"
" \n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10361,7 +10823,7 @@ msgid ""
"\n"
msgstr "\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10438,7 +10900,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10487,13 +10949,18 @@ msgstr ""
"\\n\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Hawlfraint(H 2001 MandrakeSoft gan DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -10525,7 +10992,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
"MA 02111-1307, USA"
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10601,7 +11068,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10620,7 +11087,7 @@ msgstr ""
"cyn ei anfon i'r gwasanaethwr.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10642,7 +11109,7 @@ msgstr ""
"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
"data wrth gefn gyda llaw.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10722,99 +11189,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Mae gosod %s wedi methu. Digwyddodd y gwall canlynol:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Offer y Consol"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "ar Ddisg Caled"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Llygoden"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Argraffydd pell"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Rhannu enw"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Dewin Ffurfweddu'r Rhwydwaith"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Dilysu"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Dewis pecynnau"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Arhoswch"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Wedi'r dad osod"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "porth"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Bydd lluniau o'r sgrin ar gale ar ôl gosod yn %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Proffil:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Proffl dileu"
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Proffil i'w ddileu:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Proffil newydd..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Enw'r proffil i'w greu ( mae'r proffil newydd yn cael ei greu fel copi o'r "
+"un cyfredol):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Enw gwesteiwr:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Mynediad i'r Rhyngrwyd"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Math: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Mynedfa:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Rhyngwyneb:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Statws"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Arhoswch"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Ffurfweddu Mynediad i'r We..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Ffurfweddiad y Rhwydwaith Lleol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Gyrrwr"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Rhyngwyneb"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Stad"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Cliciwch yma i gychwyn y dewin ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Dewin..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Gosod"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Arhoswch...Gosod y ffurfweddiad"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Wedi cysylltu"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Heb gysylltu"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Cysylltu..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Dadgysylltu..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
+"defnyddio eich rhwydwaith."
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nid oes gennych unrhyw rhagwynebau wedi\n"
+"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
+"drwy glicio ar 'Ffurfweddu'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Addasydd %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocol Cychwyn"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Cychwyn y peiriant"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "cychwyn nawr"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "dad weithredu nawr"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
+"Cychwynnwch y dewin ffurfweddi yn y brif ffenestr."
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nid oes gennych cysylltiad â'r rhyngrwyd.\n"
+"Crëwch un drwy glicio ar 'Ffurfweddu'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Ffurfweddiad cysylltiad â'r Rhyngrwyd"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Ffurfweddu Cysylltiad â'r Rhyngrwyd"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Math o gyswllt:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Paramedrau"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Mynedfa"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Cerdyn Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cleient DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "defnydd: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Enw'r modiwl"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Maint"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creu disg cychwyn"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "rhagosodedig"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Gwall Drakfloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "fersiwn cnewyllyn"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Cyffredinol"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Maes Uwch"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "ymresymiad dewisol mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Ychwanegu modiwl"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "grym"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "os oes angen"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "peidio cynnwys modiwlau scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "peidio cynnwys modiwlau raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Tynnu modiwl"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Allbwn"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Adeiladu'r ddisg"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Gwnewch yn siwr fod y deunydd ar gael ar gyfer y ddyfais %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Does dim cyfrwng i'r dyfais %s.\n"
+"Rhowch un i mewn.."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Methu fforchio: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Methu cau mkbootdisk yn iawn:\n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Chwilio am ffontiau wedi eu gosod"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Tynnu ffontiau wedi eu gosod"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "pob ffont"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "heb ganfod ffontiau"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "gorffen"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "methu canfod unrhyw ffont yn eich rhaniad gosodedig"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Ailddewis y ffontiau cywir"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "methu cnafod unrhyw ffontiau.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Chwilio am ffontiau yn y rhestr gosod"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copďo ffontiau"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Gosod ffontiau True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "arhoswch yn ystod ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Wedi gosod True Type"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Trosiad ffontiau"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "adeiladu math 1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "cyfeirio Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "trosi ffontiau ttf "
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "trosi ffontiau pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Llethu ffeiliau dros dro"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Ail gychwyn XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Llethu ffeiliau Ffontiau"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "ail gychwyn xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10828,107 +11728,107 @@ msgstr ""
"- Medrwch osod y ffontiau yn y dull arferol. Mewn achosion prin, gall "
"ffontiau ffug rewi eich Gwasanaethwr X"
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Mewnforio Ffontiau"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Estyn Ffontiau Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Dad osod Ffontiau"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Dewisiadau Uwch"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Rhestr Ffontiau"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Dewiswch y rhaglenni fydd yn cynnal ffontiau:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Argraffyddion Generig"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Dewiswch ffeil neu gyfeiriadur y ffont a chlicio 'Ychwanegu'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Gosod Rhestr"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "cliciwch yma os ydych yn siwr."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "yma os nad."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Dad ddewis Popeth"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Dewis Popeth"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Rhestr Tynnu"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Prawf Init"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Copďo'r ffontiau ar eich system!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Gosod a throsi ffontiau"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Wedi'r Gosod"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Tynnu ffontiau oddi ar eich system!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Wedi'r dad osod"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Rhannu Cysylltiad â'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei alluogi"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10940,31 +11840,31 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "dymunol"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "gwrthod"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ailffurfweddu"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Analluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei analluogi."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Mae Rhannu Cysylltiad a'r Rhyngrwyd wedi ei analluogi"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10976,19 +11876,19 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "galluogi"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Galluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei alluogi."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11005,21 +11905,21 @@ msgstr ""
"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
"(LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Rhagwyneb %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nid oes addasydd rhwydwaith ar eich system!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11027,11 +11927,11 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system. Rhedwch "
"yr offeryn ffurfweddu caledwedd."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Rhyngwyneb rhwydwaith"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11046,7 +11946,7 @@ msgstr ""
"\n"
"Rwyf ar fin gosod eich Rhwydwaith Lleol gyda'r addasydd hwnnw.."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11054,11 +11954,11 @@ msgstr ""
"Dewiswch ba addasyddion rhwydwaith fydd yn cael eu cysylltu â'ch Rhwydwaith "
"Lleol."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Mae rhag wyneb y rhwydwaith wedi ei ffurfwedu eisoes"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11074,15 +11974,15 @@ msgstr ""
"Medrwch ei wneud gyda llaw ond mae'n rhaid i chi wybod beth ydych yn ei "
"wneud."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Ail ffurfweddiad awtomatig"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11099,7 +11999,7 @@ msgstr ""
"Priodweddau IP: %s\n"
"Gyrrwr: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11118,33 +12018,33 @@ msgstr ""
"Neu, medraf ail ffurfweddu eich rhag wyneb ac (ail)ffurfweddi gwasanaethwr "
"DHCP ar eich cyfer.\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Rhwydwaith Lleol Dosbarth C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "Gwasanaethwr DHCP IP (Hwn)"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Ail ffurfweddi rhag wyneb a gwasanaethwr DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Nid yw'r Rhwydwaith Leol yn terfynnu gyda '.0', tynnu allan."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Canfuwyd gwrthdaro posib yng nghyfeiriad LAN ffurfweddiad presennol %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11152,20 +12052,20 @@ msgstr ""
"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
"atgyweirio gyda llaw ar ôl y gosodiad."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Ffurfweddu..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ffurfweddio sgriptiau, gosod meddalwedd, cychwyn gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Anhawster wrth osod pecyn %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11175,23 +12075,23 @@ msgstr ""
"Gallwch rannu cysylltiad â'r Rhyngrwyd gyda chyfrifiaduron eraill ar eich "
"Rhwydwaith Lleol gan ddefnyddio ffurfweddiad rhwydwaith awtomatig (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei anallluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei allluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nid oes Rhannu Cysylltiad â'r Rhyngrwyd wedi eu ffurfweddu o'r blaen."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Ffurfweddiad rhannu cysylltiad â'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11206,217 +12106,6 @@ msgstr ""
"\n"
"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Proffil:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Proffl dileu"
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Proffil i'w ddileu:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Proffil newydd..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Enw'r proffil i'w greu ( mae'r proffil newydd yn cael ei greu fel copi o'r "
-"un cyfredol):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Enw gwesteiwr:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Mynediad i'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Math: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Mynedfa:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rhyngwyneb:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Statws"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Arhoswch"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ffurfweddu Mynediad i'r We..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Ffurfweddiad y Rhwydwaith Lleol"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Gyrrwr"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rhyngwyneb"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Stad"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Cliciwch yma i gychwyn y dewin ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Dewin..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Gosod"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Arhoswch...Gosod y ffurfweddiad"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Wedi cysylltu"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Heb gysylltu"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Cysylltu..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Dadgysylltu..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
-"defnyddio eich rhwydwaith."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nid oes gennych unrhyw rhagwynebau wedi\n"
-"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
-"drwy glicio ar 'Ffurfweddu'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Addasydd %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocol Cychwyn"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Cychwyn y peiriant"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cleient DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "cychwyn nawr"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "dad weithredu nawr"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
-"Cychwynnwch y dewin ffurfweddi yn y brif ffenestr."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nid oes gennych cysylltiad â'r rhyngrwyd.\n"
-"Crëwch un drwy glicio ar 'Ffurfweddu'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Ffurfweddiad cysylltiad â'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Ffurfweddu Cysylltiad â'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Math o gyswllt:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Paramedrau"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Mynedfa"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Cerdyn Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cleient DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Gosod y lefel diogelwch"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Canolfan Rheoli"
@@ -11425,89 +12114,128 @@ msgstr "Canolfan Rheoli"
msgid "Choose the tool you want to use"
msgstr "Dewiswch yr offeryn rydych am ei ddefnyddio"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (cabl)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "UDA (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "UDA (cabl)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "UDA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Tseina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Siapan (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Siapan (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Dwyrain Ewrop"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ffrainc"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Iwerddon"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Gorllewin Ewrop"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Awstralia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Zeland Newydd"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "De Affrica"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Yr Ariannin"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Rhowch eich safon teledu a gwlad"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Safon Teledu:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Ardal:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Wrthi'n sganio am sianeli Teledu ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Sganio am Sianel Teledu"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Digwyddodd gwall wrth osod pecyn"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11553,7 +12281,7 @@ msgstr ""
"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
"allgofnodi"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11579,7 +12307,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/File/_Cawd"
+msgstr "/Ffeil/_Cawd"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -11587,7 +12315,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/File/Cawd _fel"
+msgstr "/Ffeil/Cawd _fel"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11601,10 +12329,6 @@ msgstr "/_Dewisiadau"
msgid "/Options/Test"
msgstr "/Dewisiadau/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Cymorth"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Cymorth/_Ynghylch..."
@@ -11665,7 +12389,7 @@ msgstr "Calendr"
msgid "Content of the file"
msgstr "Cynnwys y ffeil"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Rhybudd E-bost/SMS"
@@ -11674,11 +12398,11 @@ msgstr "Rhybudd E-bost/SMS"
msgid "please wait, parsing file: %s"
msgstr "arhoswch, dosbarthu ffeil: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Rhybudd ffurfweddiad E-bost/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11688,63 +12412,95 @@ msgstr ""
"\n"
"Yma bydd modd i chi osod y system rhybuddio.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Enw parth"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Gwasanaethwr e-bost Postfix, gwasanaethwr newyddion Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Gwasanaethwr NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Gwasanaethwr NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Gwasanaethau"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Gwasanaethwr Argraffydd"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "gosodiad gwasanaeth"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Byddwch yn derbyn rhybudd os na fydd un o'r gwasanaethu hyn yn rhedeg"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "gosodiad llwyth"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Byddwch yn derbyn rhybudd os yw'r llwyth yn uwch na'r gwerth hwn"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "ffurfweddiad rhybudd"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Ffurfweddiwch y ffordd mae'r system yn eich rhybuddio"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Cadw fel..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "neb ganfod serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Efelychu'r trydydd botwm?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Darllen data argraffydd..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Canfod dyfeisiadau..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11789,6 +12545,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Ffurfweddiad Mur Gwarchod"
@@ -12196,10 +12964,6 @@ msgid "Multimedia - Sound"
msgstr "Aml-gyfrwng - Sain"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Gwaasanaethau"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dogfennaeth"
@@ -12304,10 +13068,6 @@ msgstr ""
"ac i bori'r We"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archifio, efelychwyr, monitro"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Cyllid Personol"
@@ -12355,17 +13115,206 @@ msgstr "Aml-gyfrwng - Llosgi CD"
msgid "Scientific Workstation"
msgstr "Gweithfan Gwyddonol"
-#~ msgid "About"
-#~ msgstr "Allwedd amgryptio (eto)"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Dynodiad y cerdyn graffeg: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Dewiswch opsiynau ar gyfer y gwasanaethwr"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor heb ei ffurfweddu"
-#~ msgid " Help "
-#~ msgstr " Cymorth"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Cerdyn graffig heb ei ffurfweddu eto"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Cydraniad heb ei ddewis eto"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "ceisiwch newid rhai paramedrau"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Digwyddodd gwall:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Gadael mewn %d eiliad"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ydi'r gosodiad hwn yn gywir?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Digwyddodd gwall, ceisiwch newid rhai paramedrau"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Gwasanaethwr XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Dangos y cyfan"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Yn parataoi cyfluniad X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Beth ydych eisiau ei wneud?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Newid Monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Newid cerdyn Graffeg"
+
+#~ msgid "Change Server options"
+#~ msgstr "Dewisiadau newid Gwasanaethwr"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Newid Cydraniad"
+
+#~ msgid "Show information"
+#~ msgstr "Dangos gwybodaeth"
+
+#~ msgid "Test again"
+#~ msgstr "Profi eto"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
+#~ "sganio. Medrwch sganio o'r llinell orchymyn gyda \"ptal-hp %s scan ..."
+#~ "\".. Nid yw sganio drwy gyfrwng rhyng wyneb graffigol na GIMP yn cael ei "
+#~ "gynnal eto ar gyfer eich dyfais. Mae rhagor o wybodaeth i'w gael yn ffeil "
+#~ "\"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" ar eich system. Os oes "
+#~ "gennych HP LaserJet 1100 neu 1200 yna dim ond os oes gennych y dewis "
+#~ "sganio wedi ei osod mae modd sganio.\n"
+#~ "Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Defnyddiwch y Disg Caled gyda'i ddaemon"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Defnyddiwch FTP gyda daemon"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Rhestr Pecynnau i'w Gosod"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Gosod y lefel diogelwch"
+
+#~ msgid "Graphics card"
+#~ msgstr "Cerdyn graffig"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Dewiswch gerdyn graffig"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Dewiswch yrrwr X"
+
+#~ msgid "X driver"
+#~ msgstr "Gyrrwr X"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA safonol, 640x480 ar 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Uwch VGA, 800x600 ar 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Cydnaws a 8514, 1024x768 rhyngleswyd ar 87 Hz (nid 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 rhyngleswyd ar 87Hz, 800x600 ar 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA di-rygnlesig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA Amledd Uchel, 1024x768 ar 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor sydd yn medru dangos 1600x1200 ar 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor sydd yn medru dangos 1600x1200 ar 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Cyfanswm maint y grwpiau rydych wedi eu dewis yw tua %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Os hoffech chi osod llai na'r maint hwn\n"
+#~ "dewiswch canran y pecynnau i'w gosod.\n"
+#~ "\n"
+#~ "Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
+#~ "isel; tra bydd canran o 100% yn llwytho'r holl becynnau."
#~ msgid ""
-#~ "XawTV isn't installed ...\n"
-#~ "You should install it.\n"
-#~ " Just type \"urpmi xawtv\""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Nid yw XawTV wedi ei osod ...\n"
-#~ "Dylech ei osod.\n"
-#~ " Teipiwch \"urpmi xawtv\""
+#~ "Dim ond ar gyfer %d%% o'r pecynnau hyn mae gennych le.\n"
+#~ "\n"
+#~ "Os hoffech osod llai na hyn,\n"
+#~ "dewiswch canran y pecynnau rydych am eu gosod.\n"
+#~ "Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
+#~ "isel; tra bydd canran o %d%% yn llwytho'r gymaint o becynnau ag\n"
+#~ "y mae modd."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Dydd modd eu dewis yn fwy penodol yn y cam nesaf."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Cyfanswm y pecynnau i'w gosod"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Dewiswch lefel diogelwch"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 6edcd2ac1..183a924d1 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -1,46 +1,70 @@
-# Danish translation of/Dansk oversćttelse af
-# Mandrake Linux DrakX.
-# Copyright (C) 1999-2001 MandrakeSoft
-#
-# In order of activity:
-# 1, Keld Simonsen <keld@dkuug.dk>, 2000-2002
-# 2, Jacob Nordfalk <nordfalk@mobilixnet.dk>, 2001-2002
-# 3, Troels Liebe Bentsen <tlb@iname.com>, 1999-2000
-# 4, Nikolaj Berg Amondsen <mr_nba@get2net.dk>, 2000
-# 5, Jacob Sparre Andersen, <sparre@sslug.dk>, 2000
-# 6, Kenneth Christiansen, <kenneth@ripen.dk>, 2000
-# 7, Jens Burkal <jburkal@get2net.dk>, 1999
-# 8, Mads Stenhuus Hansen <msh@com.dtu.dk>, 1999
+# danish drakbootdisk
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Keld Simonsen <keld@dkuug.dk>, 2000-2002.
+# Troels Liebe Bentsen <tlb@iname.com> 2000.
+#
+# Reviewed: keld@dkuug.dk 2001-08-22
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 13:04+0100\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-28 15:07+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
-"Language-Team: Danish <dansk@klid.dk>\n"
+"Language-Team: dansk <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurér alle skćrme uafhćngigt"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kb"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Brug Xinerama-udvidelse"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kb"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurér kun kort \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mb"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mb"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mb"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mb"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mb"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mb"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mb eller mere"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Vćlg en X-server"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Flerskćrms-konfiguration"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -48,41 +72,44 @@ msgstr ""
"Dit system understřtter konfiguration af flere skćrme\n"
"Hvad vil du gřre?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafikkort"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Vćlg hukommelsesmćngde for dit grafikkort"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Vćlg et grafikkort"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfiguration"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Vćlg en X-server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Hvilken konfiguration af XFree řnsker du?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigurér alle skćrme uafhćngigt"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Vćlg en X-driver"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Brug Xinerama-udvidelse"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X-driver"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurér kun kort \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Hvilken konfiguration af XFree řnsker du?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s med 3D hardware acceleration"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -91,34 +118,18 @@ msgstr ""
"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
"Dit kort er understřttet af XFree %s som kan have bedre understřttelse i 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Dit kort kan have 3D hardware accelerations-understřttelse med XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s med 3D hardware acceleration"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Dit kort kan have 3D acceleration understřttelse, men kun med XFree %s,\n"
-"VIGTIGT: Dette er eksperimentelt og kan fĺ din maskine til at lĺse eller gĺ "
-"ned."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -130,31 +141,58 @@ msgstr ""
"ned.\n"
"Dit kort er understřttet af XFree %s som kan have bedre understřttelse i 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Dit kort kan have 3D acceleration understřttelse, men kun med XFree %s,\n"
+"VIGTIGT: Dette er eksperimentelt og kan fĺ din maskine til at lĺse eller gĺ "
+"ned."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installations-skćrmdriver)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfiguration"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Vćlg hukommelsesmćngde for dit grafikkort"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Vćlg server-indstillinger"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Behold ćndringer?\n"
+"Nuvćrende konfiguration er:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Vćlg en skćrmtype"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Skćrm"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Tilpasset"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Standard"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Producent"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -178,513 +216,327 @@ msgstr ""
"Hvis du er i tvivl, břr du vćlge en opsćtning, som du med SIKKERHED ved\n"
"at din skćrm kan klare."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Vandret opdateringsfrekvens"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Lodret opdateringsfrekvens"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Skćrm ikke konfigureret"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafikkort er endnu ikke konfigureret"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Oplřsninger ikke valgt endnu"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Řnsker du at afprřve konfigurationen?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Advarsel: afprřvning af dette grafikkort kan fĺ din maskine til at lĺse"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test konfigurationen"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 farver (8 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"prřv at ćndre nogle parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tusinde farver (15 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "En fejl opstod:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tusinde farver (16 bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Vender tilbage om %d sekunder"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millioner (24 bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Er dette den korrekte indstilling?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milliarder farver (32 bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "En fejl opstod, prřv at ćndre nogle parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Oplřsninger"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Oplřsning"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Vćlg oplřsning og farvedybde"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafikkort: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86-server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mere"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Annullér"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "O.k."
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspert-udgave"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Vis alle"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Řnsker du at afprřve konfigurationen?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Oplřsninger"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Test konfigurationen"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastatur-type: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muse-type: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muse-enhed: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Skćrm: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Skćrms vandrette frekvens: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Skćrms lodrette frekvens: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafikkort: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafikkort identifikation: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafik-hukommelse: %s kb\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Farvedybde: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Oplřsninger %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86-server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 driver: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Forbereder konfiguration af X"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Hvad řnsker du at gřre?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Skift skćrmtype"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Skift grafikkort"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Foretag ćndringer i server-indstillinger"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Skift oplřsning"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Vis information"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Test igen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Afslut"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behold ćndringer?\n"
-"Nuvćrende konfiguration er:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Start X ved systemstart"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Jeg kan sćtte din maskine op til automatisk at starte X ved\n"
"opstart. Řnsker du at starte X hver gang du genstarter?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Log ind i %s igen for at aktivere ćndringerne"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Log ud og tryk herefter pĺ Ctrl-Alt-Bak"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 farver (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tusinde farver (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tusinde farver (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millioner (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milliarder farver (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mb eller mere"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard-VGA, 640x480 ved 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super-VGA, 800x600 ved 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibel, 1024x768 ved 87 Hz interlaced (ikke 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ved 87 Hz interlaced, 800x600 ved 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Udvidet Super-VGA, 800x600 ved 60 Hz, 640x480 ved 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 ved 60 Hz, 800x600 ved 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hřjfrekvens SVGA, 1024x768 ved 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skćrm, som kan klare 1600x1200 ved 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skćrm, som kan klare 1600x1200 ved 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Fřrste sektor af opstartspartition"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Fřrste sektor pĺ disken (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO-installering"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du placere opstartsprogrammet?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub-installering"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO med tekstmenu"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO med grafisk menu"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Start fra DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Systemopstarterens installation"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Opstartsenhed"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (virker ikke med gamle BIOS'er)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompakt"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Videoindstilling"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Ventetid fřr opstart af forvalgt styresystem"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Adgangskode"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Begrćns kommandolinie-indstillinger"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "begrćns"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Rens /tmp ved hver systemopstart"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Prćcis RAM-mćngde, hvis pĺkrćvet (fandt %d Mb)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Aktivér multiprofiler"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Angiv RAM-střrrelse i Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Indstillingen ``Begrćns kommandolinie-indstillinger'' er intet vćrd uden\n"
"en adgangskode"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Prřv igen"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init-besked"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Ĺben firmwareforsinkelse"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Ventetid fřr kerneopstart"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Skal det vćre muligt at starte fra CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Skal det vćre muligt at starte fra OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Forvalgt styresystem?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -698,83 +550,83 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Her er fřlgende typer indgange.\n"
"Du kan tilfřje flere eller ćndre de eksisterende."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Tilfřj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Fćrdig"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ćndr"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type řnsker du at tilfřje"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Andet styresystem (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Andet styresystem (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Andet styresystem (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Billede"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Rod"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Vedhćft"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lćs-skriv"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Usikker"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Mćrkat"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Forvalgt"
@@ -806,53 +658,77 @@ msgstr "Du skal angive en root-partition"
msgid "This label is already used"
msgstr "Denne mćrkat er allerede brugt"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fandt %s %s grćnsesnit"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Har du én til?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Har du nogen %s grćnsesnit?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nej"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Se info for maskinel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installerer driver for %s kort %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, 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 ""
+"Du kan nu angive parametre til modul %s.\n"
+"Bemćrk at alle adresser břr indtastes med foranstillet 0x, fx '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Du kan nu sćtte parametre til modulet %s.\n"
+"Parametrene er i formatet ``navn=vćrdi navn2=vćrdi2 ...''.\n"
+"F.eks., ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modulindstillinger:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvilken %s driver skal jeg prřve?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -872,39 +748,15 @@ msgstr ""
"burde\n"
"ikke forĺrsage nogen skader."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatisk sondering"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Specificér parametre"
-#: ../../any.pm_.c:725
-#, 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 ""
-"Du kan nu angive parametre til modul %s.\n"
-"Bemćrk at alle adresser břr indtastes med foranstillet 0x, fx '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Du kan nu sćtte parametre til modulet %s.\n"
-"Parametrene er i formatet ``navn=vćrdi navn2=vćrdi2 ...''.\n"
-"F.eks., ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulindstillinger:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -913,49 +765,53 @@ msgstr ""
"Indlćsning af modul %s mislykkedes.\n"
"Řnsker du at prřve igen med andre parametre?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "adgang til rpm-vćrktřjer"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilfřjet %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Adgangskoden er for simpel"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet mĺ kun indeholde smĺ bogstaver, tal, `-' og `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Dette brugernavn er for langt"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Dette brugernavn eksisterer allerede"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Tilfřj bruger"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -964,32 +820,32 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Acceptér bruger"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Rigtige navn"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Brugernavn"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Skal"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -997,57 +853,57 @@ msgstr ""
"Jeg kan sćtte din maskine op til automatisk at logge en bestemt bruger pĺ.\n"
"Řnsker du at bruge denne finesse?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Vćlg den forvalgte bruger:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Vćlg den vindueshĺndtering du řnsker at benytte:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Vćlg det sprog, der skal bruges."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 ""
"Du kan vćlge andre sprog der vil vćre tilgćngelige efter installationen"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alt"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Tilpasset"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Ingen fildeling"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s skal vćre installeret. Řnsker du at installere den?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Du kan eksportere med NFS eller Samba. Hvilken vil du bruge"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Krćvet pakke %s mangler"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1058,31 +914,11 @@ msgstr ""
"Tilladelse af dette vil sćtte brugere i stand til simpelthen at klikke pĺ "
"'Fildeling' i konqueror og nautilus.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annullér"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1090,31 +926,31 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilfřje en bruger til denne gruppe."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackere"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Ringe"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hřj"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Hřjere"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1125,7 +961,7 @@ msgstr ""
"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
"adgangskoder."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1133,7 +969,7 @@ msgstr ""
"Kontrol af adgangskode er nu aktiveret, men brug som netvćrksmaskine er "
"stadig ikke anbefalet."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1141,7 +977,7 @@ msgstr ""
"Dette er standard sikkerheds-anbefalingen for en maskine\n"
" med forbindelse til Internettet som klient. "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1149,51 +985,52 @@ msgstr ""
"Der er allerede nogle begrćnsninger, og flere automatiske kontroller bliver "
"křrt hver nat."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Med dette sikkerhedsniveau kan brug som server komme pĺ tale.\n"
"Sikkerheden er nu hřj nok til at systemet kan bruges som server som tillader "
"forbindelser fra mange klienter. Bemćrk: hvis din maskine kun er en klient "
"pĺ internettet břr du hellere vćlge et lavere niveau."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Baseret pĺ det foregĺende niveau, men systemet er nu helt lukket.\n"
"Sikkerhedsfaciliteterne er nu pĺ deres hřjeste niveau."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Vćlg sikkerhedniveau"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Sikkerhedsniveau"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Brug libsafe for servere"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Et bibliotek som beskytter mod angreb via bufferoverlřb og formatstrenge."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1218,52 +1055,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Velkommen til GRUB styresystemsvćlgeren!"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Brug tasterne %c og %c til at vćlge mellem mulighederne."
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "kommandoerne fřr opstart, eller 'c' for en kommandolinie."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Den fremhćvede mulighed vil blive startet automatisk om %d sekunder."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Skrivebord"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start-menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlćseren pĺ en %s-partition\n"
@@ -1276,17 +1113,21 @@ msgstr "endnu er ingen hjćlp implementeret.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fil"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fil/_Afslut"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<kontrol>Q"
+msgstr "<Ctrl>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1319,14 +1160,14 @@ msgstr "Yaboot modus"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Du bruger for řjeblikket % som opstartshĺndterer.\n"
"Klik pĺ Konfigurér for at starte opsćtnings-vejlederen."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurér"
@@ -1336,7 +1177,7 @@ msgid "System mode"
msgstr "Systemmodus"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Start X-vinduessystemet efter opstart"
#: ../../bootlook.pm_.c:148
@@ -1347,16 +1188,18 @@ msgstr "Nej, jeg řnsker ikke automatisk login"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, jeg řnsker automatisk login med denne (bruger, skrivebord)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "O.k."
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1402,7 +1245,7 @@ msgstr "Kan ikke lave řjebliksbilleder fřr partitionering"
msgid "Screenshots will be available after install in %s"
msgstr "Řjebliksbilleder vil vćre tilgćngelige efter installation i %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankrig"
@@ -1410,7 +1253,7 @@ msgstr "Frankrig"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgien"
@@ -1434,11 +1277,12 @@ msgstr "Norge"
msgid "Sweden"
msgstr "Sverige"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holland"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italien"
@@ -1446,7 +1290,7 @@ msgstr "Italien"
msgid "Austria"
msgstr "Řstrig"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "U.S.A."
@@ -1454,8 +1298,8 @@ msgstr "U.S.A."
msgid "Please make a backup of your data first"
msgstr "Lav gerne en sikkerhedkopi af dine data fřrst"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lćs omhyggeligt!"
@@ -1468,11 +1312,12 @@ msgstr ""
"Hvis du planlćgger at bruge Yaboot, skal du huske at efterlade fri plads pĺ\n"
"begyndelsen af disken (2048 sektorer skulle vćre nok)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fejl"
@@ -1480,11 +1325,11 @@ msgstr "Fejl"
msgid "Wizard"
msgstr "Vejleder"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Vćlg handling"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1496,144 +1341,149 @@ msgstr ""
"Jeg anbefaler, at du ćndrer střrrelsen pĺ partitionen\n"
"(klik pĺ den, og klik herefter pĺ \"Střrrelsesćndring\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Klik pĺ en partition"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaljer"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journaliserende FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tom"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Andet"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Filsystems-typer:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Opret"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Benyt ``%s'' i stedet"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Slet"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Benyt ``Afmontér'' fřrst"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Efter type-ćndring af partition %s vil alle data pĺ denne partition gĺ tabt"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Vćlg en partition"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Vćlg en ny partition"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Afslut"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Normal -> Ekspert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ekspert -> Normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Fortryd"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Fortsćt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Afslut uden at gemme"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Afslut uden at skrive partitionstabellen?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Řnsker du at gemme /etc/fstab-ćndringerne?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Allokér automatisk"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Slet alt"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mere"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Drev-information"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle primćre partitioner er brugt"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Kan ikke tilfřje flere partitioner"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1641,31 +1491,31 @@ msgstr ""
"For at du kan fĺ flere partitioner, skal du slette én, sĺ der kan oprettes "
"en udvidet partition"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Gem partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Genskaber partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Redder partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Genindlćs partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automontering af flytbare medier"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Vćlg fil"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1673,11 +1523,11 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme střrrelse\n"
"Fortsćt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advarsel"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1685,122 +1535,129 @@ msgstr ""
"Indsćt en diskette i diskettedrevet\n"
"Alle data pĺ disketten vil blive slettet"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Forsřger at redde partitionstabellen"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detaljeret information"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Monteringssti"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Valg"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Střrrelsesćndring"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Flyt"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatér"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montér"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Tilfřj til RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Tilfřj til LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Afmontér"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Fjern fra RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Fjern fra LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Ćndr RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Loopback anvendelse"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Opret en ny partition"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Startsektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Střrrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Filsystemstype: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Monteringssti: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Prćference: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Fjern loopback-filen?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Skift partitionstype"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hvilket filsystem řnsker du at bruge?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Skifter fra ext2 til ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvor řnsker du at montere loopback-fil %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvor řnsker du at montere partitionen %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1809,127 +1666,132 @@ msgstr ""
"loopback.\n"
"Fjern loopback fřrst"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Udregner FAT-filsystemets grćnser"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ćndrer střrrelsen"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Střrrelsen pĺ denne partition kan ikke ćndres"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Det břr laves en backup af alle data pĺ denne partition"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Efter ćndring af střrrelsen af partition %s vil alle data pĺ denne partition "
"gĺ tabt"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Vćlg den nye střrrelse"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Ny střrrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Hvilken disk řnsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Hvilken sektor řnsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Flytter"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Flytter partition..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Vćlg en eksisterende RAID som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "ny"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Vćlg en eksisterende LVM som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM-navn?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Denne partition kan ikke bruges til loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback-filnavn: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Giv et filnavn"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Filen er allerede brugt af en anden loopback, vćlg en anden fil"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Filen findes allerede. Skal den bruges?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Modulindstillinger"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Diverse"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "enhed"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "niveau"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "enhedsstřrrelse"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Vćr forsigtig: denne operation er farlig."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Hvilken slags partitionering?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Pakken %s krćves. Řnsker du at installere den?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1941,7 +1803,7 @@ msgstr ""
"fungere, eller du kan undlade at benytte LILO, hvilket vil betyde, at du "
"ikke har brug for /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1953,7 +1815,7 @@ msgstr ""
"partition. Hvis du řnsker at benytte LILO, skal du oprette en /boot "
"partition indenfor 1024-cylinder grćnsen."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1963,130 +1825,130 @@ msgstr ""
"Ingen systemopstarter kan hĺndtere dette uden en /boot partition.\n"
"Sĺ vćr omhyggelig med at tilfřje en /boot partition"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitionstabellen for disk %s vil nu blive skrevet pĺ disken!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Du skal genstarte maskinen for at aktivere ćndringerne"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Efter formatering af partitionen %s vil alle data pĺ denne partition gĺ tabt"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formaterer"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formaterer loopback-fil %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formaterer partition %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Skjul filer"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Flyt filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Katalog %s indeholder allerede nogen data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Flytter filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopierer %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "partition %s er nu kendt som %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Enhed: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-drevbogstav: %s (bare et gćt)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Navn: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Střrrelse: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorer"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylinder %d til %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ikke formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Monteret\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2095,7 +1957,7 @@ msgstr ""
"Loopback-fil(er):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2103,27 +1965,27 @@ msgstr ""
"Partition som opstartes som standard\n"
" (gćlder kun MS-DOS-opstart, ikke LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Enhedsstřrrelse %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-filnavn: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2135,7 +1997,7 @@ msgstr ""
"en driver-partition, du skal\n"
"sandsynligvis lade den vćre.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2147,63 +2009,63 @@ msgstr ""
"partition er for at\n"
"dual-boote dit system.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Střrrelse: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabel-type: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "pĺ bus %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "pĺ kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Krypteringsnřgle for filsystem"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Vćlg din krypteringsnřgle for filsystemet"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Denne krypteringsnřgle er for nem at gćtte (skal mindst vćre pĺ %d tegn)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Krypteringsnřglerne stemmer ikke overens"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Krypteringsnřgle"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Krypteringsnřgle (igen)"
@@ -2212,35 +2074,62 @@ msgid "Change type"
msgstr "Skift type"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Klik pĺ et medie"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Kan ikke logge ind med brugernavn %s (forkert adgangskode?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domćnegodkendelse pĺkrćvet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "En anden"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Hvilket brugernavn"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Intast venligst dit brugernavn, din adgangskode og dit domćnenavn for at fĺ "
+"adgang til denne vćrt."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Brugernavn"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domćne"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Sřg efter servere"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering af %s mislykkedes"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ved ikke hvordan man formaterer %s som type %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montering af partition %s i katalog %s mislykkedes"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck afsluttet med fejlkode %d eller signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
@@ -2257,69 +2146,311 @@ msgstr "med /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Du kan ikke bruge JFS pĺ partitioner mindre end 16Mb"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Du kan ikke bruge ReiserFS pĺ partitioner mindre end 32Mb"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Monteringsstier skal begynde med /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Du kan ikke bruge et LVM logisk delarkiv for monteringspunkt %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dette katalog břr ligge pĺ rod-filsystemet"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Du skal have et rigtigt filsystem (ext2, reiserfs) til dette "
-"monteringspunkt\n"
+"Du skal have et rigtigt filsystem (ext2/ext3, reiserfs, xfs eller jfs) til "
+"dette monteringspunkt\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Ingenting at lave"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fejl ved ĺbning af %s for skrivning: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Der er opstĺet en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
"der kan oprettes nye filsystemer. Undersřg din maskine for at finde ĺrsagen "
"til problemet"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Du har ikke nogen partitioner!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Automatisk detektion"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Ukendt|generisk"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Ukendt|CPH05X (bt878) [mange leverandřrer]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Ukendt|CPH06X (bt878) [mange leverandřrer]"
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+"For de fleste moderne tv-kort vil bttv-modulet fra GNU/Linux-kernen blot "
+"automatisk finde de rette parametre.\n"
+"Hvis dit kort ikke findes korrekt, kan du gennemtvinge den rette tuner og "
+"korttyper her. Bare vćlg dit tv-korts parametre om nřdvendigt"
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Kortmodel:"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "PLL-opsćtning:"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Antal fangningsbuffere:"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Antal fangningsbuffere for mmap-fangning"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Tuner-type:"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Radio-understřttelse:"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "aktivér radio-understřttelse"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Afslut"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Hjćlp"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Hjćlp..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_Om..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kort mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Annullér"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Bus"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Medieklasse"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Bus-identifikation"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Sted pĺ bussen"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Vćlg fil"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway enhed"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 knapper"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 version "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Fundet maskinel"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informationer"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Křr konfigurationsvćrktřj"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Konfigurér modul"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Sřgning udfřres"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Vent venligst"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "primćr"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekundćr"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Křrer \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "Om Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Dette er HardDrake, et Mandrake-vćrktřj for konfigurering af maskinel.\n"
+"Version:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Forfatter:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Harddrake hjćlp"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2333,7 +2464,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2461,9 +2592,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2807,7 +2937,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2819,9 +2949,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2890,21 +3019,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2920,9 +3048,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Nu skal du vćlge hvor pĺ din harddisk du vil installere dit Mandrake Linux-"
"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
@@ -3006,9 +3134,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3198,38 +3325,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3395,11 +3516,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3454,7 +3575,7 @@ msgstr ""
"svćrt hvis du ikke har sĺ godt et kendskab til GNU/Linux, sĺ lad vćre med at "
"vćlge dette, medmindre du véd hvad du laver."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3479,7 +3600,7 @@ msgstr ""
"Klik pĺ 'mere'-tasten for at blive prćsenteret for den fulde \n"
"liste af understřttede tastaturer."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3503,7 +3624,7 @@ msgstr ""
"Bemćrk at flere sprog kan installeres samtidigt. Nĺr du er fćrdig med at "
"vćlge yderligere sprog, sĺ klik O.k. for at fortsćtte."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3530,7 +3651,7 @@ msgstr ""
"om indstillerne er gode. Hvis musen ikke virker korrekt, tryk da pĺ "
"mellemrumstangenten eller vognretur for at 'Annullere' og vćlg forfra."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3538,23 +3659,23 @@ msgstr ""
"Vćlg den rigtige port. For eksempel er navnet for COM1-porten under MS "
"Windows 'ttyS0' under GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3611,7 +3732,7 @@ msgstr ""
"Hvis din maskine ikke er forbundet til noget administreret netvćrk, řnsker "
"du nok at vćlge Lokale filer for autentificering"
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3633,7 +3754,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3641,7 +3762,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3710,7 +3831,7 @@ msgstr ""
"for at ćndre eller fjerne den; 'Tilfřj' opretter en ny indgang; og 'Fćrdig' "
"fortsćtter til det nćste installationstrin."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3733,7 +3854,7 @@ msgstr ""
"Men sĺ har du brug for en opstartsdiskette for at starte disse "
"operativsystemer!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3747,29 +3868,28 @@ msgstr ""
"Med mindre du véd prćcist hvad du gřr, břr du vćlge Fřrste sektor pĺ drevet\n"
"(MBR)."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3805,7 +3925,7 @@ msgstr ""
"separat kanaliserings-konstruktion, sĺ brug lprNG. Ellers er CUPS at "
"foretrćkke, da det er simplere og bedre til at fungere over netvćrk."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3830,7 +3950,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX er nu ved at bestemme alle IDE-enheder der er tilstede pĺ din maskine. "
@@ -3856,7 +3976,7 @@ msgstr ""
"fra Microsoft Windows (hvis du brugte dette udstyr med Windows pĺ dit "
"system)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3866,9 +3986,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3880,7 +3999,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3951,7 +4070,7 @@ msgstr ""
"ogsĺ blive fremhćvet med en '*', hvis du trykker Tab for at se "
"opstartsvalgene."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3978,9 +4097,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4016,10 +4134,10 @@ msgstr ""
" * Forvalgt styresystem: Du kan vćlge hvilket forvalgt styresystem der skal "
"startes nĺr Open Firmwareforsinkelsen er udlřbet."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4027,12 +4145,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4075,7 +4192,7 @@ msgstr ""
"blive vist her. Du kan klikke pĺ knappen for at ćndre de tilhřrende "
"parametre."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4085,7 +4202,7 @@ msgstr ""
"partition. Vćr forsigtig, alle data som er pĺ der, vil gĺ tabt og vil ikke "
"kunne genskabes!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4102,7 +4219,7 @@ msgstr ""
"Klik pĺ 'Annulér' for at anullere denne handling uden at tabe nogen data og "
"partitioner der er tilstede pĺ dette diskdrev."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4113,12 +4230,12 @@ msgstr ""
"mangler), dette betyder normalt at din opstartsdiskette ikke stemmer overens "
"med installationsmediet (lav en nyere opstartsdiskette)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Du skal ogsĺ formatere %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4142,20 +4259,20 @@ msgstr ""
"\n"
"Řnsker du virkelig at installere disse servere?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan ikke bruge rundkastning uden noget NIS-domćne"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Indsćt en tom diskette i diskette-drev %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Denne diskette er ikke formatteret til FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4163,7 +4280,7 @@ msgstr ""
"For at bruge dette gemte pakkevalg, start installationen op med``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fejl ved lćsning af filen %s"
@@ -4194,7 +4311,7 @@ msgstr "Du skal tildele en partition til Swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4202,59 +4319,59 @@ msgstr ""
"\n"
"Fortsćt alligevel?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Du skal have en FAT-partition monteret under /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Brug fri plads"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Ikke nok fri plads til at tildele nye partitioner"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Brug eksisterende partition"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Der er ingen eksisterende partition der kan bruges"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Brug Windows partitionen til Loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Hvilken partition vil du benytte som Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Vćlg střrrelserne"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Rod-partitions střrrelse i Mb: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Swap-partitions střrrelse i Mb: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Brug den frie plads pĺ Windows-partitionen"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Hvilken partition řnsker du at ćndre střrrelse pĺ?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Udregner Windows-filsystemets grćnser"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4263,11 +4380,14 @@ msgstr ""
"Programmet til at ćndre střrrelse pĺ FAT kan ikke behandle din partition, \n"
"den fřlgende fejl opstod: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "Din Windows partition er for fragmenteret, křr 'defrag' fřrst"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4286,54 +4406,54 @@ msgstr ""
"defrag) og sĺ genstarte installationen. Du břr ogsĺ tage en sikkerhedskopi "
"af dine data. Tryk pĺ Ok, hvis du er helt sikker."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Hvilken střrrelse řnsker du at at beholde Windows pĺ?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partition %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT střrrelsesćndring mislykkedes: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Der er ingen FAT-partitioner at ćndre střrrelse pĺ, eller bruge som loopback "
"(eller ikke nok plads tilbage)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Slet hele disken"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Fjern Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Du har mere end et diskdrev, hvilken řnsker du at installere Linux pĺ?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle eksisterende partitioner og deres data vil gĺ tabt pĺ drev %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Brugerdefineret disk-opdeling"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Brug fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4342,11 +4462,11 @@ msgstr ""
"Du kan nu partitionere %s.\n"
"Nĺr du er fćrdig, sĺ husk at gemme med 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Du har ikke nok fri plads pĺ din Windows-partition"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Kan ikke finde plads til installering"
@@ -4354,16 +4474,16 @@ msgstr "Kan ikke finde plads til installering"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX partitionerings-vejlederen fandt de fřlgende lřsninger:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionering mislykkedes: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Bringer netvćrket op"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Lukker netvćrket ned"
@@ -4376,12 +4496,12 @@ msgstr ""
"pćn mĺde.\n"
"Fortsćt pĺ eget ansvar!"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikér monterings-sti %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4393,12 +4513,12 @@ msgstr ""
"Tjek cdrom'en pĺ en fćrdiginstalleret maskine ved brug af \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Intet tilgćngeligt diskettedrev"
@@ -4408,9 +4528,9 @@ msgstr "Intet tilgćngeligt diskettedrev"
msgid "Entering step `%s'\n"
msgstr "Gĺr til trin `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4420,200 +4540,154 @@ msgstr ""
"i stedet\n"
"Dette gřres ved at trykke 'F1' ved opstart fra cdrommen, og sĺ skrive 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installationsmetode"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Vćlg en af de fřlgende installations-mĺder:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Den totale střrrelse af de grupper du har valg er cirka %d Mb.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Hvis du řnsker at installere mindre end denne střrrelse,\n"
-"sĺ vćlg procentdelen af pakker som du vil installere.\n"
-"\n"
-"En lav procentdel vil kun installere de vigtigste pakker;\n"
-"en procentdel pĺ 100%% vil installere alle valgte pakker."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Du har kun plads pĺ din disk til %d%% af disse pakker.\n"
-"\n"
-"Hvis du řnsker at installere mindre end denne střrrelse,\n"
-"sĺ vćlg procentdelen af pakker som du vil installere.\n"
-"En lav procentdel vil kun installere de vigtigste pakker;\n"
-"en procentdel pĺ %d%% vil installere sĺ mange pakker som muligt."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Du har mulighed for at vćlge dem mere prćcist i nćste installationstrin"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procentandel pakker til installation"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Valg af pakkegrupper"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuelt pakkevalg"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Total střrrelse: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Dĺrlig pakke"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Navn: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Střrrelse: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Vigtighed: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Du kan ikke vćlge denne pakke, da der ikke er nok plads tilbage til at "
"installere den"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "De fřlgende pakker vil blive installeret"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "De fřlgende pakker vil blive afinstalleret"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Du kan ikke vćlge/fravćlge denne pakke"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dette er en nřdvendig pakke, den kan ikke vćlges fra"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Du kan ikke fravćlge denne pakke. Den er allerede installeret"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Denne pakke skal opgraderes\n"
"Er du sikker pĺ at du vil fravćlge den?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Du kan ikke fravćlge denne pakke. Den skal opgraderes"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Vis automatisk valgte pakker"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installér"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Indlćs/gem pĺ diskette"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Opdaterer pakkevalg"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimal installation"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Vćlg pakker som skal installeres"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installerer"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Beregnes"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Resterende tid "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Vent venligst, forbereder installationen"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakker"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installerer pakke %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Acceptér"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Nćgt"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4628,17 +4702,17 @@ msgstr ""
"gjort\n"
"Hvis du ikke har den sĺ tryk pĺ Annullér, sĺ undgĺs installation fra denne cd"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Fortsćt alligevel?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Der opstod en fejl ved installeringen af pakkerne:"
@@ -4707,12 +4781,12 @@ msgstr "Der er opstĺet en fejl"
msgid "Do you really want to leave the installation?"
msgstr "Řnsker du virkelig at forlade installationen?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licensaftale"
# Mangler
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4727,7 +4801,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4918,109 +4992,113 @@ msgstr ""
"rette domstol i Paris, Frankrig. Ved spřrgsmĺl omkring dette dokument, "
"kontakt venligst MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Er du sikker pĺ at du afviser licensen?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatur"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Vćlg dit tastaturlayout."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Her er den komplette liste over tilgćngelige tastaturer"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Hvilken installations-klasse řnsker du?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installér/Opdatér"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Er dette en nyinstallation eller en opdatering?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Anbefalet"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Opgradering"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Opgradér kun pakker"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Vćlg muse-type."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muse-port"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Vćlg hvilken seriel port din mus er forbundet til."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulering af knapper"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulering af knap 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulering af knap 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurerer PCMCIA kort..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Konfigurerer IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ingen ledige partitioner"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Skanner partitioner for at finde monteringspunkter"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Vćlg monterings-stierne"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5032,14 +5110,14 @@ msgstr ""
"\n"
"Er du indforstĺet med at řdelćgge alle partitionerne?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
"DiskDrake kunne ikke lćse partitionstabellen korrekt. Fortsćt pĺ eget ansvar!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5047,75 +5125,76 @@ msgstr ""
"Det er ikke plads for 1 MB bootstrap! Installationen vil fortsćtte, men for "
"at starte dit system op, skal du lave en bootstrap partition i DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Ingen rodpartition fundet til opgradering"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rod-partition"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Hvilken partition indeholder systemets rod-partition (/)?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Du skal genstarte for at aktivere ćndringerne i partitionstabellen"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Vćlg partitioner der skal formateres"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Led efter beskadigede blokke?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formaterer partitioner"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Opretter og formaterer fil %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ikke nok swap-plads til at gennemfřre installationen, tilfřj mere"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Leder efter tilgćngelige pakker og genopbygger rpm-database..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Leder efter tilgćngelige pakker"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Leder efter pakker som skal opgraderes"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Leder efter pakker der allerede er installeret..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Dit system har ikke nok plads tilbage til en installation eller opgradering "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Alting (%dMb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Anbefalet (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5123,35 +5202,35 @@ msgstr ""
"Vćlg indlćs eller gem pakkevalg pĺ diskette.\n"
"Formatet er det samme som for auto_install-genererede disketter."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Indlćs fra diskette"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Indlćser fra diskette"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Valg af pakker"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Indsćt en diskette med pakkevalget"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Gem pĺ diskette"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Valgt střrrelse er střrre end tilgćngelig plads"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Installationstype"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5159,19 +5238,19 @@ msgstr ""
"Du har ikke valgt nogen gruppe af pakker.\n"
"Vćlg den minimale installation du řnsker"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Med X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Med basal dokumentation (anbefalet!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Virkelig minimal installation (specielt ingen urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5181,16 +5260,16 @@ msgstr ""
"Hvis du ikke har nogen af disse cd'er, klik Annullér.\n"
"Hvis kun nogen cd'er mangler, fravćlg dem, og klik sĺ Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cdrom med etikette '%s'"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Forbereder installationen"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5199,23 +5278,23 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Konfiguration efter installation"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Indsćt opstartsdisketten i diskette-drevet %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Indsćt Opdater moduler-disketten i drev %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5262,8 +5341,8 @@ msgstr ""
"\n"
"Derudover skal kunder og/eller slutbrugere vćre opmćrksomme pĺ ikke at bryde "
"lokale love fra dit/jeres lokalomrĺde. Skulle en kunde og/eller slutbruger "
-"ikke respektere det lokale omrĺdes love, vil han/de blive udsat for seriřse "
-"sanktioner.\n"
+"ikke respektere det lokale omrĺdes love, vil han/de blive udsat for "
+"alvorlige sanktioner.\n"
"\n"
"Under ingen omstćndigheder kan Mandrakesoft eller deres producenter og/eller "
"leverandřrer holdes ansvarlig for speciel, indirekte eller tilfćldig skade "
@@ -5281,13 +5360,14 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5299,147 +5379,176 @@ msgstr ""
"\n"
"Řnsker du at installere opdateringerne?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontakter Mandrake Linux netsted for at hente listen over tilgćngelige spejle"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Vćlg det spejl hvorfra pakkerne skal hentes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontakter spejlet for at hente listen af tilgćngelige pakker"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Maskin-ur sat til GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjćlp af NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Ekstern CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Ingen printer"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA-lydkort?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Křr \"sndconfig\" efter installation for at konfigurere dit lydkort"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Intet lydkort genkendt. Prřv at křre \"harddrake\" efter installation"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Oversigt"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Mus"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Tidszone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Internt ISDN-kort"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Lydkort"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kort"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokale filer"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Sćt root-adgangskode"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Ingen adgangskode"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dette kodeord er for nemt at gćtte (det skal mindst vćre pĺ %d tegn)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Identifikation"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autentificering LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP grundlćggende dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Autentificering NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-domćne"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Autentificering Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Windows Domain"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Navn pĺ PDC-server"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+"For at fĺ dette til at virke pĺ en W2K PDC skal du nok have administratoren "
+"til at křre: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
+"everyone /add - og genstarte serveren"
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5467,19 +5576,19 @@ msgstr ""
"Hvis du řnsker at lave en opstartsdiskette til dit system, indsćt en "
"diskette i dit fřrste diskettedrev og tryk 'Ok'."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Fřrste diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Andet diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Spring over"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5504,7 +5613,7 @@ msgstr ""
"Vil du lave en opstartsdiskette til dit system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5518,28 +5627,28 @@ msgstr ""
"oprettelse af en opstartsdiskette pĺ en 1.44 Mb diskette vil formentlig\n"
"mislykkes, fordi XFS krćver en meget stor driver)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Der er desvćrre ikke noget tilgćngeligt diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vćlg det diskette-drev, du vil benytte til at lave boot-disketten"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Indsćt en diskette i %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Oprette opstartsdiskette"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Forbereder opstarter"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5550,11 +5659,11 @@ msgstr ""
"opstartsindlćseren vil ikke virke for dig. Installationen vil fortsćtte, men "
"du skal bruge BootX for at starte din maskine."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Řnsker du at bruge aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5563,15 +5672,15 @@ msgstr ""
"forsřg at gennemtvinge installation selv om dette kan řdelćgge den fřrste "
"partition?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Installerer systemopstarter"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installation af opstarter mislykkedes. Den fřlgende fejl opstod:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5588,18 +5697,17 @@ msgstr ""
" Skriv sĺ: shut-down\n"
"Ved nćste opstart burde du se systemstarteren."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Indsćt en tom diskette i drev %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5609,7 +5717,8 @@ msgstr ""
"\n"
"Er du sikker pĺ du řnsker du at lukke nu?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5620,7 +5729,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5634,17 +5743,22 @@ msgstr ""
"Errata pĺ:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
"installation i den Officielle Mandrake Linux Brugervejledning."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5658,15 +5772,15 @@ msgstr ""
"\n"
"Du foretrćkker mĺske at afspille installationen igen\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatisk"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Afspil igen"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Gem pakke-valg"
@@ -5693,44 +5807,24 @@ msgstr "konsolhjćlper mangler"
msgid "Choose a file"
msgstr "Vćlg en fil"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanceret"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Basal"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Vent venligst"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Udvid trć"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sammenfold trć"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Skift mellem flad og gruppesorteret"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Dĺrligt valg, prřv igen\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Dit valg? (standard %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5739,31 +5833,35 @@ msgstr ""
"Indgange som du skal udfylde:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Dit valg? (0/1, standard '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Knap '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Řnsker du at klikke pĺ denne knap?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr " indtast 'void' for tom indgang"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Dit valg? (standard '%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Der er mange ting at vćlge imellem (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5773,7 +5871,7 @@ msgstr ""
"Eller tryk retur for at fortsćtte.\n"
"Dit valg? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5782,327 +5880,327 @@ msgstr ""
"=> Bemćrk, en etikette ćndredes:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Indsend igen"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tjekkisk (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Tysk"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spansk"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finsk"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Fransk"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norsk"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polsk"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russisk"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Svensk"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Britisk"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Amerikansk"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albansk"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armensk (gammel)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armensk (skrivemaskine)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armensk (fonetisk)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidiansk (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgisk"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgarsk (fonetisk)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarsk (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliansk (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Hviderussisk"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Schweizisk (Tysk layout)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Schweizisk (Fransk layout)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tjekkisk (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Tysk (ingen dřde taster)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dansk"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (norsk)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (svensk)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estisk"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgisk (russisk layout)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgisk (Latin layout)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grćsk"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungarsk"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatisk"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelsk"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelsk (Fonetisk)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iransk"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandsk"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiensk"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japansk 106 taster"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreansk tastatur"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinamerikansk"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litauisk AZERTY (gammel)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litauisk AZERTY (ny)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauisk \"talrćkke\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauisk \"fonetisk\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Lettisk"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonisk"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandsk"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugisisk"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadisk (Québec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Russisk (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Russisk (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russisk (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovensk"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakisk (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakisk (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbisk (kyrillisk)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thailandsk"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik tastatur"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkisk (traditionel \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkisk (moderne \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainsk"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Amerikansk (internaltionalt)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamesisk \"talrćkke\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavisk (latinsk)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Hřjre alt-tast"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Begge taster samtidigt"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Kontrol- og skiftetaster samtidigt"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock-tast"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl- og alt-taster samtidigt"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt og Shift-taster samtidigt"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "'Menu'-tast"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Venstre Windows-tast"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Hřjre Windows-tast"
@@ -6115,7 +6213,29 @@ msgstr "Cirkulćre monteringer %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Fjern de logiske delarkiver fřrst\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "et tal"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d kommaseparerede tal"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d kommaseparerede strenge"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "kommaseparerede tal"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "kommaseparerede strenge"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6158,10 +6278,6 @@ msgstr "1 knap"
msgid "Generic 2 Button Mouse"
msgstr "Standard 2-knaps mus"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Standard"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Hjul"
@@ -6226,38 +6342,54 @@ msgstr "ingenting"
msgid "No mouse"
msgstr "Ingen mus"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Test musen"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "For at aktivere musen,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "FLYT PĹ HJULET!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Afslut"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Nćste ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Forrige"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Er dette korrekt?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Udvid trć"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sammenfold trć"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Skift mellem flad og gruppesorteret"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Lav forbindelse til Internettet"
@@ -6304,7 +6436,7 @@ msgstr ""
"Der blev ikke fundet nogen ethernet netvćrksadapter pĺ dit system.\n"
"Kan ikke sćtte denne forbindelsetype op."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Vćlg netvćrksgrćnsesnit"
@@ -6319,7 +6451,7 @@ msgstr ""
msgid "no network card found"
msgstr "kunne ikke finde noget netkort"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfigurerer netvćrk"
@@ -6335,15 +6467,15 @@ msgstr ""
"Dit vćrtsnavn břr vćre et fuldt kvalificeret vćrtsnavn,\n"
"fx 'minpc.mitfirma.dk'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Vćrtsnavn"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Konfigurér netvćrk"
@@ -6400,7 +6532,7 @@ msgstr "ISDN konfiguration"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Vćlg din udbyder.\n"
" Hvis de ikke er i listen, vćlg Ikke listet"
@@ -6419,14 +6551,14 @@ msgstr "Protokol for resten af verden"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol for resten af verden \n"
" ingen D-kanal (lejet linje)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Hvilken protokol řnsker du at bruge?"
#: ../../network/isdn.pm_.c:199
@@ -6450,7 +6582,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Hvis du har et ISA kort burde vćrdiene i nćste billede vćre rigtige.\n"
@@ -6466,13 +6599,13 @@ msgid "Continue"
msgstr "Fortsćt"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Hvilket er dit ISDN-kort?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Jeg har opdaget et ISDN PCI-kort, men jeg ved ikke hvilken type. Vćlg et PCI-"
"kort i nćste skćrmbillede."
@@ -6489,47 +6622,47 @@ msgstr "Angiv hvilken seriel port dit modem er forbundet til."
msgid "Dialup options"
msgstr "Opkaldsindstillinger"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Navn pĺ forbindelsen"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonnummer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Brugernavn"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skript-baseret"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-baseret"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domćnenavn"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Fřrste DNS-server (valgfri)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Anden DNS-server (valgfri)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6538,7 +6671,7 @@ msgstr ""
"Du kan lukke forbindelsen til Internettet eller genkonfigurere din "
"forbindelse."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6546,11 +6679,11 @@ msgstr ""
"\n"
"Du kan genkonfigurere din forbindelse"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Du har forbindelse til Internettet nu."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6558,32 +6691,32 @@ msgstr ""
"\n"
"Du kan lave forbindelse til Internettet eller omkonfigurere din forbindelse."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Du er ikke forbundet til Internettet nu."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Tilslut"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Afbryd"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Konfigurér forbindelsen"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetforbindelse & -konfiguration"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Vi skal nu konfigurere opkoblingen '%s'."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6602,12 +6735,12 @@ msgstr ""
"\n"
"Tryk OK for at begynde."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurér netvćrk"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6619,9 +6752,9 @@ msgstr ""
"Klik OK for at beholde din konfiguration, eller annullér for at "
"omkonfigurere din Internet- og netvćrksforbindelse.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6631,66 +6764,72 @@ msgstr ""
"Vi skal til at konfigurere din internet- eller netvćrksforbindelse.\n"
"Hvis du ikke řnsker at bruge autodetektering, sĺ fravćlg afkrydsningsboksen\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Vćlg profilen der skal konfigureres"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Brug automatisk detektion"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Eksperttilstand"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detekterer enheder..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normal modemforbindelse"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "Detekteret pĺ port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN-forbindelse"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "Detekteret %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL opkobling"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "Detekteret pĺ grćnseflade %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelforbindelse"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabelopkobling detekteret"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Lokalnet-konfiguration"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet-kort detekteret"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Vćlg den opkobling, du řnsker at konfigurere"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6700,23 +6839,23 @@ msgstr ""
"Venligst vćlg den du řnsker at bruger.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet opkobling"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Řnsker du at starte din forbindelse ved opstart?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Netvćrks konfiguration"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Netvćrket skal startes op igen"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6727,7 +6866,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6737,7 +6876,7 @@ msgstr ""
"Konfigurationen vil nu blive anvendt pĺ dit system.\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6745,19 +6884,19 @@ msgstr ""
"Derefter anbefaler vi at du genstarter dit X-miljř for\n"
"at undgĺ problemer med det ćndrede vćrtsnavn"
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Problemer indtraf under konfigurationen.\n"
"Afprřv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
"virker, kan du prřve at genstarte konfigurationen."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6767,7 +6906,7 @@ msgstr ""
"Ved kun at trykke pĺ OK beholder du den nuvćrende konfiguration.\n"
"Ćndringer i felterne nedenunder vil overskrive denne konfiguration."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6776,38 +6915,42 @@ msgstr ""
"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurerer netvćrksenheden %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (drivprogram %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-adresse"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmaske"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatisk IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Start ved opstart"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresse skal have formatet 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6819,64 +6962,64 @@ msgstr ""
"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
"sĺ lad navne-server-felterne vćre blanke."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS-server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (fx %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway enhed"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfiguration af mellemvćrt (proxy)"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Fřlg id for netvćrkskort (nyttigt for bćrbare)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy skal vćre http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy skal vćre ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet-konfiguration"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Řnsker du at forsřge at skabe forbindelse til Internettet nu?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Tester din forbindelse..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Systemet er ikke forbundet til Internettet nu."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Af sikkerhedsgrunde vil det blive afbrudt nu."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6884,111 +7027,116 @@ msgstr ""
"Det lader ikke til at dit system har forbindelse til Internettet.\n"
"Prřv at omkonfigurere din forbindelse."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Forbindelses-konfiguration"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Udfyld eller markér feltet nedenunder"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kort IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kort mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kort IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kort IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kort IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Dit personlige telefonnummer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Navn pĺ udbyder (f.eks. udbyder.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Udbyders telefonnummer"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Udbyder DNS 1 (valgfri)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Udbyder DNS 2 (valgfri)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Vćlg dit land"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Opringningsmĺde"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Opkoblingshastighed"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Opkoblingens tidsudlřb (i sekunder)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Konto-login (brugernavn)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Kodeord for konto"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Storbritannien"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montering mislykkedes: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Udvidet partition ikke understřttet pĺ denne platform"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Du har plads tilovers i din partitionstabel, men jeg kan ikke udnytte den.\n"
"Den eneste lřsning er at flytte dine primćre partitioner, sĺledes at\n"
"\"hullet\" bliver placeret ved siden af de udvidede partitioner."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Genskabning fra fil %s mislykkedes: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fejl i sikkerhedskopien"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fejl ved skrivning til fil %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6998,186 +7146,186 @@ msgstr ""
"En test for at tjekke integriteten af data er mislykkedes. \n"
"Dette betyder at alt pĺ disken vil ende som tilfćldigt snavs"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "skal have"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "vigtigt"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "meget rart"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "rart"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "mĺske"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Dćmon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokal printer"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Ekstern printer"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Printer pĺ ekstern CUPS server"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Printer pĺ ekstern lpd server"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Netvćrksprinter (TCP/sokkel)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Printer pĺ SMB/Windows 95/98/NT server"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Printer pĺ en NetWare server"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Indtast en printerenheds-URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "kanalisér opgave ind i kommando"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Ukendt model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokale printere"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Eksterne printere"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " pĺ parallelport \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB printer \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multi-funktions-enhed pĺ parallel port \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", multi-funktions-enhed pĺ USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", multi-funktions-enhed pĺ HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", multi-funktions-enhed"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", skriver til %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "pĺ LPD-server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP vćrt \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "pĺ Windows-server \"%s\", deling \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "pĺ Novell-server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", med kommando %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Rĺ printer (ingen driver)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(pĺ %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(pĺ denne maskine)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Pĺ CUPS-server '%s'"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Forvalgt)"
@@ -7199,11 +7347,11 @@ msgstr ""
"Eksterne CUPS-servere behřver du ikke at konfigurere her: \n"
"disse printere vil automatisk blive fundet."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "CUPS-Konfiguration"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Angiv CUPS server"
@@ -7245,7 +7393,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adressen břr se ud som 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Port-nummeret břr vćre et heltal!"
@@ -7253,7 +7401,7 @@ msgstr "Port-nummeret břr vćre et heltal!"
msgid "CUPS server IP"
msgstr "CUPS-serverens IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7261,20 +7409,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatisk CUPS-konfiguration"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Sřger efter enheder..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Afprřv porte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Tilfřj en ny printer"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7296,13 +7436,13 @@ msgstr ""
"giver dig adgang til alle tilgćngelige printerdrivere, drivermuligheder og "
"opkoblingstyper for printere."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokal printer"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7334,11 +7474,11 @@ msgstr ""
"řnsker at opsćtte udskrift pĺ en ekstern printer og Printerdrake ikke lister "
"denne automatisk."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Auto-opdagelse af printere"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7361,11 +7501,11 @@ msgstr ""
"řnsker at ćndre pĺ standard-indstillingerne (papirbakke, printkvalitet ...), "
"sĺ vćlg 'Printer' i 'Udstyr'-afsnittet i Mandrake Kontrolcentret."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Auto-opdagelse af printere"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7381,33 +7521,37 @@ msgstr ""
"\n"
"Řnsker du virkeligt at fĺ dine printere automatisk opdaget?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Udfřr automatisk detektion"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Opsćt printer manuelt"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Afprřv porte"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Fandt %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer pĺ parallel port \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-printer \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7419,11 +7563,11 @@ msgstr ""
"dev/lp1 ..., svarende til LPT1:, LPT2: ..., fřrste USB-printer: /dev/usb/"
"lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Du skal indtaste en enhed eller et filnavn!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7431,7 +7575,7 @@ msgstr ""
"Ingen lokal printer fundet!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7439,7 +7583,7 @@ msgstr ""
"Netvćrksprintere kan kun installeres efter installeringen. Vćlg 'Udstyr' og "
"dernćst 'Printer' i Mandrake kontrolcentret."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7447,7 +7591,7 @@ msgstr ""
"For at installere netvćrksprintere skal du klikke pĺ 'Annullér', skifte til "
"'Ekspert-version' og klikke pĺ 'Tilfřj en ny printer' igen."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7455,7 +7599,7 @@ msgstr ""
"Den fřlgende printer blev opdaget automatisk. Hvis det ikke er den du řnsker "
"at opsćtte sĺ indtast et enhedsnavn/filnavn pĺ inddatalinjen"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7463,7 +7607,7 @@ msgstr ""
"Her er en liste over alle automatisk opdagede printere. Vćlg den printer du "
"řnsker at opsćtte eller indtast et enhedsnavn/filnavn pĺ inddatalinjen"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7475,7 +7619,7 @@ msgstr ""
"eller hvis du foretrćkker en tilpasset printerkonfiguration, sĺ slĺ 'Manuel "
"konfiguration' til."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7488,7 +7632,7 @@ msgstr ""
"foretrćkker en tilpasset printerkonfiguration, sĺ slĺ 'Manuel konfiguration' "
"til."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7496,11 +7640,11 @@ msgstr ""
"Angiv hvilken port din printer er forbundet til eller indtast et enhedsnavn/"
"filnavn pĺ inddatalinjen"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Angiv hvilken port din printer er forbundet til."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7508,52 +7652,65 @@ msgstr ""
"(parallelporte: /dev/lp0, /dev/lp1 ..., svarende til LPT1:, LPT2: ..., "
"fřrste USB-printer: /dev/usb/lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Du skal vćlge eller indtaste en printer/enhed!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Manuel konfiguration"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Er din printer en multi-funktionsenhed fra HP (OfficeJet, PSC, PhotoSmart, "
"LaserJet 1100/1200/1220/3200/3300 med skanner)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Installerer HPOJ-pakke..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Tjekker enhed og konfigurerer HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Installerer SANE-pakke..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Installerer pakker..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skanner pĺ din HP multi-funktionsenhed"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skanner pĺ din HP multi-funktionsenhed"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Gřr printerport tilgćngelig for CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Lćser database over printere ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Parametre til ekstern lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7561,27 +7718,27 @@ msgstr ""
"For at bruge en ekstern printer, skal du opgive vćrtsnavnet\n"
"for printerserveren og navnet pĺ printeren pĺ denne server."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Eksternt vćrtsnavn"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Eksternt printernavn"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Eksternt vćrtsnavn mangler"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Det eksterne vćrtsnavn mangler!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT)-printer indstillinger"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7593,35 +7750,35 @@ msgstr ""
"IP-adressen pĺ printerserveren, sĺ vel som delenavnet for printeren du vil "
"bruge samt nřdvendig information om brugernavn, adgangskode og arbejdsgruppe."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-servervćrt"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-serverens IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Dele-navn"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Arbejdsgruppe"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Enten servernavnet eller serverens IP skal angives!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Samba-delenavn mangler!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "SIKKERHEDSADVARSEL!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7664,7 +7821,7 @@ msgstr ""
"Opsćt dernćst udskrift fra denne maskine med '%s'-opkoblingstypen i "
"Printerdrake.\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7676,7 +7833,7 @@ msgstr ""
"protokollen, og opsćt udskrift fra denne maskine med '%s'-opkoblingstypen i "
"Printerdrake.\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7688,11 +7845,11 @@ msgstr ""
"\n"
"Řnsker du virkelig at fortsćtte med at opsćtte din printer som du gřr nu?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare printer-parametre"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7704,27 +7861,27 @@ msgstr ""
"navnet!) sĺvel som křnavnet for den printer du vil benytte samt om "
"nřdvendigt et brugernavn og en adgangskode."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printer-server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Printerkř-navn"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-servernavn mangler!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-křnavn mangler!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/Sokkel-printer-parametre"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7735,19 +7892,19 @@ msgstr ""
"printeren, og eventuelt portnummer. Pĺ HP JetDirect-servere er portnummeret "
"normalt 9100, pĺ andre servere varierer det. Tjek manualen for dit udstyr."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "printer-vćrtsnavn"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "printer-vćrtsnavn mangler!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printer-enheds URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7757,11 +7914,11 @@ msgstr ""
"CUPS- eller Foomatic-standarden. Bemćrk at ikke alle typer URIer "
"understřttes af alle kř-behandlere."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "En korrekt URI skal opgives!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7770,27 +7927,23 @@ msgstr ""
"Beskrivelsen og lokaliseringsfelterne behřver ikke \n"
"udfyldes. De er kommentarer til brugerne."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Navn pĺ printer"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Placering"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Forbereder printerdatabase: ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Din printermodel"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7815,24 +7968,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Modellen er korrekt"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Vćlg model manuelt"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Valg af printermodel"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Hvilken printermodel har du?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7848,7 +8001,7 @@ msgstr ""
"nĺr markřren stĺr pĺ en forkert model, eller\n"
"pĺ 'Rĺ printer'."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7856,11 +8009,11 @@ msgstr ""
"Hvis din printer ikke er listet, sĺ vćlg en kompatibel (se printermanual) "
"eller en lignende printer."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI konfiguration af winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7876,11 +8029,11 @@ msgstr ""
"parallelle port fřr du udskriver en prřveside. Ellers vil printeren ikke "
"virke. Din opsćtning af forbindelsestype vil blive ignoreret af driveren."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet konfiguration"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7892,7 +8045,7 @@ msgstr ""
"din printer til en lokal port eller konfigurér den pĺ den maskine, den er "
"forbundet til."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7914,7 +8067,7 @@ msgstr ""
"'lexmarkmaintain', og justér opsćtningen af justeringen af hovedet med dette "
"program."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7930,22 +8083,22 @@ msgstr ""
"enhed, ekstra bakker) er sat rigtigt. Bemćrk at en meget god "
"udskriftskvalitet kan gřre udskriften betydeligt langsommere."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valg %s skal vćre et helt tal!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Valg %s skal vćre et tal!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Valg %s er udenfor omrĺde!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7954,11 +8107,11 @@ msgstr ""
"Řnsker du fremover at bruge printeren \"%s\"\n"
"som standard?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testsider"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7970,39 +8123,39 @@ msgstr ""
"laserprintere med for lidt hukommelse vil den mĺske ikke skrives ud i det "
"hele taget. Som regel vil det vćre nok at udskrive standard-testsiden."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Ingen testsider"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Udskriv"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standard testside"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternativ testside (letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativ testside (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Fototestside"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Udskriv ikke nogen testsider"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Udskriver testsider..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8017,7 +8170,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8025,15 +8178,15 @@ msgstr ""
"Testsider er sendt til printeren.\n"
"Det kan tage lidt tid fřr printeren starter.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Fungerer det korrekt?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Rĺ printer"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8046,7 +8199,7 @@ msgstr ""
"'kprinter <fil>'. De grafiske vćrktřjer lader dig vćlge printeren og ćndre "
"indstillingerne pĺ en nem mĺde.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8056,8 +8209,8 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad vćre med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8070,11 +8223,11 @@ msgstr ""
"bestemt udskriftsjob. Tilfřj blot de řnskede indstillinger til "
"kommandolinjen, fx '%s <fil>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Hvilke muligheder der er for den aktuelle printer kan du enten lćse pĺ "
@@ -8082,7 +8235,7 @@ msgstr ""
"s.\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8090,7 +8243,7 @@ msgstr ""
"Her er en liste over tilgćngelige printmuligheder for den aktuelle printer:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8099,8 +8252,8 @@ msgstr ""
"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
"kommandoen '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8110,7 +8263,7 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad vćre med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8118,7 +8271,7 @@ msgstr ""
"For at fĺ en liste af tilgćngelige muligheder for den aktuelle printer kan "
"du klikke pĺ knappen 'Liste med printermuligheder'."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8127,7 +8280,7 @@ msgstr ""
"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
"kommandoen '%s <fil>' eller '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8143,7 +8296,7 @@ msgstr ""
"řjeblikkeligt nĺr du klikker pĺ den. Dette er fx nyttigt hvis papiret "
"krřller sammen.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8156,38 +8309,49 @@ msgstr ""
"for et bestemt udskriftsjob. Tilfřj blot de řnskede indstillinger til "
"kommandolinjen, fx '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Luk"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Udskriver eller skanner pĺ '%s'"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Udskriver eller skanner pĺ '%s'"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Udskriver eller skanner pĺ '%s'"
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Udskriver pĺ printeren '%s'"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Luk"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Liste med printermuligheder"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8200,38 +8364,30 @@ msgstr ""
"\n"
"Brug ikke \"scannerdrake\" pĺ denne enhed!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne skanne. "
-"Nu kan du skanne med 'ptal-hp %s scan ...' fra kommandolinjen. Skanning via "
-"en grafisk grćnseflade eller fra GIMP er endnu ikke understřttet for din "
-"enhed. Du kan finde mere information i filen \"/usr/share/doc/hpoj-0.8/ptal-"
-"hp-scan.html\" pĺ dit system. Hvis du har en HP LaserJet 1100 eller 1200 kan "
-"du kun skanne nĺr du har skannermuligheden installeret pĺ udstyret.\n"
-"\n"
-"Brug ikke \"scannerdrake\" pĺ denne enhed!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Lćser printerdata ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Overfřr printerkonfiguration"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8246,7 +8402,7 @@ msgstr ""
"opgaver.\n"
"Ikke alle křer kan overfřres pĺ grund af:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8254,7 +8410,7 @@ msgstr ""
"CUPS understřtter ikke printere pĺ Novellservere eller printere som sender "
"dataene ind i en frit-formet kommando.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8262,11 +8418,11 @@ msgstr ""
"PDQ understřtter kun lokale printere, eksterne LPD printere, og Sokkel/TCP "
"printere.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD og LPRng understřtter ikke IPP printere.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8274,7 +8430,7 @@ msgstr ""
"Desuden kan křer lavet med dette program eller \"foomatic -configure\" ikke "
"overflyttes."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8284,7 +8440,7 @@ msgstr ""
"Printere konfigureret med PPD-filerne, som producenten har lavet, eller med "
"CUPS egne drivere kan heller ikke overflyttes."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8294,15 +8450,15 @@ msgstr ""
"Vćlg printerene som du vil overflytte og klik\n"
"\"Overfřr\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Overfřr ikke printere"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Overfřr"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8313,11 +8469,11 @@ msgstr ""
"Klik \"Overfřr\" for at overskrive.\n"
"Du kan ogsĺ give et nyt printernavn, eller overspringe denne printer."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Navn pĺ printer břr kun indeholde bogstaver, tal og understregen _"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8326,16 +8482,16 @@ msgstr ""
"Printeren \"%s\" eksisterer allerede,\n"
"řnsker du virkelig at overskrive dens konfiguration?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nyt printernavn"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Overfřrer %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8344,29 +8500,29 @@ msgstr ""
"Du har overfřrt din tidligere standard-printer '%s', skal den ogsĺ vćre "
"standard-printer under det nye printersystem %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Opfrisker printerdata ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Konfiguration af en ekstern printer"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Starter netvćrk ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Konfigurér netvćrket nu"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Netvćrksfunktionalitet ikke konfigureret"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8378,11 +8534,11 @@ msgstr ""
"fortsćtte uden en netvćrkskonfiguration, vil du ikke kunne bruge printeren "
"som du konfigurerer nu. Hvordan řnsker du at fortsćtte?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Fortsćt med konfigurering af netvćrk"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8397,7 +8553,7 @@ msgstr ""
"'Forbindelse', og konfigurér derefter printeren ogsĺ med Mandrake "
"Kontrolcenter, afsnittet om 'Maskinel'/'Printer'"
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8406,24 +8562,24 @@ msgstr ""
"Netvćrksadgangen křrte ikke og kunne ikke startes. Tjek din konfiguration og "
"dit udstyr. Prřv derefter at konfigurere din eksterne printer igen."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Genstarter printsystemet ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "hřj"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoid"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installerer et printersystem pĺ sikkerhedsniveauet %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8448,11 +8604,11 @@ msgstr ""
"\n"
"Řnsker du virkelig at konfigurere udskrivning pĺ denne maskine?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Starter printsystemet ved opstart"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8472,63 +8628,63 @@ msgstr ""
"\n"
"Řnsker du at have den automatiske opstart af printsystemet slĺet til igen?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Tjekker installeret programmel..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Fjerner LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Fjerner LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Vćlg printerkř-behandler"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hvilket printersystem (spooler) řnsker du at bruge?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigurerer printer '%s'..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Installerer Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Printer-muligheder"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Forbereder PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Konfigurerer programmer..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Vil du gerne konfigurere udskrivning?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Printsystem: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8540,7 +8696,7 @@ msgstr ""
"information om den; eller for at gřre en ekstern CUPS-printer tilgćngelig "
"for Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8550,29 +8706,33 @@ msgstr ""
"dens indstillinger, for at gřre den til standard-printer, eller for at se "
"information om den."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Opfrisk printerliste (for at vise alle tilgćngelige eksterne CUPS-printere)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Ćndr printsystemet"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normal udgave"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Afslut"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Řnsker du at konfigurere en anden printer?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Ćndr printerkonfiguration"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8581,104 +8741,104 @@ msgstr ""
"Printer %s\n"
"Hvad řnsker du at forandre pĺ, pĺ denne printer?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Gřr det!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Printeropkoblingstype"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Printernavn, beskrivelse, sted"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Printerproducent, model, driver"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Printerproducent, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Sćt printeren som standard-printer"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Tilfřj denne printer til Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Fjern denne printer fra Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Udskriver testsider"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Véd hvordan denne printer bruges"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Fjern printer"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Fjerner gammel printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Fjerner gammel printer \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Standard printer"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Printeren '%s' er nu sat som standard-printer."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Tilfřjer printer til Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Printeren \"%s\" blev tilfřjet til Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"Kunne ikke tilfřje printeren \"%s\" til Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Fjerner printer fra Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Printeren \"%s\" blev fjernet fra Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Kunne ikke fjerne printeren \"%s\" fra Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Řnsker du virkelig at fjerne printeren \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Fjerner printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
+msgstr "Fjerner printer \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8762,24 +8922,61 @@ msgstr "Adgangskoderne stemmer ikke overens. Prřv igen!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan ikke tilfřje en partition til _formatéret_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Kan ikke skrive filen %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid fejlede"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid fejlede (mĺske mangler raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Dette niveau skal bruges med omtanke. Det gřr dit system nemmere at bruge, "
+"men er meget sĺrbart: det mĺ ikke bruges til en maskine der er i et netvćrk "
+"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
+"adgangskoder."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Med dette sikkerhedsniveau kan brug som server komme pĺ tale.\n"
+"Sikkerheden er nu hřj nok til at systemet kan bruges som server som tillader "
+"forbindelser fra mange klienter. Bemćrk: hvis din maskine kun er en klient "
+"pĺ internettet břr du hellere vćlge et lavere niveau."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Avancerede muligheder"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Valg"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystemet"
@@ -8836,7 +9033,7 @@ msgstr ""
"HardDrake křrer en sřgning efter maskinel, og kan konfigurere nyt/ćndret "
"maskinel."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache er en webserver. Den bruges til at betjene HTML-filer og CGI."
@@ -8909,7 +9106,7 @@ msgstr ""
"Linux Virtuel Server, brugt til at bygge en server med hřj ydelse og\n"
"tilgćngelighed."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8986,7 +9183,7 @@ msgstr ""
"NFS og NIS. Portmap serveren skal křre pĺ maskiner som bruger protokoller "
"der udnytter RPC mekanismen"
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9082,7 +9279,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fildeling"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "System"
@@ -9211,6 +9408,7 @@ msgstr ""
"gcc-oversćtteren og de bedste Ĺben Kildekode-udviklingsmiljřer"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolcenter"
@@ -9332,6 +9530,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Installerer pakker..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Log ud og tryk herefter pĺ Ctrl-Alt-Bak"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Log ind i %s igen for at aktivere ćndringerne"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9340,6 +9547,145 @@ msgstr ""
"Jeg kan ikke lćse din partitionstabel, den er for řdelagt :(\n"
"Jeg vil forsřge mig med at slette de beskadigede partitioner"
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Konfiguration af Mandrake Terminalserver"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Aktivér server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Deaktivér server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Start server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Stop server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot diskette/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Opstartsbilleder for netopstart"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Tilfřj/slet brugere"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Tilfřj/slet klienter"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Hjćlp"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Start fra sdiskette"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Start fra ISO"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Opbyg hele kernen -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Dette vil tage nogle fĺ minutter."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Ingen kerne valgt!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Byg enkel NIC -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Ingen NIC valgt!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Byg alle kerner -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Slet"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "Slet alle NBI'er"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Tilfřj bruger -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Slet bruger"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Tilfřj klient -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Slet klient"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Konfigurér dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Udskriv konfiguration"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "Indsćt diskette:"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Kunne ikke fĺ adgang til disketten!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Diskette kan fjernes nu"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Intet tilgćngeligt diskettedrev!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "Etherboot ISO-aftryk er %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Noget gik galt!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Skal oprette /etc/dhcpd.conf fřrst!"
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fejl!"
@@ -9391,6 +9737,10 @@ msgstr ""
"Vćlg for hvert skridt om det skal vćre som under installationen, eller "
"manuelt"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Laver autoinstallations-diskette"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9403,12 +9753,12 @@ msgstr ""
"\n"
"Parametrene for autokonfigurationen kan ses i afsnittene til venstre"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Tillykke!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9416,28 +9766,19 @@ msgstr ""
"Disketten er blevet genereret.\n"
"Du kan nu gennemfřre installationen igen."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Autoinstallation"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Tilfřj et element"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Fjern det sidste element"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9447,7 +9788,7 @@ msgstr ""
" DrakBackup Rapport \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9459,19 +9800,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9483,63 +9812,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "total fremdrift"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Sikkerhedskopiér systemfiler..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Sikkerhedskopifiler for disk..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Sikkerhedskopiér brugerfiler..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Fremdrift for sikkerhedskopiering af disk..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Sikkerhedskopiér andre filer..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"filliste sending via FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
+"\n"
+"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
"FTP.\n"
+
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
"\n"
-"(!) FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler "
-"via FTP.\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Fejl ved afsendelse af post. \n"
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr " Fejl ved afsendelse af post. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Valg af filer"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Vćlg filerne eller katalogerne og klik pĺ 'Tilfřj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9547,26 +9899,26 @@ msgstr ""
"\n"
"Markér alle muligheder som du behřver.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Disse valgmuligheder kan sikkerhedskopiere og genskabe alle filer i dit /etc "
"katalog.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Lav sikkerhedkopi af dine systemfiler. ( /etc kataloget)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Medtag ikke kritiske filer (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9574,83 +9926,77 @@ msgstr ""
"Med denne valgmulighed vil du vćre i stand til at kunne genskabe\n"
"enhver version af dit /etc katalog."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Markér alle brugere som du vil have med i din sikkerhedskopi."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Medtag ikke cache for netlćser"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Fjern valgte"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Brugere"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Brug FTP forbindelse til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Indtast vćrtsnavn eller IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Indtast kataloget hvori\n"
" sikkerhedskopien skal lćgges pĺ denne maskine."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Indtast dit brugernavn"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Indtast din adgangskode"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Husk denne adgangskode"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP forbindelse"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sikker forbindelse"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Vćlg din cd-plads"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Markér om du bruger et CDRW-medie"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Markér om du vil slette din CDRW fřr ny skrivning"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9658,7 +10004,7 @@ msgstr ""
"Markér om du řnsker at medtage\n"
" installeringsopstart pĺ din cd."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9666,16 +10012,21 @@ msgstr ""
"Indtast din CD-brćnders enhedsnavn\n"
" fx: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "brug bĺnd til sikkerhedskopieringen"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Indtast endhedsnavnet der skal bruges til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Markér om du vil slette din CDRW fřr ny skrivning"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9683,51 +10034,57 @@ msgstr ""
"Indtast den maksimale střrrelse\n"
" tilladt for Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Indtast kataloget der skal gemmes:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Brug kvoter for sikkerhedskopieringsfiler"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Netvćrk"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Diskdrev / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Type"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "timeligt"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "dagligt"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "ugentligt"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "mĺnedligt"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Brug dćmon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9735,7 +10092,7 @@ msgstr ""
"Vćlg tidsinterval mellem\n"
"hver sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9743,71 +10100,67 @@ msgstr ""
"Vćlg mediet for\n"
"sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Brug diskdrev med dćmon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Brug FTP med dćmon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+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 "Forsikr dig gerne at cron-dćmonen er med i dine tjenester."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Hvad"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Hvor"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Hvornĺr"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Flere muligheder"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Drakbackup konfiguration"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Vćlg hvor du řnsker at sikkerhedskopiere"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "pĺ diskdrev"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "over netvćrk"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Vćlg hvad du vil sikkerhedkopiere"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Lav sikkerhedskopi af system"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Lav sikkerhedskopi af brugere"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Hĺndpluk bruger"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9815,7 +10168,7 @@ msgstr ""
"\n"
"Kilder for sikkerhedskopi: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9823,7 +10176,7 @@ msgstr ""
"\n"
"- Systemfiler:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9831,7 +10184,7 @@ msgstr ""
"\n"
"- Brugerfiler:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9839,7 +10192,7 @@ msgstr ""
"\n"
"- Andre filer:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9848,16 +10201,45 @@ msgstr ""
"\n"
"- Gem til diskdrev pĺ stien: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Muse-enhed: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Gem via FTP pĺ vćrt : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Gem via FTP pĺ vćrt : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9866,7 +10248,7 @@ msgstr ""
"\t\t brugernavn: %s\n"
"\t\t pĺ sti: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9874,19 +10256,19 @@ msgstr ""
"\n"
"- Muligheder:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tMedtag ikke systemfiler\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9895,27 +10277,41 @@ msgstr ""
"\n"
"- Dćmon (%s) indeholder:\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Diskdrev.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-cdrom.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Netvćrk via FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Netvćrk via SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Netvćrk via FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Netvćrk via FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ingen konfiguration, klik pĺ Vejleder eller Avanceret.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9923,7 +10319,7 @@ msgstr ""
"Liste over data som skal genskabes:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9931,130 +10327,133 @@ msgstr ""
"Liste over data der er řdelagt:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Afmarkér eller fjern det gerne nćste gang."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Sikkerhedskopifiler er řdelagte"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Alle dine valgte data er blevet "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " genskabt uden fejl pĺ %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Genskab konfiguration "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "O.k. at genskabe de andre filer."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Brugerliste at genskabe (kun den nyeste dato per bruger er vigtig)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Lav sikkerhedskopi af systemfiler fřr:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Vćlg dato for genskabning"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Brug disk til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Indtast kataloget der skal gemmes:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP forbindelse"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sikker forbindelse"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Genskab fra disk."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Vćlg et andet medie at genskabe fra"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Andet medie"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Genskab system"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Genskab brugere"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Genskab andet"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "vćlg sti at genskabe (i stedet for / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lav ny sikkerhedskopi fřr genskabning (kun for inkrementalbackupper)."
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Fjern brugerkataloger fřr genskabning."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Genskab alle sikkerhedskopier"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Tilpasset genskabelse"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Hjćlp"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Forrige"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Gem"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Opbyg sikkerhedskopien"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Genskab"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Nćste"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10062,7 +10461,7 @@ msgstr ""
"Lav sikkerhedskopieringen fřr genskablesen af den...\n"
" eller efterse at stien til gemning er korrekt."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10072,31 +10471,35 @@ msgstr ""
" din rapport blev ikke sendt\n"
" Konfigurér venligst sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Pakkeliste til installation"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "De fřlgende pakker vil blive installeret"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Fejl ved sending af fil via FTP.\n"
" Ret venligst din FTP-konfiguration."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Udvćlg de data du vil genskabe..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Vćlg medie for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Vćlg data for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10104,75 +10507,75 @@ msgstr ""
"ingen konfigurationsfil fundet \n"
"klik pĺ Vejleder eller Avanceret."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Under udvikling ... vent venligst:-)"
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Lav sikkerhedskopi af systemfiler"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Lav sikkerhedskopi af brugerfiler"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Lav sikkerhedskopi af andre filer"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "Filer sendes via FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Sender filer..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Dataliste som skal medtages pĺ cdrom."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Indtast hastighed pĺ cd-brćnder"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Indtast navnet pĺ enheden for din cd-brćnder (fx: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Markér om du řnsker at medtage installeringsopstart pĺ din cd."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Se konfiguration af sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Konfiguration med vejleder"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Avanceret konfiguration"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Lav sikkerhedskopiering nu"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10232,7 +10635,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10246,7 +10649,7 @@ msgstr ""
" sćtte myhostname eller mydomain i /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10322,7 +10725,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10371,13 +10774,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft ved DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -10409,7 +10817,7 @@ msgstr ""
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
"USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10483,7 +10891,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10501,7 +10909,7 @@ msgstr ""
"fřr den sendes til ftp-serveren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10523,7 +10931,7 @@ msgstr ""
"Det er vigtigt at vćre forsigtig og ikke ćndre sikkerhedskopieringens\n"
"datafiler i hĺnden.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10601,99 +11009,525 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Installationen af %s mislykkedes. Fřlgende fejl opstod:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Mandrake vćrktřj til fejlrapportering"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Fřrstegangshjćlper"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Synkroniseringsvćrktřj"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr "Fritstĺende vćrktřjer"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msek"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Ekstern kontrol"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Programmeladministration"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Migrationsvćrktřj for MS Windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Vejledere til konfiguration"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Applikation:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Pakke: "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Kerne:"
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Udgave: "
+
+#: ../../standalone/drakbug_.c:87
+#, fuzzy
+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"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+"\n"
+"\n"
+"For at indsende en fejlrapport klik da pĺ rapport-knappen.\n"
+"Dette vil ĺbne et vindue i en netlćser pĺ https://www.bugzilla.com\n"
+" hvor du vil finde en formular der kan udfyldes. Informationen vist ovenfor "
+"vil blive overfřrt til den server\n"
+"\n"
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Ikke installeret"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Rapport"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Opkobler til vejleder for Bugzilla"
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Ingen netlćser til stede! Installér venligts én"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netvćrkskonfiguration (%d adaptorer)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Slet profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil der skal slettes:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Ny profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Navnet pĺ profilen der skal oprettes (den nye profil oprettes som en \n"
+"kopi af den nuvćrende) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Vćrtsnavn: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetadgang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Type:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Grćnseflade:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Vent venligst"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Konfigurér Internetadgang..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN konfiguration"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drivprogram"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Grćnseflade"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Konfigurér lokalnetvćrk..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Klik her for at starte vejlederen ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Vejleder..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Anvend"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Vent venligst... Sćtter konfigurationen i anvendelse"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Tilsluttet"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ikke tilsluttet"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Tilslut..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Afbrud..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Advarsel, en anden internetforbindelse er blevet fundet, der mĺske bruger "
+"dit netvćrk"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Du har ingen konfigurerede grćnsesnit.\n"
+"Konfigurér disse fřrst ved at klikke pĺ 'Konfigurér'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN konfiguration"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Opstartsprotokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Startede med opstart"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP-klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivér nu"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivér nu"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Dette grćnsesnit er ikke blevet konfigureret endnu.\n"
+"Start konfigurationsvejlederen i hovedvinduet"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Du har ingen internet-opkobling.\n"
+"Opret én fřrst ved at klikke pĺ 'Konfigurér'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfiguration af Internetforbindelse"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfiguration af Internetforbindelse"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Type af forbindelse"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametre"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet-kort"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "brug: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulnavn"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Střrrelse"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "fremstilling af opstartsdiskette"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "standard"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy fejl: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "kerne-version"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Generelt"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ekspertomrĺde"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd valgfrie argumenter"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Tilfřj et modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "tving"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "hvis nřdvendigt"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "undgĺ scsi-moduler"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "undgĺ raid-moduler"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Fjern et modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Uddata"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Opbyg disken"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Forsikr dig at der er et medie tilstede i enheden %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
+"Indsćt venligst noget."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Kan ikke fork(): %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Kan ikke lukke mkbootdisk ordentligt: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Sřg efter installerede skrifttyper"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Fravćlg installerede skrifttyper"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "fortolk alle skrifttyper"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "kunne ikke finde nogen skrifttyper"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "fćrdig"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "Kunne ikke finde nogen skrifttyper i dine monterede partitioner"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Genvćlg korrekte skrifttyper"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "Kunne ikke finde nogen skrifttyper.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Sřg efter skrifttyper i installeret liste"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopi af skrifttyper"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installation af True Type-skrifttyper"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Vent venligst pĺ ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Installation af True Type fćrdig"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konvertering af skrifttyper"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "opbyg type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscript referencer"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "Konvertering af ttf-skrifttyper"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "Konvertering af pfm-skrifttyper"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Undertryk midlertidige filer"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Genstart XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Undertryk skrifttypefiler"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "genstart af xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10707,107 +11541,107 @@ msgstr ""
"-Du kan installere skrifttyperne pĺ normal mĺde. I sjćldne tilfćlde kan "
"fejlbehćftede skrifttyper fĺ din X-server til at hćnge."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Import af skrifttyper"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Hent skrifttyper fra Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Afinstallér skrifttyper"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Avancerede muligheder"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Liste over skrifttyper"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Vćlg de programpakker som vil understřtte skrifttyperne:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Generelle printere"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Vćlg skrifttypefilen eller -kataloget oh klik pĺ 'Tilfřj'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Installationsliste"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Klik her hvis du er sikker."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "Her hvis ikke."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Fravalgte alt"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Valgte alt"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Fjern liste"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Begyndelsestester"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopiér skrifttyper pĺ dit system"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installér og konvertér skrifttyper"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Efterbehandling for installering"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Fjern skrifttyper pĺ dit system"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Efterbehandling for afinstallering"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Deling af internetforbindelse"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Desvćrre, vi understřtter kun 2.4-kerner."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Deling af internetforbindelse er slĺet til"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10819,31 +11653,31 @@ msgstr ""
"\n"
"Hvad řnsker du at gřre?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
-msgstr "de-aktivér"
+msgstr "deaktivér"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
-msgstr "trćd af"
+msgstr "forkast"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "genkonfigurér"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Slĺr servere fra..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Deling af internetforbindelse er nu slĺet fra"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Deling af internetforbindelse er slĺet fra"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10854,19 +11688,19 @@ msgstr ""
"Den er de-aktiveret for nćrvćrende\n"
"Hvad řnsker du at gřre?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "aktivér"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Aktiverer servere..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Deling af internetforbindelse er nu slĺet til"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10882,21 +11716,21 @@ msgstr ""
"Bemćrk: du skal bruge en dediceret netvćrksadapter, for at lave et lokalt "
"netvćrk (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Grćnseflade %s (benytter modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Grćnseflade %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ikke nogen netvćrksadapter i dit system!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10904,11 +11738,11 @@ msgstr ""
"Ingen ethernet netvćrksadapter er blevet fundet pĺ dit system. Křr venligst "
"vćrktřjet til maskinel konfiguration."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netvćrksgrćnsesnit"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10923,17 +11757,17 @@ msgstr ""
"\n"
"Jeg skal til at sćtte dit lokalnet pĺ med den adapter."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Vćlg hvilken netvćrksadapter som skal forbindes til dit lokalnet."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Netvćrksgrćnsesnit allerede konfigureret"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10948,15 +11782,15 @@ msgstr ""
"\n"
"Du kan gřre det i hĺnden, men du skal vide hvad du gřr."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatisk rekonfiguration"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Vis aktuelle grćnsesnitskonfiguration"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10973,7 +11807,7 @@ msgstr ""
"IP-attribut: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10994,32 +11828,32 @@ msgstr ""
"server for dig.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "C-klasse lokalnetvćrk"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "(Denne) DHCP-servers IP-adresse"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Rekonfigurér grćnsesnit og DHCP-server"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalnetvćrket endte ikke med `.0', stĺr af."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Mulig LAN-adresse konflikt fundet i konfigurationen til %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Brandmurkonfiguration fundet!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11027,20 +11861,20 @@ msgstr ""
"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
"muligvis lave manuelle rettelser efter installationen."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurerer..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Konfigurerer skript, installerer programmel, starter servere..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemer med installation af %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11050,23 +11884,23 @@ msgstr ""
"Du kan nu dele din internetforbindelse med andre maskiner pĺ dit lokale "
"netvćrk, ved at bruge DHCP."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Indstilling er allerede gjort. men er de-aktiveret for nćrvćrende."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Indstilling er allerede gjort. og er for nćrvćrende aktiv."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Deling af Internetforbindelse har aldrig vćret konfigureret."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Konfiguration af deling af internetforbindelse"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11081,216 +11915,6 @@ msgstr ""
"Klik pĺ Konfigurér for at starte programmet til at dele din "
"internetforbindelse!"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netvćrkskonfiguration (%d adaptorer)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Slet profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil der skal slettes:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Ny profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Navnet pĺ profilen der skal oprettes (den nye profil oprettes som en \n"
-"kopi af den nuvćrende) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Vćrtsnavn: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetadgang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Type:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Grćnseflade:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Vent venligst"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurér Internetadgang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN konfiguration"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drivprogram"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Grćnseflade"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurér lokalnetvćrk..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klik her for at starte vejlederen ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Vejleder..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Anvend"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Vent venligst... Sćtter konfigurationen i anvendelse"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Tilsluttet"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ikke tilsluttet"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Tilslut..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Afbrud..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Advarsel, en anden internetforbindelse er blevet fundet, der mĺske bruger "
-"dit netvćrk"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen konfigurerede grćnsesnit.\n"
-"Konfigurér disse fřrst ved at klikke pĺ 'Konfigurér'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfiguration"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Opstartsprotokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Startede med opstart"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivér nu"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivér nu"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Dette grćnsesnit er ikke blevet konfigureret endnu.\n"
-"Start konfigurationsvejlederen i hovedvinduet"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen internet-opkobling.\n"
-"Opret én fřrst ved at klikke pĺ 'Konfigurér'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Type af forbindelse"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametre"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet-kort"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Indstiller sikkerhedsniveau"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolcenter"
@@ -11299,89 +11923,134 @@ msgstr "Kontrolcenter"
msgid "Choose the tool you want to use"
msgstr "Vćlg det vćrktřj du řnsker at benytte"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+"XawTV er ikke installeret!\n"
+"\n"
+"\n"
+"Hvis du har et tv-kort, men DrakX hverken har fundet det (intet bttv\n"
+"modul i \"/etc/modules\") eller installeret xawtv, sĺ indsend venligst\n"
+"resultaterne af \"lspcidrake -v -f\" til \"install\\@mandrakesoft.com\"\n"
+"med emnet \"undetected TV card\".\n"
+"\n"
+"\n"
+"Du kan installere det ved at indtaste \"urpmi xawtv\" som root, pĺ en "
+"kommandolinje."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "USA (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (kabel-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Kina (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "Kina (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "Japan (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Řsteuropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Frankrig [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irland"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Vesteuropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australien"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "New Zealand"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Sydafrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Indtast din tv-standard og land"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
-msgstr "TV-standard:"
+msgstr "Tv-standard:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Omrĺde:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Skanning for tv-kanaler i gang..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Skanner for tv-kanaler"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Der opstod en fejl ved skanninge efter tv-kanaler"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV er ikke installeret!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Hav det godt!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nu kan du křre xawtv (under X Window!)!\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "Intet tv-kort genkendt!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11433,7 +12102,7 @@ msgstr "Kan ikke starte levende opgradering!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Ćndringen er fortaget, men for at vćre effektiv skal du logge ud"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11481,13 +12150,9 @@ msgstr "/_Indstillinger"
msgid "/Options/Test"
msgstr "/Indstillinger/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hjćlp"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Hjćlp/_Om"
+msgstr "/Hjćlp/_Om..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11545,7 +12210,7 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Indhold af filen"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Post og SMS pĺmindelse"
@@ -11554,11 +12219,11 @@ msgstr "Post og SMS pĺmindelse"
msgid "please wait, parsing file: %s"
msgstr "vent venligst, fortolker filen: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Post og SMS pĺmindelseskonfiguration"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11568,64 +12233,95 @@ msgstr ""
"\n"
"Her vil du kunne opsćtte pĺmindelsessystemet\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domćnenavn"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS-server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix postserver, Inn nyhedsserver"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Start server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Tjenester"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printer-server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "Opsćtning af tjenester"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Du vil modtage en advarsel hvis en af de valgte tjenester ikke lćngere křrer"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "indlćs opsćtning"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Du vil modtage en advarsel hvis belastningen er hřjere end denne vćrdi"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "advarsels-konfiguration"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Konfigurerer mĺden systemet vil advare dig pĺ"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Gem som..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Vćlg muse-type."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "ingen seriel_usb fundet\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulering af tredje knap?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Lćser printerdata ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Sřger efter enheder..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11673,9 +12369,23 @@ msgstr ""
"Din %s-skanner er blevet konfigureret.\n"
"Du kan nu skanne dokumenter med 'XSane' fra Multimedie/grafik iprogrammenuen."
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Nogen enheder i maskinelklassen '%s' blev fjernet:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Nogen enheder i maskinelklassen '%s' blev tilfřjet:\n"
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
-msgstr "Brandmurskonfiguration"
+msgstr "Konfiguration af brandmur"
#: ../../standalone/tinyfirewall_.c:44
msgid "Firewalling configuration"
@@ -12075,10 +12785,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedie - Lyd"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Vćrktřjer"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentation"
@@ -12183,10 +12889,6 @@ msgstr ""
"til at browse pĺ nettet"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arkivering, emulering, overvĺgning"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Personlig řkonomi"
@@ -12232,51 +12934,304 @@ msgstr "Multimedie - CD-brćnding"
msgid "Scientific Workstation"
msgstr "Videnskabelig arbejdsstation"
-#~ msgid "About"
-#~ msgstr "Om"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck afsluttet med fejlkode %d eller signal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Grafikkort identifikation: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Vćlg server-indstillinger"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Skćrm ikke konfigureret"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafikkort er endnu ikke konfigureret"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Oplřsninger ikke valgt endnu"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "prřv at ćndre nogle parametre"
+
+#~ msgid "An error occurred:"
+#~ msgstr "En fejl opstod:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Vender tilbage om %d sekunder"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Er dette den korrekte indstilling?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "En fejl opstod, prřv at ćndre nogle parametre"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86-server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Vis alle"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Forbereder konfiguration af X"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Hvad řnsker du at gřre?"
-#~ msgid " Help "
-#~ msgstr " Hjćlp "
+#~ msgid "Change Monitor"
+#~ msgstr "Skift skćrmtype"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Skift grafikkort"
+
+#~ msgid "Change Server options"
+#~ msgstr "Foretag ćndringer i server-indstillinger"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Skift oplřsning"
+
+#~ msgid "Show information"
+#~ msgstr "Vis information"
+
+#~ msgid "Test again"
+#~ msgstr "Test igen"
+
+#~ msgid ""
+#~ "Description of the fields:\n"
+#~ "\n"
+#~ "Bus: this is the physical bus on which the device is plugged (eg: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identification: \n"
+#~ "- pci devices : this list the vendor, device, subvendor and subdevice PCI "
+#~ "ids\n"
+#~ "\n"
+#~ "Description: this field describe the device\n"
+#~ "\n"
+#~ "Location on the bus: \n"
+#~ "- pci devices: this gives the PCI slot, device and function of this card\n"
+#~ "- eide devices: the device is either a slave or a master device\n"
+#~ "- scsi devices: the scsi bus and the scsi device ids\n"
+#~ "\n"
+#~ "Media class: class of hardware device\n"
+#~ "\n"
+#~ "Module: the module of the GNU/Linux kernel that handle that device\n"
+#~ "\n"
+#~ "Vendor: the vendor name of the device\n"
+#~ msgstr ""
+#~ "Beskrivelse af felterne:\n"
+#~ "\n"
+#~ "Bus: dette er den fysiske bus, som enheden er tilsluttet (fx: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identifikation: \n"
+#~ "- pci-enheder: dette viser producenten, enheden, underproducent og "
+#~ "underenhed PCI id'er\n"
+#~ "\n"
+#~ "Beskrivelse: dette felt beskriver enheden\n"
+#~ "\n"
+#~ "Placering pĺ bussen: \n"
+#~ "- pci-enheder: dette giver PCI slottet, enheden og funktionen for dette "
+#~ "kort\n"
+#~ "- eide-enheder: enheden er enten en slave- eller mester-enhed\n"
+#~ "- scsi-enheder: scsi-bussen og scsi enheds-id'er\n"
+#~ "\n"
+#~ "Medieklasse: maskinelenhedens klasse\n"
+#~ "\n"
+#~ "Modul: modulet i GNU/Linux-kernen som hĺndterer denne enhed\n"
+#~ "\n"
+#~ "Producent: Navnet pĺ producenten af enheden\n"
#~ msgid ""
-#~ "XawTV isn't installed ...\n"
-#~ "You should install it.\n"
-#~ " Just type \"urpmi xawtv\""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or "
+#~ "an HP LaserJet 2200?"
#~ msgstr ""
-#~ "XawTV er ikke installeret ...\n"
-#~ "Dř břr installere den.\n"
-#~ " Bare skriv \"urpmi xawtv\""
+#~ "Er din printer en multi-funktionsenhed fra HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 med skanner), en HP Photosmart P100 eller en HP "
+#~ "LaserJet 2200?"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid ""
+#~ "To know about the options available for the current printer read either "
+#~ "the list shown below or click on the \"Print option list\" button.%s\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Hvilke muligheder der er for den aktuelle printer kan du enten lćse pĺ "
+#~ "listen vist nedenfor, eller klikke pĺ knappen 'liste med "
+#~ "printermuligheder'%s.\n"
+#~ "\n"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
+#~ "specify the scanner when you have more than one) from the command line or "
+#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
+#~ "using the GIMP, you can also scan by choosing the appropriate point in "
+#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" and \"man sane-"
+#~ "hp\" on the command line to get more information.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
#~ msgstr ""
-#~ "Kan ikke fĺ fat i kernemoduler svarende til din kerne (fil %s mangler)"
+#~ "Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne "
+#~ "skanne. Nu kan du skanne med 'scanimage' ('scanimage -d hp:%s' for at "
+#~ "angive skanneren hvis du har mere end én) fra kommandolinjen eller med "
+#~ "den grafiske grćnseflade 'xscanimage' eller 'xsane'. Hvis du bruger GIMP "
+#~ "kan du ogsĺ skanne ved at vćlge det passende punkt i menuen 'Filer/Hent'. "
+#~ "Brug ogsĺ 'man scanimage' og 'man sane-hp' pĺ kommandolinjen for at fĺ "
+#~ "mere information\n"
+#~ "\n"
+#~ "Brug ikke \"scannerdrake\" pĺ denne enhed!"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne "
+#~ "skanne. Nu kan du skanne med 'ptal-hp %s scan ...' fra kommandolinjen. "
+#~ "Skanning via en grafisk grćnseflade eller fra GIMP er endnu ikke "
+#~ "understřttet for din enhed. Du kan finde mere information i filen \"/usr/"
+#~ "share/doc/hpoj-0.8/ptal-hp-scan.html\" pĺ dit system. Hvis du har en HP "
+#~ "LaserJet 1100 eller 1200 kan du kun skanne nĺr du har skannermuligheden "
+#~ "installeret pĺ udstyret.\n"
+#~ "\n"
+#~ "Brug ikke \"scannerdrake\" pĺ denne enhed!"
+
+#~ msgid ""
+#~ "Please enter the directory to\n"
+#~ " put the backup on this host."
+#~ msgstr ""
+#~ "Indtast kataloget hvori\n"
+#~ " sikkerhedskopien skal lćgges pĺ denne maskine."
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Brug diskdrev med dćmon"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Brug FTP med dćmon"
+
+#~ msgid "Please be sure that the cron daemon is included in your services."
+#~ msgstr "Forsikr dig gerne at cron-dćmonen er med i dine tjenester."
+
+#~ msgid "Package List to Install"
+#~ msgstr "Pakkeliste til installation"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
-#~ msgid "None"
-#~ msgstr "Ingenting"
+#~ msgid "Setting security level"
+#~ msgstr "Indstiller sikkerhedsniveau"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Vćlg en forvalgt printer!"
+#~ msgid "Graphics card"
+#~ msgstr "Grafikkort"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Brug/Opfrisk printerliste"
+#~ msgid "Select a graphics card"
+#~ msgstr "Vćlg et grafikkort"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Du kan nu give dens parametre til modul %s."
+#~ msgid "Choose a X driver"
+#~ msgstr "Vćlg en X-driver"
-#~ msgid "mount failed"
-#~ msgstr "montering mislykkedes"
+#~ msgid "X driver"
+#~ msgstr "X-driver"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Advarsel: afprřvning af dette grafikkort kan fĺ din maskine til at lĺse"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard-VGA, 640x480 ved 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super-VGA, 800x600 ved 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 kompatibel, 1024x768 ved 87 Hz interlaced (ikke 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ved 87 Hz interlaced, 800x600 ved 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Udvidet Super-VGA, 800x600 ved 60 Hz, 640x480 ved 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 ved 60 Hz, 800x600 ved 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hřjfrekvens SVGA, 1024x768 ved 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Skćrm, som kan klare 1600x1200 ved 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Skćrm, som kan klare 1600x1200 ved 76 Hz"
#~ msgid ""
-#~ "The characters of your language can't be displayed in console,\n"
-#~ "so the messages will be displayed in english during installation"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Den totale střrrelse af de grupper du har valg er cirka %d Mb.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Tegnene i dit sprog kan ikke vises i konsollen\n"
-#~ "sĺ beskederne vil blive vist pĺ engelsk under installationen"
+#~ "Hvis du řnsker at installere mindre end denne střrrelse,\n"
+#~ "sĺ vćlg procentdelen af pakker som du vil installere.\n"
+#~ "\n"
+#~ "En lav procentdel vil kun installere de vigtigste pakker;\n"
+#~ "en procentdel pĺ 100%% vil installere alle valgte pakker."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Du har kun plads pĺ din disk til %d%% af disse pakker.\n"
+#~ "\n"
+#~ "Hvis du řnsker at installere mindre end denne střrrelse,\n"
+#~ "sĺ vćlg procentdelen af pakker som du vil installere.\n"
+#~ "En lav procentdel vil kun installere de vigtigste pakker;\n"
+#~ "en procentdel pĺ %d%% vil installere sĺ mange pakker som muligt."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr ""
+#~ "Du har mulighed for at vćlge dem mere prćcist i nćste installationstrin"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procentandel pakker til installation"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Vćlg sikkerhedniveau"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 9629e8953..fa927b580 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -1,38 +1,67 @@
-# german translation of DrakX (cooker/gi/perl-install/share/po/de.po).
-# Copyright (C) 1999,2000,2001 MandrakeSoft.
-# Dr. Hinrich GĂśhlmann <hgoehlmann@gmx.de>, 1999,2000
-# Stefan Siegel <siegel@linux-mandrake.com>, 1999,2000,2001,2002
-# Daniel Haischt <daniel.haischt@student.fh-reutlingen.de>, 2000
-# Peer Dunker <peer46@gmx.net>, 2001
+# german transltion of drakflopy
+# Copyright (C) 2000, 2001 MandrakeSoft S.A.
+# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001.
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-10 11:56+0100\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-20 17:48+0200\n"
"Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n"
-"Language-Team: German <cooker-i18n@linux-mandrake.com>\n"
+"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Alle Karten getrennt konfigurieren"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama Erweiterung verwenden"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Nur Karte „%s“ (%s) konfigurieren"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB oder mehr"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Wählen Sie einen X Server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X Server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Mehrkarten-Einstellung"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,41 +69,44 @@ msgstr ""
"Ihr System erlaubt die Verwendung einer Mehrkarten Konfiguration.\n"
"Was wollen Sie tun?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafikkarte"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Wählen Sie die Speichergröße Ihrer Grafikkarte"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Wählen Sie Ihre Grafikkarte"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfigurieren"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Wählen Sie einen X Server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X Server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Alle Karten getrennt konfigurieren"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Wählen Sie einen X Treiber"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Xinerama Erweiterung verwenden"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X Treiber"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Nur Karte „%s“ (%s) konfigurieren"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -84,33 +116,17 @@ msgstr ""
"XFree %s. Ihre Karte wird auch von XFree %s unterstĂźtzt, wodurch Sie \n"
"bessere 2D-UnterstĂźtzung erhalten kĂśnnen."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Ihre Grafikkarte kann mit XFree %s 3D-hardwarebeschleunigt werden."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
-"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
-"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -123,31 +139,59 @@ msgstr ""
"XFree %s unterstĂźtzt, wodurch Sie bessere 2D-UnterstĂźtzung erhalten \n"
"kĂśnnen."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
+"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
+"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Installationsbildschirmtreiber)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigurieren"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Wählen Sie die Speichergröße Ihrer Grafikkarte"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Wählen Sie die Einstellungen fßr den Server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Die Änderungen beibehalten?\n"
+"Momentan wäre dies:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Wählen Sie Ihren Monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generisch"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Rßckgängig"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,516 +212,328 @@ msgstr ""
"kÜnnten. Im Zweifelsfall wählen Sie bitte eine konservativere \n"
"Einstellung."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontale Wiederholfrequenz"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikale Wiederholfrequenz"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ihr Monitor ist nicht konfiguriert"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ihre Grafikkarte ist noch nicht konfiguriert"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Die AuflÜsungen wurden noch nicht ausgewählt"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "MĂśchten Sie die vorgenommenen Einstellungen prĂźfen?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "PrĂźfen der Einstellungen"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 Farben (8 Bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"Versuchen Sie bitte, einige Einstellungen zu ändern"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32.000 Farben (15 Bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ein Fehler ist aufgetreten:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65.000 Farben (16 Bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Verlassen in %d Sekunden"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 Millionen Farben (24 Bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ist dies richtig?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 Milliarden Farben (32 Bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr ""
-"Ein Fehler ist aufgetreten. Versuchen Sie bitte, einige Parameter zu ändern"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "AuflĂśsungen"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "AuflĂśsung"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Wählen Sie bitte AuflÜsung und Farbtiefe"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafikkarte: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 Server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mehr"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr " Abbruch "
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Experten-Modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Alle anzeigen"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "MĂśchten Sie die vorgenommenen Einstellungen prĂźfen?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "AuflĂśsungen"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "PrĂźfen der Einstellungen"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastaturtyp: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Maustyp: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Mausschnittstelle: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor Horiz. Frequenz: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor Vert. Frequenz: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafikkarte: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafikkartenidentifikation: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafikkartenspeicher: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Farbtiefe: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "AuflĂśsung: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 Server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 Treiber: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window Konfiguration vorbereiten"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Was wollen Sie machen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitor ändern"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Grafikkarte ändern"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Server Einstellungen ändern"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "AuflÜsung ändern"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Informationen anzeigen"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Nochmals testen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlassen"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Die Änderungen beibehalten?\n"
-"Momentan wäre dies:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X zur Startzeit"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ich kann GNU/Linux so einrichten, dass bei jedem Systemstart\n"
"automatisch die grafische Oberfläche (= der X Server) aktiviert wird.\n"
"Wollen Sie, dass X nach jedem Neustart direkt zur VerfĂźgung steht?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr ""
-"Bitte loggen Sie sich erneut in %s ein, \n"
-"um die Änderungen wirksam werden zu lassen."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Bitte loggen Sie sich aus, und drĂźcken Sie Ctrl-Alt-RĂźcktaste"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 Farben (8 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.000 Farben (15 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.000 Farben (16 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 Millionen Farben (24 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 Milliarden Farben (32 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB oder mehr"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640×480 bei 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800×600 bei 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibel, 1024×768 bei 87 Hz, interlaced (kein 800×600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024×768 bei 87 Hz, interlaced und 800×600 bei 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800×600 bei 60 Hz und 640×480 bei 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024×768 bei 60 Hz und 800×600 bei 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hochfrequenz SVGA, 1024×768 bei 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ihr Monitor kann 1600×1200 bei 70 Hz darstellen"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ihr Monitor kann 1600×1200 bei 76 Hz darstellen"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Erster Sektor der Boot-Partition"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Erster Sektor der Platte (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Installation"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Betriebssystemstarter installiert werden?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/Grub Installation"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO mit TextmenĂź"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO mit grafischem MenĂź"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Boot von DOS/Windows aus (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Haupt-Optionen des Betriebssystemstarters"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Zu verwendender Betriebssystemstarter"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Installation des Betriebssystemstarters"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot Gerät"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (funktioniert nicht mit alten BIOS Versionen)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video Modus"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Wartezeit vorm Starten des Standard Betriebssystems"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Passwort"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Passwort (erneut)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Gebrauch der Kommandozeilen-Parameter einschränken"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "Einschränken"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Die Partition /tmp bei jedem Systemstart säubern"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Geben Sie, falls nötig, die genaue RAM Größe an (%d MB gefunden)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Mehrere Profile einschalten"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Geben Sie die RAM Größe in MB an"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
"Angabe eines Passworts wirkungslos"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Die PasswĂśrter stimmen nicht Ăźberein"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init Nachricht"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware VerzĂśgerung"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "BS-StartverzĂśgerung fĂźr den Kern"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "BS-Start von CD erlauben"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Open Firmware Start erlauben"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Standard BS"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -692,83 +548,83 @@ msgstr ""
"\n"
"Von welchem Verzeichnis wollen Sie starten?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie kÜnnen weitere hinzufßgen oder existierende ändern."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "HinzufĂźgen"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Fertig"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ändern"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufĂźgen?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Anderes Betriebssystem (SunOS ...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Anderes Betriebssystem (MacOS ...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Anderes Betriebssystem (Windows ...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Kern"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Verzeichnisbaumwurzel"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Übergeben"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Init-RamDisk"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Schreiben/Lesen"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabelle"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Unsicher"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Identifikator"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Standard"
@@ -800,53 +656,77 @@ msgstr "Sie mĂźssen die Verzeichnisbaumwurzel festlegen"
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Schnittstelle(n) %s %s gefunden"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "VerfĂźgen Sie Ăźber weitere?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "VerfĂźgen Sie Ăźber %s Schnittstellen?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nein"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Hardware Informationen anzeigen"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation des Treibers fĂźr die Karte %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(Modul %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, 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 ""
+"Sie mĂźssen nun die Optionen fĂźr Modul %s angeben.\n"
+"Bedenken Sie, dass Adressen alle mit „0x“ beginnen müssen, etwa „0x300“"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sie mĂźssen nun die Optionen fĂźr Modul %s angeben.\n"
+"Optionen haben die Form „name=wert name2=wert2“.\n"
+"Beispielsweise: „io=0x300 irq=7“"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modul-Optionen:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welchen %s-Treiber soll ich versuchen?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -864,39 +744,15 @@ msgstr ""
"Treiber kann in seltenen Fällen zum „Hängenbleiben“ des Rechners führen, was "
"jedoch keine Hardwareschäden nach sich ziehen sollte)"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatische Erkennung"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Optionen angeben"
-#: ../../any.pm_.c:725
-#, 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 ""
-"Sie mĂźssen nun die Optionen fĂźr Modul %s angeben.\n"
-"Bedenken Sie, dass Adressen alle mit „0x“ beginnen müssen, etwa „0x300“"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sie mĂźssen nun die Optionen fĂźr Modul %s angeben.\n"
-"Optionen haben die Form „name=wert name2=wert2“.\n"
-"Beispielsweise: „io=0x300 irq=7“"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modul-Optionen:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -905,51 +761,56 @@ msgstr ""
"Laden von Modul %s schlug Fehl.\n"
"Wollen Sie es erneut mit anderen Parametern versuchen?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefĂźgt)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Dieses Passwort ist zu einfach"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Bitte geben Sie ein Benutzerkennzeichen an"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Das Benutzerkennzeichen sollte nur aus Kleinbuchstaben, Ziffern, \n"
"„-“ und „_“ bestehen"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Dieses Benutzerkennzeichen existiert bereits"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Dieses Benutzerkennzeichen existiert bereits"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Benutzer hinzufĂźgen"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -958,32 +819,32 @@ msgstr ""
"Benutzerkennzeichen einrichten\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Benutzer akzeptieren"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Benutzername"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Benutzerkennzeichen"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Symbol"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -992,60 +853,60 @@ msgstr ""
"ein Benutzer angemeldet wird.\n"
"Wollen Sie davon Gebrauch machen?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Bitte wählen Sie die zu verwendende Sprache."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 ""
"Sie kÜnnen andere Sprachen auswählen, die nach der Installation zur "
"VerfĂźgung stehen."
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alle"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Kein Teilen"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Sie kĂśnnen die Dateien mittels Samba oder NFS anbieten. Welche Variante "
"wollen Sie?"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1058,31 +919,11 @@ msgstr ""
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Kennzeichen "
"vornehmen.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Abbruch"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Userdrake starten"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1091,31 +932,31 @@ msgstr ""
"Sie kĂśnnen UserDrake verwenden, um Benutzerkennzeichen in diese Gruppe "
"aufzunehmen."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Cracker-Spielplatz"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Schwach"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hoch"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "HĂśher"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1126,7 +967,7 @@ msgstr ""
"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
"da Angreifer mangels Passwort an Ihre Daten gelangen kĂśnnen!"
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1134,7 +975,7 @@ msgstr ""
"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
"Netzwerkrechner kann hier nicht empfohlen werden."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1142,7 +983,7 @@ msgstr ""
"Das ist die Standard-Sicherheitsebene fĂźr Rechner, mit Internetzugang \n"
"als Klient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1150,13 +991,14 @@ msgstr ""
"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
"Sicherheitstests durchgefĂźhrt."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Mit dieser Sicherheitsebene wird es mĂśglich, das System als einen \n"
"Server zu verwenden.\n"
@@ -1166,38 +1008,38 @@ msgstr ""
"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
"verwenden sollte."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Diese Ebene bietet die selbe Funktionalität, wie die vorherige. Jedoch ist \n"
"das System nun komplett geschlossen. Es ist die hĂśchste Sicherheitsebene."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Wählen Sie eine Sicherheitsebene"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Sicherheitsebene"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "„libsafe“ bei Servern verwenden"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Eine Bibliothek, die gegen sog. „buffer overflow“-Angriffe schützt."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1221,52 +1063,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Willkommen zum Betriebssystem-Starter GRUB!"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Verwenden Sie die Tasten %c und %c um ein Betriebssystem zu w„hlen."
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Zum Starten des BS drcken Sie <Return>. Mit <e> k”nnen Sie das"
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "Kommando vorher editieren, mit <c> erhalten Sie eine Kommandozeile."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "In %d Sekunden wird das gew„hlte BS automatisch gestartet."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in „/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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Arbeitsoberfläche"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start-MenĂź"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
@@ -1281,15 +1123,19 @@ msgstr "Es steht noch keine Hilfe zur VerfĂźgung.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datei"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Datei/_Beenden"
+msgstr "/Datei/B_eenden"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1324,14 +1170,14 @@ msgstr "Yaboot Modus"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Sie verwenden momentan „%s“ als Betriebssystemstarter.\n"
"Wählen Sie „Konfigurieren“, wenn Sie den Assistenten starten wollen."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurieren"
@@ -1341,7 +1187,7 @@ msgid "System mode"
msgstr "System-Modus"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "X-Window nach dem Hochfahren automatisch starten "
#: ../../bootlook.pm_.c:148
@@ -1352,16 +1198,18 @@ msgstr "Nein ich will kein Autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja ich will Autologin mit diesem Kennzeichen und dieser Oberfläche"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr " Ok "
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1408,7 +1256,7 @@ msgstr ""
msgid "Screenshots will be available after install in %s"
msgstr "Die Bildschim-Schnappschüsse liegen nach der Installation unter „%s“"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankreich"
@@ -1416,7 +1264,7 @@ msgstr "Frankreich"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgien"
@@ -1440,11 +1288,12 @@ msgstr "Norwegen"
msgid "Sweden"
msgstr "Schweden"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holland"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italien"
@@ -1452,7 +1301,7 @@ msgstr "Italien"
msgid "Austria"
msgstr "Östereich"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Vereinigte Staaten von Amerika"
@@ -1460,8 +1309,8 @@ msgstr "Vereinigte Staaten von Amerika"
msgid "Please make a backup of your data first"
msgstr "Bitte machen Sie erst eine Sicherheitskopie Ihrer Daten!"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lesen Sie bitte aufmerksam!"
@@ -1474,11 +1323,12 @@ msgstr ""
"Wenn Sie aboot verwenden wollen, mĂźssen Sie ausreichend Platz am Anfang \n"
"der Platte lassen (2048 Sektoren reichen aus)."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fehler"
@@ -1486,11 +1336,11 @@ msgstr "Fehler"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Wählen Sie ein Aktion aus"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1502,77 +1352,77 @@ msgstr ""
"Ich rate Ihnen, diese Partition erst zu verkleinern\n"
"(Wählen Sie sie an und drücken Sie dann „Größe verändern“)"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Bitte klicken Sie auf eine Partition"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Details"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalisierendes FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Auslagerung"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Leer"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Andere"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Dateisystemtypen:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Erzeugen"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Typ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Verwenden Sie stattdessen „%s“"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "LĂśschen"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Verwenden Sie erst „umount“"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1580,67 +1430,72 @@ msgstr ""
"Nach Änderung des Partitionstyps von %s, werden sämtliche Daten darauf "
"gelĂśscht"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Wählen Sie eine Partition"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Wählen Sie eine andere Partition"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Verlassen"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "In den Experten-Modus wechseln"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "In den Normal-Modus wechseln"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Rßckgängig"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Beenden ohne speichern"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Beenden ohne die Partitionstabelle zu speichern?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Möchten Sie die vorgenommenen Änderungen in „/etc/fstab“ speichern?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automatisches Erstellen"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Alles lĂśschen"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mehr"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Festplatten-Informationen"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle Primärpartitionen sind in Gebrauch"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ich kann keinen weiteren Partitionen hinzufĂźgen"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1648,31 +1503,31 @@ msgstr ""
"Um mehr Partitionen einrichten zu kÜnnen, mßssen Sie zunächst eine Partition "
"löschen und anschließend eine erweiterte Partition erzeugen"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Partitionstabelle schreiben"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Partitionstabelle retten"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Partitionstabelle neu laden"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Wechselmedien automatisch Einhängen"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Datei auswählen"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1680,11 +1535,11 @@ msgstr ""
"Die gesicherte Partitionstabelle hat nicht dieselbe Größe\n"
"Soll trotzdem fortgefahren werden?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Warnung"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1692,122 +1547,129 @@ msgstr ""
"Legen Sie eine Diskette in das Laufwerk\n"
"Alle Daten auf dieser Diskette werden gelĂśscht!"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Ich Versuche, die Partitionstabelle zu retten"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "AusfĂźhrliche Informationen"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Einhängpunkt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optionen"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Größe verändern"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Bewegen"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatieren"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Einhängen"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Zum RAID hinzufĂźgen"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Zum LVM hinzufĂźgen"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Aushängen"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "LĂśschen aus dem RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "LĂśschen aus dem LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "RAID modifizieren"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Als Loopback verwenden"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Erzeuge eine neue Partition"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Anfangssektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Größe in MB:"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Dateisystemtyp: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Einhängpunkt: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Einstellung: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Die Loopback-Datei entfernen?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Partitionstyp ändern"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Welches Dateisystem wollen Sie verwenden?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Konvertiere ext2 zu ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Wo wollen Sie die Loopback-Datei %s einhängen?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Wo wollen Sie das Gerät %s einhängen?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1815,130 +1677,135 @@ msgstr ""
"Ich kann diesen Einhängpunkt nicht zurßcksetzen, da diese Partition als \n"
"Loopback verwendet wird. Bitte entfernen Sie erst diesen Loopback."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Errechne die Grenzen des FAT Dateisystems"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Neuberechnen der Größe"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Die Größe dieser Partition kann ich nicht ändern"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Sie sollten ein Backup sämtlicher Daten dieser Partition erstellen"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Durch Veränderung der Partitionsgröße von %s, gehen sämtliche Daten darauf "
"verloren"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Wählen Sie die neue Größe"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Neue Größe in MB:"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Zu welcher Platte wollen Sie wechseln?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Zu welchem Sektor wollen Sie wechseln?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "wechsele"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Bewege Partition..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Wählen Sie einen vorhandenen RAID"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "Neu"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Wählen Sie einen vorhandenen LVM"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM Name?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Diese Partition kann nicht als Loopback verwendet werden"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Name der Loopback-Datei: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dateinamen angeben"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Diese Datei wird bereits von einer anderen Loopback-VerknĂźpfung verwendet, "
"wählen Sie eine andere Datei."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr ""
"Es existiert bereits eine Datei mit diesem Namen. Soll ich sie verwenden?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Einhäng-Optionen"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Verschiedene"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "Gerät"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "Level"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "Blockgröße"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Vorsicht: Diese Aktion ist gefährlich."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Welcher Partitionstyp?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1951,7 +1818,7 @@ msgstr ""
"verwenden \n"
"LILO nicht, dann benötigen Sie keine „/boot“ Partition."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1964,7 +1831,7 @@ msgstr ""
"Betriebssystemstarter einsetzen wollen, vergessen Sie bitte nicht, eine „/"
"boot“ Partition anzulegen!"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1976,131 +1843,131 @@ msgstr ""
"„/boot“-Partition arbeiten. Sie sollten also daran denken, eine solche \n"
"Partition zu erstellen."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Die Partitionstabelle der Platte „%s“ wird gespeichert!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sie mßssen Ihren Rechner neu starten, damit die Veränderungen wirksam werden"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nach Formatieren der Partition %s, werden sämtliche Daten darauf gelÜscht"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatiere"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiere Loopback-Datei %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiere Partition %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Dateien verstecken"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Dateien auf die neue Partition verschieben."
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Das Verzeichnis „%s“ enthält bereits Daten\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Dateien auf die neue Partition verschieben."
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopiere: %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Entferne: %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "Die Partition %s heißt nun %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Gerät: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS Laufwerksbuchstabe: %s (vermutlich?)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Typ:"
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Name: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Anfang: Sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Größe: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s Sektoren"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Zylinder %d bis %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatiert\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nicht formatiert\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Eingehängt\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2109,7 +1976,7 @@ msgstr ""
"Loopback Datei(en):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2117,27 +1984,27 @@ msgstr ""
"Partition wird standardmäßig geladen\n"
" (fĂźr MS-DOS Boot, nicht jedoch fĂźr LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Blockgröße %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID Platten %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Dateiname des Loopbacks: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2150,7 +2017,7 @@ msgstr ""
"Partition handelt. Sie sollten sie\n"
"daher unverändert lassen.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2163,63 +2030,63 @@ msgstr ""
"Betriebssysteme auf dem selben\n"
"Rechner.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Größe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s Zylinder, %s KĂśpfe, %s Sektoren\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM Platten %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabellen Typ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "auf Bus %d ID %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Dateisystem-SchlĂźssel"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Wählen Sie Ihren Dateisystem-Schlßssel (Passwort)"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Die PasswĂśrter stimmen nicht Ăźberein"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "SchlĂźssel"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "SchlĂźssel (erneut)"
@@ -2228,39 +2095,67 @@ msgid "Change type"
msgstr "Typ ändern"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Bitte wählen Sie ein Medium"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Authentifizierung"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Benutzerkennzeichen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Benutzerkennzeichen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Server suchen"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatieren von %s schlug Fehl"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr ""
"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
"formatieren."
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "Das Einhängen der Partition %s in das Verzeichnis %s schlug fehl."
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-"Der Dateisystemcheck (fsck) schlug fehl mit dem RĂźckgabewert %d oder Signal %"
-"d."
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "Fehler beim Aushängen von %s: %s"
@@ -2277,75 +2172,329 @@ msgstr "mit „/usr“"
msgid "server"
msgstr "Server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
"Sie kĂśnnen JFS nicht fĂźr Partitionen verwenden, die kleiner als 16MB sind!"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Sie kĂśnnen ReiserFS nicht fĂźr Partitionen verwenden, die kleiner als 32MB "
"sind!"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Einhängpunkte mßssen mit einem / beginnen."
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Es gibt bereits eine Partition, mit dem Einhängpunkt %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
"Sie kÜnnen kein logisches LVM Medium fßr den Einhängpunkt %s verwenden."
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dieses Verzeichnis muss in der Verzeichnisbaumwurzel bleiben"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Sie benĂśtigen ein echtes GNU/Linux Dateisystem (Ext2, ReiserFS) fĂźr \n"
"diesen Einhängpunkt.\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Sie kÜnnen kein verschlßsseltes Medium fßr den Einhängpunkt %s verwenden."
# ../../diskdrak1
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nicht genug freier Platz, damit ich selbst Partition anlegen kann."
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nichts zu tun."
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fehler beim Öffnen von %s zum Schreiben: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ein Fehler ist aufgetreten - es wurden keine gßltigen Geräte gefunden, auf "
"denen neue Dateisysteme erstellt werden kĂśnnen. Bitte ĂźberprĂźfen Sie Ihre "
"Hardware(-Konfiguration) auf mĂśgliche Fehler und falsche Einstellungen."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Sie haben keine Partitionen!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Autoerkennung durchfĂźhren"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generisch"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Karten Mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Einstellungen laden"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Typ ändern"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Verlassen"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Hilfe"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Hilfe"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Hilfe/_Über ..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Maus"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Karten Mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr " Abbruch "
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Maus"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beschreibung"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Authentifizierung"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Datei auswählen"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway Gerät"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 Tasten"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Festplatten suchen"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Hardware Informationen anzeigen"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Informationen anzeigen"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Maus konfigurieren"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "an Prot %s gefunden"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Bitte warten"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d Sekunden"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Drucker „%s“ entfernen ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Automatische Erkennung"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
#: ../../help.pm_.c:13
@@ -2361,7 +2510,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2400,7 +2549,7 @@ msgstr ""
"kÜnnen Sie ihn hier nach Belieben verändern. Dann geben Sie Ihrem Konto ein\n"
"Passwort. FĂźr ein Benutzerkennzeichen ist dieses zwar nicht von so\n"
"herausragender Bedeutung wie das fĂźr ÂťrootÂŤ, doch Sie sollten trotzdem\n"
-"etwas Sorgfalt walten lassen. Immerhin sind es Ihre Daten...\n"
+"etwas Sorgfalt walten lassen. Immerhin sind es Ihre Daten ...\n"
"\n"
"Klicken Sie auf „Benutzer akzeptieren“, um das Kennzeichen zu erstellen.\n"
"Anschließend können Sie direkt weitere Benutzer hinzufügen. Wenn Sie allen\n"
@@ -2505,9 +2654,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2701,7 +2849,7 @@ msgstr ""
"schalten Sie jedoch zuvor, falls nÜtig, die dafßr benÜtigten Geräte ein,\n"
"damit „DrakX“ sie automatisch erkennen kann.\n"
"\n"
-"Mandrake Linux bietet Ihnen die MĂśglichkeit, Ihre Internet-Verbindung\n"
+"Mandrake Linux bietet Ihnen die MÜglichkeit, Ihre Internet-Ver­bindung\n"
"bereits während der Installation zu konfigurieren. Zur Auswahl stehen\n"
"folgende Verbindungsarten: HerkĂśmmliches Modem, ISDN Modem, ADSL\n"
"Verbindung, Kabelmodem oder eine einfache LAN Verbindung (Ethernet).\n"
@@ -2778,7 +2926,7 @@ msgstr ""
"GNU/Linux arbeitet mit GMT (Greenwich Mean Time) und Ăźbersetzt diese anhand\n"
"der Zeitzone in Ihre lokale Zeit.\n"
"\n"
-"Da MicrosoftWindows(TM) nicht sinnvoll mit GMT umgehen kann, mĂźssen Sie\n"
+"Da Microsoft Windows(TM) nicht sinnvoll mit GMT umgehen kann, mĂźssen Sie\n"
"„Nein“ wählen, falls Sie auch ein Betriebssystem aus dem Hause Microsoft\n"
"auf Ihrem Rechner „beherbergen“\n"
"\n"
@@ -2847,7 +2995,7 @@ msgid ""
"modern graphics card. Then choose \"Test again\" to be sure."
msgstr ""
"Es kann Ihnen passieren, dass der erste Versuch noch nicht korrekt ist (Der\n"
-"Schirm ist zu klein, liegt zu weit rechts oder links...). Daher werden Sie\n"
+"Schirm ist zu klein, liegt zu weit rechts oder links ...). Daher werden Sie\n"
"selbst dann mit der Frage konfrontiert, wenn der „DrakX“-Server sich\n"
"starten lies, „DrakX“ also davon ausgehen könnte, dass alles in Ordnung\n"
"ist. Sie erhalten daher eine Liste von gĂźltigen Modi, aus denen Sie\n"
@@ -2879,7 +3027,7 @@ msgstr ""
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2891,9 +3039,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2903,11 +3050,11 @@ msgid ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
msgstr ""
-"Die Mandrake LinuxCD-ROM hat einen eingebauten Rettungsmodus. Sie erreichen\n"
-"ihn durch Starten von CD-ROM, und DrĂźcken von ÂťF1ÂŤ bei Bootbeginn. Geben\n"
-"Sie dann ÂťrescueÂŤ an der Eingabeaufforderung ein. Falls Ihr Rechner nicht\n"
-"von CD-ROM starten kann, sollten Sie diesen Punkt unbedingt aus zwei\n"
-"GrĂźnden abarbeiten:\n"
+"Die Mandrake Linux CD-ROM hat einen eingebauten Rettungsmo­dus. Sie\n"
+"erreichen ihn durch Starten von CD-ROM, und DrĂźcken von ÂťF1ÂŤ bei\n"
+"Bootbeginn. Geben Sie dann ÂťrescueÂŤ an der Eingabeaufforderung ein. Falls\n"
+"Ihr Rechner nicht von CD-ROM starten kann, sollten Sie diesen Punkt\n"
+"unbedingt aus zwei GrĂźnden abarbeiten:\n"
"\n"
" * Wenn „DrakX“ den Betriebssystemstarter installiert, schreibt es den\n"
"Boot-Sektor (MBR) Ihrer primären Festplatte neu (außer Sie wollen einen\n"
@@ -2968,21 +3115,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2998,9 +3144,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Sie mĂźssen nun entscheiden, wo auf Ihrer/n Festplatte(n) Ihr Mandrake Linux\n"
"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
@@ -3035,10 +3181,9 @@ msgstr ""
"Festplatte(n) automatisch partitioniert werden; Sie mĂźssen sich also um\n"
"nichts weiter kĂźmmern.(*)\n"
"\n"
-" * „Verwende existierende“: Der Assistent hat eine oder mehrere "
-"existierende\n"
-"Linux Partitionen auf Ihrer Platte gefunden. Wählen Sie diese Schaltfläche,\n"
-"falls Sie sie behalten wollen.\n"
+" * „Verwende existierende“: Der Assistent hat eine oder mehrere\n"
+"existierende Linux Partitionen auf Ihrer Platte gefunden. Wählen Sie diese\n"
+"Schaltfläche, falls Sie sie behalten wollen.\n"
"\n"
" * „Komplette Platte löschen“: Falls Sie alle Daten Ihrer Platte verlieren,\n"
"und sie durch Ihr neues Mandrake Linux System ersetzen wollen, wählen Sie\n"
@@ -3046,17 +3191,17 @@ msgstr ""
"gemacht werden kann.\n"
"\n"
" * „Freien Platz der Windows Partition verwenden“: Falls der gesamte\n"
-"Plattenplatz aktuell fĂźr MicrosoftWindows(TM) verschwendet ist, mĂźssen Sie\n"
+"Plattenplatz aktuell fĂźr Microsoft Windows(TM) verschwendet ist, mĂźssen Sie\n"
"fĂźr Linux Platz schaffen. Um dies zu erreichen, kĂśnnen Sie entweder Ihre\n"
-"MicrosoftWindows(TM) Partition(en) samt Daten löschen (siehe „Komplette\n"
+"Microsoft Windows(TM) Partition(en) samt Daten löschen (siehe „Komplette\n"
"Platte löschen“ oder „Experten-Modus“) oder Ihre Windows Partition\n"
"verkleinern. Letzteres geht ohne Datenverlust. Sie sollten diese Variante\n"
"wählen, falls Sie beide Betriebssysteme (Windows und Mandrake Linux)\n"
"nebeneinander nutzen wollen.\n"
"\n"
-" Bevor Sie sich fĂźr diese Variante entscheiden, sei hier noch einmal "
-"betont,\n"
-"dass das bedeutet, Sie haben weniger Platz fĂźr Windows als momentan.\n"
+" Bevor Sie sich fĂźr diese Variante entscheiden, sei hier noch einmal\n"
+"betont, dass das bedeutet, Sie haben weniger Platz fĂźr Windows als\n"
+"momentan.\n"
"\n"
" * „Windows(TM) löschen“: Bei dieser Variante werden alle Windows\n"
"Partitionen gelĂśscht und die Platte(n) komplett neu partitioniert.\n"
@@ -3097,9 +3242,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3127,18 +3271,16 @@ msgstr ""
" Es gibt zwei verschiedene Alternativen, nachdem Sie diese Schaltfläche\n"
"aktiviert haben:\n"
"\n"
-" * „Erneut abspielen“: Diese Installation ist nur teilweise automatisch, "
-"da\n"
-"der Partitionierungsschritt (aber nur dieser!) immer noch interaktiv\n"
+" * „Erneut abspielen“: Diese Installation ist nur teilweise automatisch,\n"
+"da der Partitionierungsschritt (aber nur dieser!) immer noch interaktiv\n"
"vonstatten geht.\n"
"\n"
" * „Automatisiert“: Vollautomatische Installation: Die Festplatte wird\n"
"vollständig reorganisiert. Alle darauf vorhandenen Daten gehen verloren!\n"
"\n"
-" Diese Funktion ist besonders nĂźtzlich, wenn man eine Menge von "
-"identischer\n"
-"Rechner einrichten will. Weitere Informationen erhalten Sie auch auf der\n"
-"Seite Auto install\n"
+" Diese Funktion ist besonders nĂźtzlich, wenn man eine Menge von\n"
+"identischer Rechner einrichten will. Weitere Informationen erhalten Sie\n"
+"auch auf der Seite Auto install\n"
"\n"
" * „Paketauswahl speichern“: (*) Sie speichern damit die Paketauswahl, die\n"
"Sie vorher getroffen haben. Wenn Sie später eine erneute Installation\n"
@@ -3317,38 +3459,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3473,7 +3609,7 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Es wurde mehr als nur eine MicrosoftWindows(TM) Partition auf Ihrer Platte\n"
+"Es wurde mehr als nur eine Microsoft Windows(TM) Partition auf Ihrer Platte\n"
"gefunden. Bitte wählen Sie welche Sie verkleinern wollen, um Ihr neues\n"
"Betriebssystem Mandrake Linux installieren zu kĂśnnen.\n"
"\n"
@@ -3522,11 +3658,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3560,7 +3696,7 @@ msgstr ""
"Wählen Sie:\n"
"\n"
" * „Installieren“: Entfernt komplett ältere Versionen von Mandrake Linux,\n"
-"die noch installiert sind um genau zu sein kĂśnnen Sie je nach aktuellem\n"
+"die noch installiert sind - um genau zu sein kĂśnnen Sie je nach aktuellem\n"
"Inhalt Ihrer Platte auch einige ältere Linux- oder anderweitige Partitionen\n"
"unangetastet behalten.\n"
"\n"
@@ -3593,7 +3729,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3621,7 +3757,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3649,7 +3785,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3680,7 +3816,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3690,23 +3826,23 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3771,7 +3907,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3793,7 +3929,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3801,7 +3937,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3845,9 +3981,8 @@ msgstr ""
" * „LILO mit grafischem Menü“: Falls Sie „LILO“ mit seiner grafischen\n"
"Oberfläche bevorzugen.\n"
"\n"
-" * „LILO mit Textmenü“: Falls Sie „LILO“ mit Textmenü als Ihren "
-"Favoriten\n"
-"ansehen.\n"
+" * „LILO mit Textmenü“: Falls Sie „LILO“ mit Textmenü als Ihren\n"
+"Favoriten ansehen.\n"
"\n"
" * „Boot Gerät“: Normalerweise müssen Sie hier nichts ändern („/dev/hda“),\n"
"Sie kĂśnnten jedoch den Starter auch auf der zweiten Platte installieren,\n"
@@ -3863,7 +3998,7 @@ msgstr ""
"irgendwie Ihr Mandrake Linux-System zu starten, wenn Sie hier keinen\n"
"Betriebssystemstarter installieren (durch Auswahl von „Abbruch“). Stellen\n"
"Sie auch sicher, dass Sie wissen was Sie tun, wenn Sie hier Einstellungen\n"
-"verändern... !!\n"
+"verändern ... !!\n"
"\n"
"Durch wählen der Schaltfläche „Fortgeschritten“ erhalten Sie etliche\n"
"Optionen, die dem fortgeschrittenen Anwender vorbehalten bleiben.\n"
@@ -3873,7 +4008,7 @@ msgstr ""
"installierten Betriebssysteme starten lässt.\n"
"\n"
"Sollte sich auf Ihrem Rechner bereits ein anderes Betriebssystem befinden,\n"
-"so wird dieses sofern es erkannt wird automatisch zu dem StartmenĂź\n"
+"so wird dieses - sofern es erkannt wird - automatisch zu dem StartmenĂź\n"
"hinzugefĂźgt. Hier kĂśnnen Sie noch einige Feineinstellungen fĂźr die\n"
"bestehenden Optionen vornehmen. Markieren Sie einen bestehenden Eintrag und\n"
"betätigen Sie die Schaltfläche „Ändern“, um ihn anzupassen oder zu löschen;\n"
@@ -3882,7 +4017,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3910,7 +4045,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3926,29 +4061,28 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3988,7 +4122,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -4013,15 +4147,15 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"„DrakX“ versucht nun alle IDE Festplatten Ihres Systems zu finden. Unter\n"
-"Anderem sucht „DrakX“ auch nach PCISCSI-Karten, die es kennt, um sie\n"
+"Anderem sucht „DrakX“ auch nach PCI SCSI-Karten, die es kennt, um sie\n"
"automatisch mit dem richtigen Treiber einzubinden.\n"
"\n"
-"Falls Sie Ăźber keinen SCSI Adapter verfĂźgen, es sich um einen ISASCSI\n"
-"Adapter handelt oder um einen PCISCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
+"Falls Sie Ăźber keinen SCSI Adapter verfĂźgen, es sich um einen ISA SCSI\n"
+"Adapter handelt oder um einen PCI SCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
"welcher Treiber funktioniert, werden Sie gebeten, „DrakX“ zu helfen.\n"
"\n"
"Ist in Ihrem Rechner kein SCSI Adapter, wählen Sie einfach „Nein“. Sollten\n"
@@ -4041,7 +4175,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4051,9 +4185,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4065,7 +4198,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -4114,7 +4247,7 @@ msgstr ""
"klassische Apple-Mäuse von Hause aus mit 2 fehlenden Maustasten\n"
"ausgeliefert werden. Hier einige Beispiele:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -4124,21 +4257,18 @@ msgstr ""
"ohne dass das Start-Gerät zur Verfßgung steht oder um ein RamDisk Abbild\n"
"fßr den BS-Start in Notfällen zur Verfßgung zu haben.\n"
"\n"
-" * „Größe der Init-RamDisk“: Standardmäßig ist eine RamDisk 4096 Bytes "
-"groß.\n"
-"Sollten Sie eine größere RamDisk benötigen, können Sie das mit diesem\n"
+" * „Größe der Init-RamDisk“: Standardmäßig ist eine RamDisk 4096 Bytes\n"
+"groß. Sollten Sie eine größere RamDisk benötigen, können Sie das mit diesem\n"
"Parameter einstellen.\n"
"\n"
-" * „Schreiben/Lesen“: Normalerweise wird die Verzeichnisbaumwurzel zuerst "
-"im\n"
-"Nur-Lese-Modus eingehängt, um eine Dateisystem Verifikation durchfßhren zu\n"
-"kĂśnnen, bevor das Betriebssystem seinen Dienst aufnimmt. Diesen Umstand\n"
+" * „Schreiben/Lesen“: Normalerweise wird die Verzeichnisbaumwurzel zuerst\n"
+"im Nur-Lese-Modus eingehängt, um eine Dateisystem Verifikation durchfßhren\n"
+"zu kĂśnnen, bevor das Betriebssystem seinen Dienst aufnimmt. Diesen Umstand\n"
"kĂśnnen Sie hier abstellen.\n"
"\n"
-" * „NoVideo“: Sollte sich die Apple Grafik-Hardware als extrem "
-"problematisch\n"
-"erweisen, können Sie diesen Parameter verwenden um im sog. „novideo“-Modus,\n"
-"also im FrameBuffer-Modus zu starten.\n"
+" * „NoVideo“: Sollte sich die Apple Grafik-Hardware als extrem\n"
+"problematisch erweisen, kĂśnnen Sie diesen Parameter verwenden um im sog.\n"
+"„novideo“-Modus, also im FrameBuffer-Modus zu starten.\n"
"\n"
" * „Standard“: Wählt diesen Eintrag als Standard Linux-Kern, den Sie durch\n"
"Drücken von [Enter] an der „Yaboot“ Eingabeaufforderung gestartet bekommen.\n"
@@ -4148,7 +4278,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4175,9 +4305,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4194,11 +4323,10 @@ msgstr ""
" * „Init Nachricht“: Ein Text, der vor der Eingabeaufforderung angezeigt\n"
"wird.\n"
"\n"
-" * „Boot Gerät“: Hiermit wird angegeben, wohin die Informationen zum "
-"Starten\n"
-"Ihres GNU/Linux Systems geschrieben werden sollen. Sie sollten in einem\n"
-"frĂźheren Schritt bereits eine Boot-Partition angelegt haben, um diese Daten\n"
-"zu beherbergen.\n"
+" * „Boot Gerät“: Hiermit wird angegeben, wohin die Informationen zum\n"
+"Starten Ihres GNU/Linux Systems geschrieben werden sollen. Sie sollten in\n"
+"einem frĂźheren Schritt bereits eine Boot-Partition angelegt haben, um diese\n"
+"Daten zu beherbergen.\n"
"\n"
" * „Open Firmware Verzögerung“: Im Gegensatz zu „LILO“, stehen mit „Yaboot“\n"
"zwei VerzĂśgerungen zur VerfĂźgung. Die erste VerzĂśgerung wird in Sekunden\n"
@@ -4221,10 +4349,10 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4232,12 +4360,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4255,42 +4382,36 @@ msgstr ""
"Hier bekommen Sie verschiedene Parameter Ihres Systems angezeigt. Je nach\n"
"vorhandener Hardware sehen Sie hier (oder eben nicht) folgende Einträge:\n"
"\n"
-" * „Maus“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie, "
-"falls\n"
-"notwendig, die Schaltfläche.\n"
+" * „Maus“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie,\n"
+"falls notwendig, die Schaltfläche.\n"
"\n"
-" * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen "
-"Sie\n"
-"die Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
+" * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen\n"
+"Sie die Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
"\n"
-" * „Zeitzone“: „DrakX“ versucht die Zeitzone anhand der gewählten Sprache "
-"zu\n"
-"„erraten“. Es ist jedoch möglich, dass Sie sich nicht in dem Land befinden,\n"
-"das die vorgegebene Sprache erahnen lässt. In diesem Fall sollten Sie die\n"
-"Schaltfläche anwählen, um die Uhr entsprechend Ihrer lokalen Zeitzone zu\n"
-"setzen.\n"
+" * „Zeitzone“: „DrakX“ versucht die Zeitzone anhand der gewählten Sprache\n"
+"zu „erraten“. Es ist jedoch möglich, dass Sie sich nicht in dem Land\n"
+"befinden, das die vorgegebene Sprache erahnen lässt. In diesem Fall sollten\n"
+"Sie die Schaltfläche anwählen, um die Uhr entsprechend Ihrer lokalen\n"
+"Zeitzone zu setzen.\n"
"\n"
" * „Drucker“: Durch Anwahl der Schaltfläche „Kein Drucker“ starten Sie den\n"
"Druckerassistenten.\n"
"\n"
-" * „Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, "
-"wird\n"
-"sie hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
-"mĂśglich.\n"
+" * „Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde,\n"
+"wird sie hier angezeigt. Es ist jedoch keine Änderung während der\n"
+"Installation mĂśglich.\n"
"\n"
-" * „TV-Karte“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird "
-"sie\n"
-"hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
+" * „TV-Karte“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird\n"
+"sie hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
"mĂśglich.\n"
"\n"
-" * „ISDN Karte“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde, "
-"wird\n"
-"sie hier angezeigt. Durch Anwahl der Schaltfläche kÜnnen Sie die Parameter\n"
-"ändern."
+" * „ISDN Karte“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde,\n"
+"wird sie hier angezeigt. Durch Anwahl der Schaltfläche kÜnnen Sie die\n"
+"Parameter ändern."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4302,7 +4423,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4320,7 +4441,7 @@ msgstr ""
"Wählen Sie „Abbruch“, um die vorhandenen Daten unangetastet zu lassen und\n"
"die Operation abzubrechen."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4332,12 +4453,12 @@ msgstr ""
"Installationsmedium Ăźbereinstimmt (Bitte erstellen Sie eine neue "
"Startdiskette). "
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Sie mĂźssen auch %s formatieren."
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4362,22 +4483,22 @@ msgstr ""
"\n"
"Wollen Sie diese Server wirklich installieren?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
"Ich kann kein Broadcast machen,\n"
"da keine NIS Domäne angegeben wurde"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Legen Sie eine leere, FAT formatierte Diskette in Laufwerk %s ein."
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Diese Diskette ist nich FAT formatiert"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4385,7 +4506,7 @@ msgstr ""
"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
"Installation bitte mit: „boot defcfg=floppy“"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fehler beim Lesen der Datei %s"
@@ -4415,7 +4536,7 @@ msgstr "Sie benĂśtigen eine Auslagerungspartition"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4423,59 +4544,59 @@ msgstr ""
"\n"
"Wollen Sie trotzdem fortfahren?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Sie müssen eine FAT Partition in „/boot/efi“ eingehängt haben."
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Freien Platz verwenden"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nicht genug freier Platz, um die neue Partition anlegen zu kĂśnnen."
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Verwende existierende Partition(en)"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Es gibt keine existierende Partition, die ich verwenden kann."
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Auf der Windows Partition Loopbacks anlegen"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Auf welche Partition wollen Sie Linux4Win installieren?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Wählen Sie die Größen"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Größe der Verzeichnisbaumwurzel-Partition in MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Größe der Auslagerungspartition in MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Den freien Platz der Windows Partition verwenden"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Bei welcher Partition wollen Sie die Größe ändern?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Errechne die Grenzen des Windows Dateisystems"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4485,13 +4606,16 @@ msgstr ""
"Partition nicht arbeiten. Folgender Fehler trat auf:\n"
"%s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Ihre Windows-Partition ist zu sehr fragmentiert.\n"
"Starten Sie bitte erst „defrag“ unter Windows."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4512,59 +4636,59 @@ msgstr ""
"Sie sollten natĂźrlich generell Sicherheitskopien Ihrer Daten angelegt\n"
"haben. Falls dies der Fall ist, kĂśnnen Sie mit OK fortfahren."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Wieviel Platz benĂśtigen sie noch fĂźr Windows auf"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Partition %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT Größenanpassung schlug Fehl: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Sie haben keine FAT Partition, deren Größe ich anpassen kann, bzw. die\n"
"ich als Loopback verwenden kann (mĂśglicherweise haben Sie auch einfach\n"
"nur nichtmehr genĂźgend freien Speicher)."
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Komplette Platte lĂśschen"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Windows(TM) lĂśschen"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sie haben mehr als eine Festplatte.\n"
"Auf welche soll GNU/Linux installiert werden?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SÄMTLICHE existierende Partitionen samt der derauf befindlichen Daten \n"
"auf Laufwerk %s gehen dabei verloren"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Benutzerdefinierte Partitionierung"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Fdisk verwenden"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4574,11 +4698,11 @@ msgstr ""
"Vergessen Sie nicht die Einstellungen mittels ,w` zu speichern, \n"
"sobald Sie fertig sind."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Sie haben nicht genug freien Platz auf Ihrer Windows Partition."
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ich finde nicht genug Platz fĂźr die Installation."
@@ -4586,16 +4710,16 @@ msgstr "Ich finde nicht genug Platz fĂźr die Installation."
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Der DrakX Partitionierungsassistent fand folgende LĂśsung:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Das Partitionieren schlug Fehl: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Netzwerkverbindung herstellen"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Netzwerkverbindung trennen"
@@ -4607,12 +4731,12 @@ msgstr ""
"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit sinnvoll \n"
"umgehen soll. Sie kĂśnnen fortfahren, jedoch auf eigenes Risiko!"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Den Einhängpunkt %s kopieren"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4624,12 +4748,12 @@ msgstr ""
"Testen Sie die CD-ROM auf einem Linux-Rechner mittels „rpm -qpl \n"
"Mandrake/rpms/*.rpm“\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Willkommen auf %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Kein Disketten-Laufwerk verfĂźgbar"
@@ -4639,9 +4763,9 @@ msgstr "Kein Disketten-Laufwerk verfĂźgbar"
msgid "Entering step `%s'\n"
msgstr "Beginn von Schritt „%s“\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4652,203 +4776,158 @@ msgstr ""
"Installationsstart und geben Sie „text“ an der Eingabeaufforderung \n"
"ein."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installationsart"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Bitte wählen Sie eine der folgenden Installationsklassen:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Die Gesamtgröße der zu installierenden Pakete beträgt etwa %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Falls Sie weniger als diese Menge installieren wollen, \n"
-"geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
-"\n"
-"Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
-"100%% installiert alle ausgewählten Pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sie haben nur Platz fßr %d%% der ausgewählten Pakete. \n"
-"\n"
-"Falls Sie weniger als diese Menge installieren wollen, \n"
-"geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
-"Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
-"%d%% installiert so viele Pakete wie mĂśglich."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Im nächsten Schritt kÜnnen Sie genauer auswählen"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Prozent der zu installierenden Pakete"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Auswahl der Paketgruppen"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuelle Paketauswahl"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Gesamtgröße: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "UngĂźltiges Paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Name: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Größe: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Wichtigkeit: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Sie kÜnnen dieses Paket nicht auswählen, da Sie nicht genug Plattenplatz "
"haben."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Die folgenden Pakete werden entfernt"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Sie kÜnnen dieses Paket nicht auswählen/es aus der Auswahl entfernen."
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dieses Paket ist existenziell, sie kĂśnnen es nicht deselektieren"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
"Sie kĂśnnen dieses Paket nicht aus der Auswahl entfernen. \n"
"Es ist bereits installiert!"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Dieses Paket muss aktualisiert werden.\n"
"Sind Sie sicher, dass Sie es aus der Auswahl entfernen wollen?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Sie kĂśnnen dieses Paket nicht aus der Auswahl entfernen. \n"
"Es muss aktualisiert werden!"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Anzeige automatisch markierter Pakete"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Laden von/Speichern auf Diskette"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Erneuere Paket Auswahl"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimal-Installation"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Zu installierende Pakete auswählen"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installation wird durchgefĂźhrt"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Schätzung"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Verbleibende Zeit "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Bitte warten, bereite Installation vor"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d Pakete"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installation des Pakets %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Akzeptieren"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "ZurĂźckweisen"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4863,17 +4942,17 @@ msgstr ""
"dann drĂźcken Sie OK.\n"
"Falls Sie sie nicht vorliegen haben, drĂźcken Sie Abbruch."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
@@ -4948,11 +5027,11 @@ msgstr "Es ist ein Fehler aufgetreten"
msgid "Do you really want to leave the installation?"
msgstr "MĂśchten Sie die Installation wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lizenz"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4967,7 +5046,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -5291,109 +5370,113 @@ msgstr ""
"litige. Pour toute question relative au prĂŠsent document, veuillez \n"
"contacter MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatur"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Bitte wählen Sie Ihren Tastaturtyp."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Hier die Liste aller Tastaturen"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Welche Installationsart wollen Sie durchfĂźhren?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installation/Aktualisierung"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Empfehlenswert"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Experte"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Aktualisierung"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Nur Pakete aktualisieren"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Bitte wählen Sie Ihren Maustyp."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Maus Port"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihre Maus hängt."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Tastenemulation"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulation der 2. Taste"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulation der 3. Taste"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA Karten konfigurieren ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE konfigurieren"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "Keine Partition verfĂźgbar"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Durchsuchen der Partitionen, um die Einhängpunkte zu finden."
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Wählen Sie die Einhängpunkte"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5406,7 +5489,7 @@ msgstr ""
"\n"
"Sind Sie einverstanden, dass ich die problematischen Partitionen lĂśsche?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5414,7 +5497,7 @@ msgstr ""
"DiskDrake ist nicht in der Lage, Ihre Partitionstabelle korrekt zu \n"
"interpretieren. Sie kĂśnnen fortfahren, jedoch auf eigenes Risiko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5423,80 +5506,85 @@ msgstr ""
"Installation wird fortgesetzt, Sie mĂźssen jedoch eine Start-Partition mit "
"DiskDrake erstellen."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
"Es wurde keine Verzeichnisbaumwurzel gefunden, die aktualisiert werden kann."
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Verzeichnisbaumwurzel"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Welche Partition ist Ihre Verzeichnisbaumwurzel?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sie müssen Ihren Rechner neu starten, um die Änderungen \n"
"der Partitionstabelle wirksam werden zu lassen."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Zu formatierende Partitionen auswählen"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Soll ich nach defekten BlĂścken suchen?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Partitionen formatieren"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Erzeugen und formatieren der Datei %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Der Swap-Bereich ist zu klein, um die Installation zu ermĂśglichen! \n"
"Bitte vergrößern Sie den Bereich."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Suche nach vorhandenen Paketen"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Suche nach vorhandenen Paketen"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Finden der zu aktualisierenden Pakete"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr ""
+"Sie kĂśnnen dieses Paket nicht aus der Auswahl entfernen. \n"
+"Es ist bereits installiert!"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Es steht auf Ihrem System nicht genĂźgend Speicherplatz fĂźr die \n"
"Installation bzw. Aktualisierung zur VerfĂźgung (%d > %d)."
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Komplett (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimal (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Empfohlen (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5505,36 +5593,36 @@ msgstr ""
"oder darauf gespeichert werden soll. Es handelt sich um das \n"
"selbe Format, wie die unter „auto_install“ erzeugten Disketten."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Von Diskette laden"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Laden von Diskette ..."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Auswahl der Pakete"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr ""
"Legen Sie eine Diskette ein, auf der Ihre Paketauswahl gespeichert ist."
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Auf Diskette speichern"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Installationsklasse"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5542,19 +5630,19 @@ msgstr ""
"Sie haben keine Paketgruppe ausgewählt\n"
"Bitte wählen Sie die minimale Installation, die Sie wßnschen."
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Mit X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Mit minimaler Dokumentation (Empfohlen)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Extrem minimale Installation (ohne „urpmi“)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5565,16 +5653,16 @@ msgstr ""
"falls nur einige der aufgefĂźhrten CDs fehlen, entfernen Sie die \n"
"entsprechende Markierung und wählen Sie dann „OK“."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM „%s“"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Installation vorbereiten"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5583,25 +5671,25 @@ msgstr ""
"Installiere Paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Einstellungen fĂźr nach der Installation"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
"Bitte legen Sie die Diskette der zu aktualisiernden Module in Laufwerk %s "
"ein."
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5675,13 +5763,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5693,155 +5783,185 @@ msgstr ""
"\n"
"MĂśchten Sie die Aktualisierungen vornehmen?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Verbindung mit dem Mandrake Linux Web-Server aufbauen, um eine Liste\n"
"verfĂźgbarer Pakete zu erhalten."
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Verbindung mit dem Mirror aufbauen, um eine Liste verfĂźgbarer Pakete zu "
"erhalten."
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardware Uhr liefert GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "CUPS-Server auf der Gegenseite"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Kein Drucker"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "VerfĂźgen Sie Ăźber eine ISA soundkarte?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Starten Sie „sndconfig“ nach der Installation, um Ihre Soundkarte "
"einzurichten."
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“nach der "
"Installation."
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Zusammenfassung"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Maus"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Zeitzone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Drucker"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN Karte"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Soundkarte"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-Karte"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokale Dateien"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-Passwort setzen"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Kein Passwort"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP Authentifizierung"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Windows-Schriften verwenden"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP Server"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5872,19 +5992,19 @@ msgstr ""
"Falls Sie eine Startdiskette erstellen wollen, legen Sie eine Diskette \n"
"ohne relevante Daten in ihr erstes Laufwerk und drücken Sie „OK“."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "erste Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "zweite Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Überspringen"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5913,7 +6033,7 @@ msgstr ""
"MĂśchten Sie jetzt eine Startdiskette fĂźr Ihr System erstellen?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5927,31 +6047,31 @@ msgstr ""
"Das Erstellen einer Startdiskette auf einem 1,44 MB Medium \n"
"schlä sicher fehl, da XFS einen sehr großen Treiber benötigt)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Ich kann kein Laufwerk finden"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Wählen Sie das Laufwerk, in dem Sie die Start-Diskette erstellen wollen"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
"Legen Sie eine Diskette, die keine relevanten Daten mehr enthällt in das %s "
"ein."
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Startdiskette wird erstellt..."
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Betriebssystemstarter vorbereiten"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5965,11 +6085,11 @@ msgstr ""
"„BootX“ verwenden müssen um LINUX auf Ihrem Rechner\n"
"zu starten."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Möchten Sie „aboot“ verwenden?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5978,16 +6098,16 @@ msgstr ""
"mit Gewalt versuchen, auch wenn dies die ZerstĂśrung der ersten \n"
"Partition verursachen kann?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "BS-Starter installieren"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Die Installation des BS-Starters schlug Fehl. Folgender Fehler trat auf:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6005,18 +6125,17 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Legen Sie eine leere Diskette in das %s ein."
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6026,7 +6145,8 @@ msgstr ""
"\n"
"Wollen Sie DrakX wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -6037,7 +6157,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -6050,16 +6170,21 @@ msgstr ""
"FĂźr Informationen zu Sicherheitsaktualisierungen dieser Version von Mandrake "
"Linux informieren Sie sich bitte unter \n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
"Installation“ im offiziellen Benutzerhandbuch von Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact/"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6076,15 +6201,15 @@ msgstr ""
"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
"Installation durchzufĂźhren.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatisiert"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Erneut abspielen"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Paketauswahl speichern"
@@ -6111,44 +6236,24 @@ msgstr "Das Programm „consolehelper“ wurde nicht gefunden."
msgid "Choose a file"
msgstr "Wählen Sie eine Datei"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Fortgeschritten"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Einfach"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Bitte warten"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Baum erweitern"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Baum verkleinern"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Umschalten zwischen unsortiert und gruppiert"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Schlechte Wahl, bitte versuchen Sie es noch einmal\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ihre Wahl? (Standard ‚%s‘) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -6157,31 +6262,35 @@ msgstr ""
"Angaben, die Sie machen mĂźssen:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ihre Wahl? (0/1, Standard ‚%s‘) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Schaltfläche „%s“: %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "MÜchten Sie diese Schaltfläche betätigen?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ihre Wahl? (Standard „%s“ %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Es gibt zahlreiche AuswahlmĂśglichkeiten (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6190,7 +6299,7 @@ msgstr ""
"Bitte wählen Sie die Nummer aus dem Bereich, die Sie bearbeiten wollen,\n"
"oder betägen Sie die Eingabetaste um fort zu fahren.Ihre Wahl? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6199,327 +6308,327 @@ msgstr ""
"=> Anmerkung: Ein Eintrag wurde geändert:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Erneut verschicken"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tschechien (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Deutschland"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spanien"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnland"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Frankreich"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norwegen"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polen"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russland"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Schweden"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Grßbritannien"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Vereinigte Staaten von Amerika"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanien"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenien (alt)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenien (Schreibmaschine)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenien (Phonetisch)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Aserbeidschan (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgien"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgarien (Phonetisch)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarien (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilien (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Weißrussland"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Schweiz (deutsches Layout)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Schweiz (franzĂśsisches Layout)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tschechien (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Deutschland (ohne Tod-Tasten)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dänemark"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (USA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwegen)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Schweden)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estland"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgien (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgien (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Griechenland"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungarn"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatien"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israel"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israel (Phonetisch)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Island"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italien"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japan (106 Tasten)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korea"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Lateinamerika"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litauen (AZERTY - alt)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litauen (AZERTY - neu)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauen (QWERTY - „number row“)"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauen (QWERTY - Phonetisch)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Lettland"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Mazedonien"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Niederlande"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polen (QWERTY Layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polen (QWERTZ Layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugal"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumänien (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumänien (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russland (YaWERTY)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slowenien"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slowakei (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slowakei (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbien (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Indien (Tamilisches Layout)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thailändische Tastatur"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadschikistan"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Türkei (traditionelles „F“ Modell)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Türkei (modernes „Q“ Modell)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraine"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Vereinigte Staaten von Amerika (international)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnam QWERTY („number row“)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslawien (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "AltGr-Taste"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Beide Umschalttasten gleichzeitig"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Strg und Umschalttaste gleichzeititg"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock Taste"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Strg und Alt gleichzeitig"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt und Umschalttaste gleichzeitig"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "MenĂźtaste"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Linke „Windows“-Taste"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Rechte „Windows“-Taste"
@@ -6532,7 +6641,31 @@ msgstr "Schleife bei den Einhängpunkten %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die Logischen Medien\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefonnummer"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Partitionen formatieren"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6575,10 +6708,6 @@ msgstr "1 Taste"
msgid "Generic 2 Button Mouse"
msgstr "Generische 2 Tasten Maus"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generisch"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rad"
@@ -6643,38 +6772,54 @@ msgstr "keine"
msgid "No mouse"
msgstr "Keine Maus"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Bitte testen Sie Ihre Maus"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Um Ihre Maus zu aktivieren:"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEGEN SIE IHR MAUS-RAD!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Beenden"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Weiter ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- ZurĂźck"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ist dies richtig?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Baum erweitern"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Baum verkleinern"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Umschalten zwischen unsortiert und gruppiert"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Internetverbindung"
@@ -6721,7 +6866,7 @@ msgstr ""
"Ich habe keine Ethernet-Netzwerkkarte finden kĂśnnen, daher kanndieser "
"Verbindungstyp nicht konfiguriert werden."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Wählen Sie die Netzwerkkarte"
@@ -6736,7 +6881,7 @@ msgstr ""
msgid "no network card found"
msgstr "Keine Netzwerkkarte gefunden"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Netzwerk konfigurieren"
@@ -6752,15 +6897,15 @@ msgstr ""
"Ihr Rechnername sollte auch die Domain beinhalten,\n"
"etwa „meinrechner.meineabteilung.meinefirma.de“."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Rechnername"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Netzwerk Konfigurationsassistent"
@@ -6817,7 +6962,7 @@ msgstr "ISDN Konfiguration"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Wählen Sie Ihren Netzanbieter.\n"
"Sollte er nicht aufgeführt sein, wählen Sie „Nicht aufgeführt“"
@@ -6836,14 +6981,14 @@ msgstr "Protokoll fĂźr den Rest der Welt"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokoll fĂźr den Rest der Welt \n"
"ohne D-Kanal (Leased Lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Welches Protokoll wollen Sie verwenden?"
#: ../../network/isdn.pm_.c:199
@@ -6867,7 +7012,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Falls Sie eine ISA-Karte besitzen, sollten die Einstellungen auf dem "
@@ -6885,13 +7031,13 @@ msgid "Continue"
msgstr "Fortfahren"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Bitte wählen Sie Ihre ISDN Karte"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ich habe eine PCI ISDN-Karte gefunden, \n"
"kenne sie jedoch nicht. Bitte helfen Sie mir,\n"
@@ -6911,47 +7057,47 @@ msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihr Modem hängt."
msgid "Dialup options"
msgstr "Einwahl Parameter"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Name der Verbindung"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonnummer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skript-basiert"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-basiert"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Name der Domäne"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Erster DNS Server (optional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Zweiter DNS Server (optional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6959,7 +7105,7 @@ msgstr ""
"\n"
"Sie kĂśnnen die Verbindung trennen oder sie neu konfigurieren."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6967,11 +7113,11 @@ msgstr ""
"\n"
"Sie kĂśnnen Ihre Internetverbindung neu konfigurieren"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Sie sind momentan mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6980,32 +7126,32 @@ msgstr ""
"Sie kĂśnnen eine Internetverbindung aufbauen oder die Verbindung neu "
"konfigurieren"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Sie sind momentan nicht mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Verbinden"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Verbindung trennen"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Die Verbindung konfigurieren"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetverbindung und -einrichtung"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Wir werden nun die Verbindung „%s“ konfigurieren."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -7024,12 +7170,12 @@ msgstr ""
"\n"
"Wählen Sie „OK“, um fortzufahren."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netzwerk konfigurieren"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7041,9 +7187,9 @@ msgstr ""
"„Abbruch“, um Ihre Internet- und Netzwerk-Konfiguration neu zu\n"
"konfigurieren.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -7053,66 +7199,72 @@ msgstr ""
"Ich versuche nun Ihre Internet-/Netzwerk-Verbindung zu konfigurieren.\n"
"Falls Sie keine Autodetektion wĂźnschen, entfernen Sie bitte die Markierung.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Wählen Sie das Profil, dass eingestellt werden soll"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Autoerkennung benutzen"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Expertenmodus"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Geräteerkennung..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normale Modem Verbindung"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "an Prot %s gefunden"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN Verbindung"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s gefunden"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL Verbindung"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "an Schnittstelle %s gefunden"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabel Verbindung"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabel Verbindung gefunden"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN Verbindung"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "Netzwerkkarte(n) gefunden"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Wählen Sie die Verbindung, die Sie konfigurieren wollen"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7123,23 +7275,23 @@ msgstr ""
"ich versuchen soll.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet-Verbindung"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "MĂśchten Sie die Verbindung bei Betriebssystemstart herstellen?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Netzwerk Konfiguration"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Das Netzwerk muss neu gestartet werden"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7150,7 +7302,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7160,7 +7312,7 @@ msgstr ""
"\n"
"Die Konfiguration wird nun in Ihr System integriert.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7169,20 +7321,20 @@ msgstr ""
"neu zu starten, um Probleme, die durch die Änderung des\n"
"Rechnernamens hervorgerufen werden, zu vermeiden."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Während der Konfiguration traten Fehler auf.\n"
"Kontrollieren Sie Ihre Verbindung mit „net_monitor“ oder dem Mandrake "
"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
"die Konfguration starten."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -7192,7 +7344,7 @@ msgstr ""
"Drücken Sie einfach „OK“, um die Einstellungen zu behalten.\n"
"Fall Sie Felder verändern, wird die Konfiguration ßberschrieben."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7202,38 +7354,43 @@ msgstr ""
"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
"angegeben werden (etwa „192.168.1.42“)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurieren der Netzwerkkarte %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (Treiber %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP Adresse"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netzmaske"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatische IP-Adressen Zuweisung"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Beim Hochfahren gestartet"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7245,64 +7402,64 @@ msgstr ""
"etwa „meinrechner.meineabteilung.meinefirma.de“.\n"
"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS-Server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (etwa %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway Gerät"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Proxies einstellen"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP Proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP Proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Netzwerkkarten-ID Ăźberwachen (sinnvoll fĂźr Laptops)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy muss „http://...“ sein"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy muss „ftp://...“ sein"
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet Konfiguration"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "MĂśchten Sie jetzt versuchen eine Internetverbindung aufzubauen?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Ich teste gerade Ihre Verbindung..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sie sind jetzt mit dem Internet verbunden."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Aus SicherheitsgrĂźnden wird die Verbindung nun unterbrochen."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7310,114 +7467,119 @@ msgstr ""
"Sie sind momentan nicht mit dem Internet verbunden.\n"
"Versuchen Sie Ihre Internetverbindung wieder zu konfigurieren."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Verbindungskonfiguration"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
"Bitte fĂźllen Sie die folgen Felder aus \n"
"bzw. makieren Sie die korrekten Angaben"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Karten IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Karten Mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Karten E/A"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Karten IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Karten IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Ihre eigene Telefonnummer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Name des Providers (z.B. provider.net) "
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefonnummer des Providers"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Erster DNS des Providers (optional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Zweiter DNS des Providers (optional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Land auswählen"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Wahlmodus"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Verbindungsgeschwindigkeit"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "VerbindungsTimeout (in Sec)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Kennzeichen (Login)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Passwort"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "Fehler beim Einhängen: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Diese Rechnerarchitektur kennt keine erweiterten Partitionen"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Sie haben einen unbenutzten Bereich in Ihrer Partitionstabelle, \n"
"den ich nicht ansprechen kann. Die einzige LĂśsung ist, dass Sie \n"
"Ihre primären Partitionen so verschieben, dass der Bereich direkt \n"
"neben der erweiterten Partition zu liegen kommt."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaurieren aus der Datei %s schlug Fehl: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fehlerhafte Backup-Datei"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fehler beim Schreiben in Datei %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7428,186 +7590,186 @@ msgstr ""
"Das bedeutet, dass jeder Schreibvorgang auf der Platte zu einem \n"
"unvorhersagbaren Ergebnis fĂźhren wird."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "unbedingt notwendig"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "wichtig"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "sehr angenehm"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "angenehm"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "eventuell"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokaler Drucker"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Entfernter Drucker"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Drucker an CUPS-Server auf der Gegenseite"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Drucker an lpd-Server auf der Gegenseite"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Netzwerkdrucker (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Drucker an SMB/Windows 9x/ME/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Drucker an NetWare Server"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Druckeranschluss URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Den Auftrag an ein Kommando weiterleiten"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Unbekanntes Modell"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokale Drucker"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Entfernte Drucker"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " an Parallelport \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB-Drucker \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", Multifunktionsgerät am Parallelport \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", USB Multifunktionsgerät"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", Multifunktionsgerät am HP JedDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", Multifunktionsgerät"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", drucken auf %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "auf LDP-Server „%s“, Drucker „%s“"
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP Drucker „%s“, Port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "auf Windows-Server „%s“, Freigabe „%s“"
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "auf dem Novell-Server „%s“, Drucker „%s“"
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", mittels Kommando „%s“"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Rohdaten-Drucker (kein Treiber)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(an %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(an diesem Rechner)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Auf CUPS-Server „%s“"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Standard)"
@@ -7630,11 +7792,11 @@ msgstr ""
"hier keine Einstellungen vornehmen, die Drucker werden \n"
"automatisch erkannt und Ăźbernommen."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "CUPS Konfiguration"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "CUPS-Server angeben"
@@ -7678,7 +7840,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Die Prot Nummer muss eine Zahl sein!"
@@ -7686,7 +7848,7 @@ msgstr "Die Prot Nummer muss eine Zahl sein!"
msgid "CUPS server IP"
msgstr "CUPS-Server-IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7694,20 +7856,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatische CUPS Konfiguration"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Geräteerkennung..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test der AnschlĂźsse"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Drucker hinzufĂźgen"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7728,13 +7882,13 @@ msgstr ""
"Sie werden nur nach den nĂśtigen Informationen Ăźber den Drucker gefragt, um "
"Ihnen dann Zugriff auf Treiber, Druckoptionen und Anschlussart zu erhalten."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokaler Drucker"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7768,11 +7922,11 @@ msgstr ""
"Verwenden Sie den „Expertenmodus“ von PrinterDrake, um einen entfernten "
"Drucker einzurichten, falls er nicht automatisch aufgefĂźhrt wird."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Drucker-Selbsterkennung"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7796,11 +7950,11 @@ msgstr ""
"Druckqualität) anpassen wollen, wählen Sie „Drucker“ im „Hardware“\n"
"Bereich des Mandrake Kontrollzentrums."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Selbsterkennung von Druckern"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7816,33 +7970,37 @@ msgstr ""
"\n"
"Wollen Sie wirklich, dass PrinterDrake eine Selbsterkennung versucht?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Autoerkennung durchfĂźhren"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Drucker selbst einrichten"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Test der AnschlĂźsse"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "%s gefunden"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Drucker an Parallelport \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-Drucker \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7854,11 +8012,11 @@ msgstr ""
"Anschlßsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, LPT2:, ...; Erster "
"USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Sie mßssen einen Geräte- oder Dateinamen eingeben!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7866,7 +8024,7 @@ msgstr ""
"Kein Lokaler Drucker erkannt!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7874,7 +8032,7 @@ msgstr ""
"Netzwerkdrucker kĂśnnen erst nach der Installation eingerichtet werden. "
"Wählen Sie „Einstellungen/Hardware/Drucker“ im Mandrake Kontrollzentrum."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7882,7 +8040,7 @@ msgstr ""
"Um Netzwerkdrucker zu installieren wäen Sie bitte „Abbruch“, wechseln in den "
"„Expertenmoduns“ und wählen erneut „Drucker hinzufügen“."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7891,7 +8049,7 @@ msgstr ""
"Drucker handelt, den Sie einrichten wollen, geben Sie einen Geräte- oder "
"Dateinamen in der Eingabezeile an."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7900,7 +8058,7 @@ msgstr ""
"gewßnschten Drucker oder geben Sie einen Geräte- oder Dateinamen in der "
"Eingabezeile an."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7912,7 +8070,7 @@ msgstr ""
"oder wollen Sie die Einrichtung selbst vornehmen, wählen Sie „Manuelle "
"Konfiguration“."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7924,7 +8082,7 @@ msgstr ""
"Ihr Drucker nicht richtig erkannt worden sein, oder wollen Sie die "
"Einrichtung selbst vornehmen, wählen Sie „Manuelle Konfiguration“."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7932,11 +8090,11 @@ msgstr ""
"Bitte wählen Sie den Anschluss, an dem der Drucker hängt oder geben Sie "
"einen Geräte- oder Dateinamen in der Eingabezeile an."
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Bitte wählen Sie den Anschluss, an dem Ihr Drucker hängt."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7945,52 +8103,65 @@ msgstr ""
"LPT2:, ..., Erster USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Sie mßssen einen Drucker wählen/ein Gerät eingeben!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Manuelle Konfiguration"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Ist Ihr Drucker ein Multifunktionsgerät von HP (OfficeJet, PSC, PhotoSmart, "
"LaserJet 1100/1200/1220/3200/3300 mit Scanner)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Installiere das „HPOJ“-Paket ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Geräte untersuchen und HPOJ einrichten ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Installiere das „SANE“-Paket ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Pakete Installieren ..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Scannen mit Ihrem HP-Multifunktionsgerät"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Scannen mit Ihrem HP-Multifunktionsgerät"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "CUPS den Drucker-Port zugänglich machen ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Lesen der Drucker-Datenbank ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Optionen fĂźr Netzwerk-Druckerspooler"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7999,27 +8170,27 @@ msgstr ""
"Rechnernamen des Drucker-Servers sowie den Druckernamen auf diesem Server "
"angeben, an den die Aufträge ßbertragen werden sollen."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Name des entfernten Rechners"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Name des entfernten Druckers"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Der Name des entfernten Rechners fehlt!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Der Name des entfernten Druckers fehlt!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Drucker-Parameter"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8032,35 +8203,35 @@ msgstr ""
"fĂźr den Drucker, auf den Sie zugreifen mĂśchten, sowie entsprechender "
"Benutzername, Passwort und Arbeitsgruppe."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-Server"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-Server-IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Freigabename"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Arbeitsgruppe"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Sie mĂźssen entweder Den Servernamen oder seine IP-Adresse angeben!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Der Name der Samba-Freigabe fehlt!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8084,7 +8255,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8093,7 +8264,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8101,11 +8272,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Optionen fĂźr NetWare-Drucker"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8117,27 +8288,27 @@ msgstr ""
"Rechnernamen des Computers), Name der Drucker-Warteschlange, sowie falls "
"notwendig, den entsprechenden Benutzernamen samt Passwort."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Drucker-Server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Name der Druckerwarteschlange"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Der NCP Servername fehlt!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Der NCP Warteschlangen-Name fehlt!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Optionen fĂźr TCP/Socket-Drucker"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -8150,19 +8321,19 @@ msgstr ""
"Servern kann es eine andere sein. Schauen Sie im Zweifelsfall in die "
"Unterlagen Ihrer Hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Rechnername des Druckers"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Der Rechnername des Druckers fehlt!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Druckeranschluss URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8172,11 +8343,11 @@ msgstr ""
"bzw. den Foomatic Spezifikationen genĂźgen. Es sei hier noch angemerkt, dass "
"nicht alle URI-Typen von allen Drucksystemem unterstĂźtzt werden."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Sie mĂźssen eine gĂźltige URI eingeben!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8185,27 +8356,23 @@ msgstr ""
"Beschreibung und Standort mĂźssen nicht ausgefĂźllt werden.\n"
"Sie dienen nur als Kommentare fĂźr den Anwender."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Druckername"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beschreibung"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Standort"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Vorbereiten der Drucker-Datenbank ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Ihr Druckermodell"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8231,24 +8398,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Das Modell ist richtig"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Modell auswählen"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Auswahl des Druckertyps"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Über welchen Druckertyp verfügen Sie?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -8262,7 +8429,7 @@ msgstr ""
"Falls die Markierung auf einem falschen Gerät oder auf „Rohdaten-Drucker“ "
"steht, suchen Sie bitte selbst Ihren Drucker in der Liste."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8270,11 +8437,11 @@ msgstr ""
"Falls Ihr Drucker nicht aufgefßhrt ist wählen Sie bitte ein kompatibles bzw "
"ähnliches Modell (Fßr Einzelheiten schauen Sie bitte in Ihr Druckerhandbuch)."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI Win-Drucker Konfiguration"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8289,11 +8456,11 @@ msgstr ""
"Schnittstelle oder an einer Printserver-Box hängen, schließen Sie ihn bitte "
"an den ersten Parallelport, bevor Sie versuchen eine Testseite zu drucken ..."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark Tintenstrahl-Konfiguration"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8305,7 +8472,7 @@ msgstr ""
"Sie den Druker direkt an Ihren Rechner oder richten Sie ihn auf dem Rechner "
"ein, an den er angeschlossen ist."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8327,7 +8494,7 @@ msgstr ""
"auf „Abbruch“ drücken. Drucken Sie dann Druckkopf-Einrichtungsseiten mit "
"„lexmarkmaintain“ und justieren Sie damit den Druckkopf."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8343,22 +8510,22 @@ msgstr ""
"richtig eingestellt sind. Es sei auch angemerkt, dass häufig mit steigender "
"Druckqualität die Druckgeschwindigkeit sinkt."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Der Parameter %s ist yu groß oder zu klein!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8367,11 +8534,11 @@ msgstr ""
"Möchten Sie diesen Drucker („%s“)\n"
"als Standarddrucker verwenden?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testseiten"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8385,39 +8552,39 @@ msgstr ""
"gedruckt wird. Normalerweise sollte es ausreichen, die Standard-Testseiten "
"auszudrucken."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Keine Testseiten"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Drucken"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standard-Testseite"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternative Testseite (US-Format - „Letter“)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternative Testseite (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto-Testseite"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Keine Testseite(n) drucken"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Druck der Testseite(n) ..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8432,7 +8599,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8440,15 +8607,15 @@ msgstr ""
"Die Testseite(n) wurden an den Drucker gesandt.\n"
"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "War der Ausdruck korrekt?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Rohdaten-Drucker"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8462,7 +8629,7 @@ msgstr ""
"grafischen Hilfsprogramme erlauben Ihnen auf einfache Weise den richtigen "
"Drucker zu wählen und die notwendigen Druckerparameter anzugeben.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8472,8 +8639,8 @@ msgstr ""
"zahlreicher Anwendungen angeben, lassen Sie jedoch den Dateinamen weg, da "
"die zu druckende Datei von der Anwendung geliefert wird.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8486,11 +8653,11 @@ msgstr ""
"bestimmten Druckauftrag zu ändern. Geben Sie die gewßnschten Angaben einfach "
"in der Kommandozeile mit an, etwa: „%s <Datei>“. "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Um alle existierenden Optionen des Druckers zu erfahren, lesen Sie entweder "
@@ -8498,7 +8665,7 @@ msgstr ""
"Drucker-Optionen“. %s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8506,7 +8673,7 @@ msgstr ""
"Hier die Liste vorhandener Drucker-Parameter des aktuellen Druckers:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8515,8 +8682,8 @@ msgstr ""
"Verwenden Sie den Befehl „%s <Datei>“, um die Datei <Datei> in der "
"Kommandozeile auszudrucken.\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8526,7 +8693,7 @@ msgstr ""
"angeben. Tragen Sie bitte keinen Dateinamen ein, da dieser vom Programm "
"ergänzt wird.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8534,7 +8701,7 @@ msgstr ""
"Um eine Liste der Drucker-Parameter Ihres Druckers zu erhalten, betätigen "
"Sie bitte die Schaltfläche „Liste der Drucker-Optionen“."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8543,7 +8710,7 @@ msgstr ""
"Verwenden Sie einen der Befehle „%s <Datei>“ oder „%s <Datei>“, um die Datei "
"<Datei> in der Kommandozeile auszudrucken.\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8559,7 +8726,7 @@ msgstr ""
"Druckaufträge anhä, wenn Sie es betägen. Das kann beispielsweise dann "
"hilfreich sein, wenn Sie einen Papierstau in Ihrem Drucker haben.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8572,38 +8739,49 @@ msgstr ""
"spezeiellen Druckjobs zu konfigurieren. FĂźgen Sie einfach die gewĂźnschten "
"Einstellungen in der Kommandozeile ein, etwa „%s <Datei>“.\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Schließen"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Drucken/Scannen mit „%s“"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Drucken/Scannen mit „%s“"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Drucken/Scannen mit „%s“"
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Drucken auf Drucker „%s“"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Schließen"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Liste der Drucker-Optionen"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8618,40 +8796,30 @@ msgstr ""
"\n"
"Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Ihr HP-Multifunktionsgerät wurde automatisch auch zum Scannen eingerichtet. "
-"Sie können nun in der Kommandozeile mittels „ptal-hp %s scan ...“ scannen. "
-"Zur Zeit existieren leider keine grafischen Werkzeuge, mit deren Hilfe Sie "
-"Scannen kÜnnen - Ihr Multifunktionsgerät wird noch nicht unterstßtzt. "
-"Weitetre Informationen finden Sie in der Datei „/usr/share/doc/hpoj-0.8/ptal-"
-"hp-scan.html“ auf Ihrem Rechner. Falls Sie einen HP LaserJet 1100 oder 1200 "
-"haben, kĂśnnen Sie nur scannen, wenn Sie die Scanner-Option installiert "
-"haben.\n"
-"\n"
-"Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Lesen der Treiber-Datenbank ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Drucker-Einstellung transferieren"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8667,7 +8835,7 @@ msgstr ""
"Warteschlange gehen jedoch verloren.\n"
"Nicht alle Warteschlangen kĂśnnen Ăźbernommen werden:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8675,7 +8843,7 @@ msgstr ""
"CUPS unterstĂźtzt keine Druker an Novel Servern oder Drucker, die ihre Daten "
"in ein frei gewähltes Kommando senden.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8683,11 +8851,11 @@ msgstr ""
"PDQ unterstĂźtzt nur lokale Drucker, entfernte LPD Drucker und Socket/TCP "
"Drucker.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD und LPRng unterstĂźkeine IPP Drucker.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8695,7 +8863,7 @@ msgstr ""
"Warteschlangen, die nicht mit diesem Programm oder „foomatic-configure“ "
"ertellt wurden, kĂśnnen nicht Ăźbertragen werden."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8705,7 +8873,7 @@ msgstr ""
"Drucker, die mit den PPD-Dateien ihrer Hersteller oder CUPS-spezifischen "
"Treibern eingerichtet wurden, kĂśnnen nicht Ăźbertragen werden."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8715,15 +8883,15 @@ msgstr ""
"Markieren Sie die Druckerwarteschlangen, die sie Ăźbertragen wollen und "
"betätigen Sie die Schaltfläche „Übertragen“."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Druckerdaten nicht Ăźbertragen"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Übertragen"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8735,12 +8903,12 @@ msgstr ""
"Ăźberschreiben. Sie kĂśnnen dem Drucker auch einen neuen \n"
"Namen geben oder ihn einfach Ăźberspringen."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Druckernamen sollten nur Buchstaben, Ziffern und den Unterstrich unterhalten"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8749,16 +8917,16 @@ msgstr ""
"Der Drucker „%s“ existiert bereits. Wollen Sie ihn wirklich \n"
"ersetzen?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Neuer Druckername"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Übertragen von „%s“ ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8767,29 +8935,29 @@ msgstr ""
"Sie haben Ihren alten Standarddrucker („%s“) übertragen, soll es auch Ihr "
"Standarddrucker unter dem neuen Drucksystem „%s“ werden?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Aktualisieren der Druckerdaten ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Konfiguration eines entfernten Druckers"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Netzwerk starten ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Netzwerk jetzt konfigurieren"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Ihr Netzwerk ist nicht konfiguriert"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8801,11 +8969,11 @@ msgstr ""
"Sollten Sie dennoch fortfahren, ohne Ihr Netzwerk einzurichten, ist der "
"Drucker hinterher nicht zu verwenden. Wie wollen Sie fortfahren?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Weiter ohne Netzwerkkonfiguration"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8821,7 +8989,7 @@ msgstr ""
"anschließend erneut den Drucker mittels „Hardware/Drucker“im Kontrollzentrum "
"einzurichten."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8832,24 +9000,24 @@ msgstr ""
"und Ihre Softwareeinstellngen. Versuchen Sie anschließend erneut den "
"entfernten Drucker einzurichten."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Drucksystem neu starten ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "Hoch"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "Paranoid"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installation eines Drucksystems in Sicherheitsebene %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8874,11 +9042,11 @@ msgstr ""
"\n"
"Wollen Sie wirklich dieses Drucksystem auf diesem Rechner installieren?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Drucksystem beim BS-Start aktivieren"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8899,63 +9067,63 @@ msgstr ""
"\n"
"Wollen sie den automatischen Start des Drucksystems wieder herstellen?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Suche nach installierter Software"
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Entfernen von LPRng ..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Entfernen des LPD ..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Wählen Sie das Drucksystem"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Welches Drucksystem (Spooler) wollen Sie verwenden?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigurieren von Drucker „%s“ ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Installieren des Pakets Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Drucker-Optionen"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "PrinterDrake vorbereiten ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Anwendungen konfigurieren ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "MĂśchten Sie einen Drucker konfigurieren?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Drucksystem: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8967,7 +9135,7 @@ msgstr ""
"verwenden, Informtionen Ăźber ihn zu erhalten oder einen entfernten CUPS-"
"Server fßr Star/OpenOffice zugänglich zu machen."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8977,28 +9145,32 @@ msgstr ""
"Doppelklick auf einem aus, um ihn zu ändern, als Standarddrucker zu "
"verwenden oder Informtionen Ăźber ihn zu erhalten."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Aktualisiere Druckerliste (um alle entfernten CUPS-Drucker anzuzeigen)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Drucksystem ändern"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normaler Modus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Verlassen"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "MĂśchten Sie einen weiteren Drucker einrichten?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Drucker-Konfiguration ändern"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -9007,104 +9179,104 @@ msgstr ""
"Drucker %s\n"
"Was wollen Sie an diesem Drucker ändern?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "AusfĂźhren!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Art der Druckeranbindung"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Druckername, Beschreibung, Standort"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Druckerproduzent, Modell, Treiber"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Druckerproduzent, Modell"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Als Standarddrucker verwenden"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Diesen Drucker fĂźr StarOffice/OpenOffice.org hinzufĂźgen"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Diesen Drucker fĂźr StarOffice/OpenOffice.org entfernen"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Testseite(n) drucken"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Wie dieser Drucker genutzt werden kann"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Drucker entfernen"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Alten Drucker „%s“ entfernen ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Standarddrucker"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Der Drucker „%s“ ist jetzt Ihr Standarddrucker“"
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Drucker fĂźr StarOffice/OpenOffice.org hinzufĂźgen"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
"Der Drucker „%s“ wurde erfogrich zu StarOffice/OpenOffice.org hinzugefügt."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Fehler beim Hinzufügen von „%s“ für StarOffice/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Drucker fĂźr StarOffice/OpenOffice.org entfernen"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
"Der Drucker „%s“ wurde erfogrich für StarOffice/OpenOffice.org entfernt."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Fehler beim Entfernen von „%s“ für StarOffice/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Möchten Sie den Drucker „%s“ wirklich entfernen?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Drucker „%s“ entfernen ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -9192,24 +9364,64 @@ msgstr "Die PasswĂśrter stimmen nicht Ăźberein. Bitte versuchen Sie es eneut!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ich kann keine Partition zu dem _formatierten_ RAID md%d hinzufĂźgen"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ich kann Datei „%s“ nicht schreiben"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid schlug Fehl"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid schlug Fehl (MĂśglicherweise fehlen die RAID-Tools)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nicht genĂźgend Partitionen fĂźr RAID Level %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Diese Ebene ist mit Vorsicht zu verwenden. Zwar macht sie Ihr System \n"
+"einfacher handhabbar, aber auch leichter angreifbar: In dieser Form darf \n"
+"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
+"da Angreifer mangels Passwort an Ihre Daten gelangen kĂśnnen!"
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Mit dieser Sicherheitsebene wird es mĂśglich, das System als einen \n"
+"Server zu verwenden.\n"
+"Die Sicherheit ist nun ausreichend hoch, um das System als Server \n"
+"einzusetzen, der einer Vielzahl von Klienten einen Verbindungsaufbau \n"
+"erlaubt. Es sei hier angemerkt, dass Ihr Rechner, wenn Sie nur als \n"
+"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
+"verwenden sollte."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Erweiterte Einstellungen"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Optionen"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound System"
@@ -9274,7 +9486,7 @@ msgstr ""
"HardDrake fĂźhrt Hardwaretests durch, und konfiguriert (falls nĂśtig) \n"
"neue/geänderte Hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9358,7 +9570,7 @@ msgstr ""
"Der Linux Virtual Server kann verwendet werden, um um ein \n"
"hochperformanten HochverfĂźgbarkeitsserver aufzusetzen."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9445,7 +9657,7 @@ msgstr ""
"solche Server (RPC-basierte) beherbergen, muss dieser Dienst \n"
"aktiviert sein."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9551,7 +9763,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Gemeinsamer Dateizugriff"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "System"
@@ -9682,6 +9894,7 @@ msgstr ""
"Entwicklungsumgebungen."
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrollzentrum"
@@ -9805,6 +10018,17 @@ msgstr "http://www.mandrakesoft.com/sales/contact/"
msgid "Installing packages..."
msgstr "Pakete Installieren ..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Bitte loggen Sie sich aus, und drĂźcken Sie Ctrl-Alt-RĂźcktaste"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr ""
+"Bitte loggen Sie sich erneut in %s ein, \n"
+"um die Änderungen wirksam werden zu lassen."
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9813,6 +10037,160 @@ msgstr ""
"Ich kann Ihre Partitionstabelle nicht lesen, sie ist fehlerhaft :-(\n"
"Um fortfahren zu kĂśnnen setze ich die fehlerhaften Partitionen zurĂźck"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Drucker-Einstellung transferieren"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datenbankserver"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datenbankserver"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Server"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Benutzer hinzufĂźgen"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Hilfe"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nicht Verbunden"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "LĂśschen"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Alle auswählen"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Benutzer hinzufĂźgen"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigurieren ..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "neu konfigurieren"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Kein Disketten-Laufwerk verfĂźgbar"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fehler!"
@@ -9864,6 +10242,11 @@ msgstr ""
"Bitte wählen Sie fßr jeden Schritt, ob er wie bei Ihrer Installation "
"vorgenommen werden soll, oder ob Sie ihn manuell durchfĂźhren wollen."
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Erstellen einer Auto-Installationsdiskette"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9876,12 +10259,12 @@ msgstr ""
"\n"
"Die Parameter der Autoinstallation sind in den Abschnitten rechts verfĂźgbar."
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratuliere!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9889,28 +10272,19 @@ msgstr ""
"Die Diskette wurde erfolgreich erstellt.\n"
"Sie kĂśnnen die Installation nun automatisch durchfĂźhren."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Auto-Installation"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Eintrag hinzufĂźgen"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Letzten Eintrag entfernen?"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9920,7 +10294,7 @@ msgstr ""
" DrakBackup Report \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9931,19 +10305,7 @@ msgstr ""
" DrakBackup Dämon Report\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9954,65 +10316,89 @@ msgstr ""
" DrakBackup Report Details\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "Vortschritt"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Systemdateien sichern ..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Backup-Dateien auf der Festplatte ..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Benutzerdateien sichern ..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Festplattenbackup in Bearbeitung ..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Andere Dateien sichern ..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"Dateiliste per FTP senden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) FTP Verbindungsprobleme: Es war nicht mĂśglich, Ihre Dateien per FTP zu "
"Ăźbertragen.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Fehler beim Verschicken der Mail. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Dateiauswahl"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
"Wählen Sie die Dateien oder Verzeichnisse und betätigen Sie die Schaltfläche "
"„Hinzufügen“"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10020,26 +10406,26 @@ msgstr ""
"\n"
"Bitte wählen Sie alle benÜtigten Parameter.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Diese Optionen kön alle Ihre Dateien im Verzeichnis „/etc“ sichern und "
"wiederherstellen\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Sichern Ihrer Systemdateien (Verzeicnis „/etc“)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Inkrementelles Backup (alte Backups nicht Ăźberschreiben)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Keine kritischen Dateien (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10047,84 +10433,78 @@ msgstr ""
"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
"„/etc“ Verzeichnisses wiederherzustellen."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Bitte wählen Sie alle Kennzeichen, deren Dateinen mitgesichert werden sollen."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Die Browser-Caches nicht archivieren."
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Benutzer"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "FTP-Verbindung zum erstellen der Sicherungskopien verwenden"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Rechnernamen oder IP eingeben."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Bitte geben Sie das Verzeichnis an,\n"
" in dem die Archive erstellt werden sollen."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Bitte geben Sie Ihr Benutzerkennzeichen ein"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Bitte geben Sie Ihr Passwort ein"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Passwort behalten"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP Verbindung"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sichere Verbindung"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Sicherungskopie auf CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Bitte wählen Sie Ihren CD-Paltz"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Kontrollieren Sie, ob Sie die CDRW vorher lĂśschen wollen."
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -10132,7 +10512,7 @@ msgstr ""
"Bitte markieren, falls Sie \n"
"„install boot“ auf Ihrer CD haben wollen."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10140,16 +10520,21 @@ msgstr ""
"Bitte geben Sie den Gerätenamen \n"
"Ihres Brenners an, etwa „0,1,0“."
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Bitte geben Sie den Gerätenamen fß Archivierung an."
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Kontrollieren Sie, ob Sie die CDRW vorher lĂśschen wollen."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10157,51 +10542,57 @@ msgstr ""
"Bitte geben Sie die Maximalgröße \n"
"fĂźr DrakBackup an."
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Quota fĂźr Backup-Datei verwenden."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Netzwerk"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM/DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Festplatte/NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Typ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "stĂźndlich"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "täglich"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "wĂśchendlich"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "monatlich"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Dämon verwenden"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10209,7 +10600,7 @@ msgstr ""
"Bitte wählen Sie das Zeitintervall \n"
"zwischen zwei Sicherungen."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -10217,71 +10608,67 @@ msgstr ""
"Bitte wählen Sie ein\n"
"Sicherungsmedium."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Festplatte mit Dämin verwenden"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTP mit Dämon verwenden"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+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 "Stellen Sie sicher, dass der Cron-Dämon als Dienst aktiviert ist."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "E-Mail Bericht nach jedem Sicherungsvorgang an: "
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Was"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Wo"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Wann"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Mehr Parameter"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "DrakBackup Konfiguration"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Bitte wählen Sie wohin Sie die Sicherungskopien machen wollen."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "auf Festplatte"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "Ăźber Netzwerk"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Bitte wählen Sie, was Sie sichern wollen"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "System sichern"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Benutzerkennzeichen sichern"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Benutzerkennzeichen auswählen"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -10289,7 +10676,7 @@ msgstr ""
"\n"
"Sicherungsquellen: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -10297,7 +10684,7 @@ msgstr ""
"\n"
"- Systemdateien:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -10305,7 +10692,7 @@ msgstr ""
"\n"
"- Benutzerdateien:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -10313,7 +10700,7 @@ msgstr ""
"\n"
"- Sonstige Dateien:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -10322,16 +10709,45 @@ msgstr ""
"\n"
"- Auf Festplatte sichern unter: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Mausschnittstelle: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Via FTP sichern auf: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10340,7 +10756,7 @@ msgstr ""
"\t\t Benutzer: %s\n"
"\t\t Pfad: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -10348,19 +10764,19 @@ msgstr ""
"\n"
"- Optionen:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tKeine Systemdateien\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSicherungen verwenden „tar“ und „bzip2“\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tSicherungen verwenden „tar“ und „gzip“\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10369,28 +10785,42 @@ msgstr ""
"\n"
"- Dämon (%s) enthält:\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t- Festplatte.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t- CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t- Netzwerk per SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t- Netzwerk per FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t- Netzwerk per FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Keine Konfiguration. Wählen Sie dein Assistenten oder Fortgeschritten.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10398,7 +10828,7 @@ msgstr ""
"Liste der wiederherzustellenden Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10406,135 +10836,138 @@ msgstr ""
"Liste der beschädigten Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr ""
"Bitte entfernen Sie die Markierung oder lÜschen Sie sie das nächste Mal."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Die Sicherungen sind beschädigt."
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Alle Ihre gewälhten Daten wurden "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " erfolgreich auf %s wiederhergestellt "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Konfiguration wiederherstellen "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK, die Ăźbrigen Dateien zu aktualisieren."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Liste wiederherzustellender Kennzeichen (letztes Datum per Kennzeichen ist "
"wichtig)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Systemdateien sichern vor:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Bitte wählen Sie, welches Datum wiederhergestellt werden soll."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Auf Festpaltte sichern"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Bitte geben Sie das Archivverzeichnis an:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP Verbindung"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sichere Verbindung"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Wählen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Anderes Medium"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "System wiederherstellen"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "Auswahl des Pfades der wiederhergestellt werden soll (statt „/“"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Erstelle Sicherung vor dem Wiederherstellen (nur fĂźr inkrementelle "
"Sicherungen)."
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Benutzerkennzeichen vor dem Wiederherstellen entfernen."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Alle Sicherungen wiederherstellen"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "BenutzergefĂźhrte Wiederherstellung"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Hilfe"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "<- ZurĂźck"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Speichern"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Sicherung erstellen"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Wiederherstellen"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Weiter ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10542,7 +10975,7 @@ msgstr ""
"Bitte erstellen Sie eine Sicherung, bevor Sie wiederherstellen kĂśnnen.\n"
"oder stellen Sie sicher, dass der Pfad zu den Sicherungen korrekt ist."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10552,31 +10985,35 @@ msgstr ""
" Ihre Bericht-Mail konnte nicht versandt werden.\n"
" Bitte richten Sie Sendmail korrekt ein."
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Zu installierende Pakete"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Fehler bei der Üertragung via FTP.\n"
"Bitte korrigieren Sie Ihre FTP-Konfiguration."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Bitte wählen Sie die wiederherzustellenden Daten..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Bitte wählen Sie ein Sicherungsmedium..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Bitte wählen Sie die zu sichernden Daten..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10584,75 +11021,75 @@ msgstr ""
"Keine Konfigurationsdatei gefunde.\n"
"Bitte wählen Sie den „Assistenten“ oder „Erweitert“."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Systemdateien sichern"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Benutzerdateien sichern"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Andere Dateien sichern"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Fortschritt"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "DatenĂźagung via FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Dateien Ăźbertragen ..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Liste der Daten, die auf CD-ROM sollen."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Bitte geben Sie die CD-Brenngeschwindigkeit ein"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Bitte geben Sie den CD-Brenner an (etwa 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Bitte markieren, falls Sie „install boot“ auf Ihrer CD haben wollen."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen."
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Sicherungskonfiguration anzeiegen"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "AssistentengestĂźtzte Konfiguration"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Expertenkonfiguration"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Jetzt sichern"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "DrakBackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10714,7 +11151,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10729,7 +11166,7 @@ msgstr ""
" in „/etc/postfix/main.cf“ korrigieren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10812,7 +11249,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10840,13 +11277,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by Sebastien DUPONT <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -10876,7 +11318,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10916,7 +11358,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10934,7 +11376,7 @@ msgstr ""
"Rechner erstellt werden.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10957,7 +11399,7 @@ msgstr ""
"Seien Sie daher vorsichtig und ändern Sie die Sicherungskopien \n"
"nicht manuell.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -11001,99 +11443,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Die Installation von %s schlug Fehl. Folgender Fehler trat auf:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsolen-Werkzeuge"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "auf Festplatte"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Maus"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Entfernter Drucker"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Freigabename"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "PrinterDrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Netzwerk Konfigurationsassistent"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Authentifizierung"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Auswahl der Pakete"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Bitte warten"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Nach dem Entfernen"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Die Bildschim-Schnappschüsse liegen nach der Installation unter „%s“"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netzwerk Konfiguration (%d Karten)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Profil lĂśschen..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Zu lĂśschendes Profil: "
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Neues Profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr "Name des neuen Profils (es wird als Kopie des aktuellen erstellt):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Rechnername: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetzugang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Typ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Schnittstelle:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Bitte Warten"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Internet-Zugang konfigurieren"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN Konfiguration"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Treiber"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Schnittstelle"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokoll"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Netzwerk konfigurieren"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Hier starten Sie den Assistenten ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Anwenden"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Einen Moment ... ich richte die Konfiguration ein"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Verbunden"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nicht Verbunden"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Verbinden ..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Trenne Verbindung ..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
+"diese ihr Netzwerk."
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Sie haben noch keine Schnittstelle eingerichtet.\n"
+"Sie kÜnnen dies tun, indem Sie die Schaltfläche \n"
+"„Konfigurieren“ betätigen."
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN Konfiguration"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Boot-Protokoll"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Beim Hochfahren gestartet"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP Klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "Jetzt aktivieren"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "Jetzt deaktivieren"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
+"Starten Sie den Konfigurationsassistenten im Hauptfenster."
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Sie haben noch keine Internetverbindung eingerichtet.\n"
+"Sie kÜnnen dies tun, indem Sie die Schaltfläche \n"
+"„Konfigurieren“ betätigen."
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfiguration der Internetverbindung"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfiguration der Internetverbindung"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Verbindungstyp: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameter"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Netzwerkkarte"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-Klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "Verwendung: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr " Modulname "
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr " Größe "
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "DrakFloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Boot-Disketten Erstellung"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr " Standard "
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy Fehler: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Kernversion"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Allgemein"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Experten Bereich"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "Optionale Parameter für „mkinitrd“"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Modul hinzufĂźgen"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr " mit Gewalt "
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr " falls NĂśtig "
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr " SCSI Module weglassen "
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr " RAID-Module weglassen "
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Modul entfernen"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ausgabe"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr " Diskette erstellen "
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Stellen Sie sicher, dass ein Medium in Laufwerk %s liegt."
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"In Laufwerk %s liegt kein Medum.\n"
+"Bitte legen Sie eins ein."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ich kann nicht forken: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ich kann „mkbootdisk“ nicht richtig beenden: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Suche installierte Schriften"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Auswahl installierter Schriften zurĂźcksetzen"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "Alle Schriften analysieren"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "Keine Schriften gefunden"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "Fertig"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "Ich konnte keine Schriften in Ihren eingehängten Partitionen finden"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Neuwahl korrekter Schriften"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "Konnte keine Schriften finden.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Suche installierter Schriften"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopiere Schriften"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installation von TrueType Schriften"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Bitte warten Sie ttmkfdir arbeitet ..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "TrueType Installation beendet"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konvertieren der Schriften"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "Erzeuge „type1inst“"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscriptreferenz"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf-Schriftkonvertierung"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm-Schriftkonvertierung"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Temporäre Dateien lÜschen"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Neustart des X-FontServers"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Schriftdateien lĂśschen"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs Neustart"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11107,109 +11981,109 @@ msgstr ""
"- Sie kÜnnen die Schriften auf normalem Weg einbinden. In seltenen Fällen \n"
"kĂśnnen defekte Schriften den X-Server lahmlegen."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Schriften einbinden"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Windows-Schriften verwenden"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Schiften deinstallieren"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Erweiterte Einstellungen"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Font-Liste"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Wählen Sie die Programme, die die Schriften verwenden sollen:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Generische Drucker"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
"Wählen Sie eine Schriftdatei bzw. ein Verzeichnis und betätigen Sie "
"„Hinzufügen“"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Liste installieren"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Klicken Sie hier, wenn Sie sicher sind."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "Hier, falls nicht."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Markierung lĂśschen"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Alle auswählen"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Liste entfernen"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Vortests"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Schriften auf Ihren Rechner kopieren"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installiere und konvertiere Fonts"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Nach der Installation"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Entfernen von Schriftarten auf Ihrem Rechner"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Nach dem Entfernen"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Teilen der Internet-Verbindung"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Teilen der Internetverbindung momentan eingeschaltet."
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11221,31 +12095,31 @@ msgstr ""
"\n"
"Was wollen Sie tun?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "deaktivieren"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "Verwerfen"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "neu konfigurieren"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Server deaktivieren ..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Teilen der Internet-Verbindung ist nun abgeschaltet."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Teilen der Internet-Verbindung momentan abgeschaltet."
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11257,19 +12131,19 @@ msgstr ""
"\n"
"Was wollen Sie tun?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "aktivieren"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Server aktivieren ..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Teilen der Internetverbindung ist nun eingeschaltet."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11284,21 +12158,21 @@ msgstr ""
"Anmerkung: Sie benĂśtigen eine Netzwerkkarte, mit deren Hilfe Sie ein \n"
"lokales Netz (LAN) aufsetzen kĂśnnen."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Schnittstelle %s (verwendet Modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Schnittstelle: %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Sie haben keine Netzwerkkarte!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11306,11 +12180,11 @@ msgstr ""
"Ihr Rechner hat keine konfigurierte Netzwerkkarte. Bitte verwenden Sie erst "
"HardDrake, bevor Sie weiter machen."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netzwerkkarte"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11325,7 +12199,7 @@ msgstr ""
"\n"
"Ich setze ihr lokales Netz damit auf."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11333,11 +12207,11 @@ msgstr ""
"Bitte wählen Sie die Netzwerkkarte, die mit Ihrem lokalen Netzwerk \n"
"verbunden ist."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Ihr Netzwerk ist bereits konfiguriert"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11353,15 +12227,15 @@ msgstr ""
"Sie kĂśnnen auch eine manuelle Einrichtung vornehmen - dafĂźr sollten Sie "
"jedoch wissen, wie das funktioniert."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatische Rekonfiguration"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Aktuelle Schnittstellenkonfiguration anzeigen"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11378,7 +12252,7 @@ msgstr ""
"IP-Eigenschaften: %s\n"
"Treiber: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11398,34 +12272,34 @@ msgstr ""
"Server fĂźr Sie aufsetzen.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokales Klasse-C Netzwerk"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "(Diese) DHCP-Server IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Neu konfigurieren des Geräts und des DHCP-Servers"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Das lokale Netzwerk endet nicht auf „.0“ - bereinige."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Es liegt ein mĂśglicher LAN-Adressen Konflikt in der Konfiguration\n"
"von %s vor!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Ich habe eine Firewall-Konfiguration gefunden!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11434,20 +12308,20 @@ msgstr ""
"MĂśglicherweise mĂźssen Sie nach der Installation einige Einstellungen \n"
"von Hand vornehmen."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurieren ..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skripte konfigurieren, Software installieren, Dienste starten ..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme beim Installieren von Paket %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11458,24 +12332,24 @@ msgstr ""
"lokalen Netz mittels automatischer Netzwerk-Konfiguration (DHCP) \n"
"teilen."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Die Einstellungen wurden bereits vorgenommen, sie sind nur nicht aktiviert."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die Einstellungen wurden bereits vorgenommen und sind aktiv."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Teilen der Internetverbindung wurde noch nicht konfiguriert."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Teilen der Internetverbindung - Konfiguration"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11491,216 +12365,6 @@ msgstr ""
"\n"
"Wählen Sie „Konfigurieren“ wenn Sie den Assistenten starten wollen."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netzwerk Konfiguration (%d Karten)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Profil lĂśschen..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Zu lĂśschendes Profil: "
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Neues Profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "Name des neuen Profils (es wird als Kopie des aktuellen erstellt):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Rechnername: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetzugang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Schnittstelle:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Bitte Warten"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Internet-Zugang konfigurieren"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN Konfiguration"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Treiber"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Schnittstelle"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Netzwerk konfigurieren"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Hier starten Sie den Assistenten ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Anwenden"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Einen Moment ... ich richte die Konfiguration ein"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Verbunden"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nicht Verbunden"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Verbinden ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Trenne Verbindung ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
-"diese ihr Netzwerk."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Sie haben noch keine Schnittstelle eingerichtet.\n"
-"Sie kÜnnen dies tun, indem Sie die Schaltfläche \n"
-"„Konfigurieren“ betätigen."
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Konfiguration"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot-Protokoll"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Beim Hochfahren gestartet"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP Klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "Jetzt aktivieren"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "Jetzt deaktivieren"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
-"Starten Sie den Konfigurationsassistenten im Hauptfenster."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Sie haben noch keine Internetverbindung eingerichtet.\n"
-"Sie kÜnnen dies tun, indem Sie die Schaltfläche \n"
-"„Konfigurieren“ betätigen."
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Verbindungstyp: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameter"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Netzwerkkarte"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sicherheitsebene einstellen"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrollzentrum"
@@ -11709,90 +12373,129 @@ msgstr "Kontrollzentrum"
msgid "Choose the tool you want to use"
msgstr "Wählen Sie das Werkzeug, das Sie verwenden wollen"
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
# ../../standalone/drakxtv_.c:37ç
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (Kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "USA (terrestrisch)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (Kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (Kabel-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "China (terrestrisch)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japan (terrestrisch)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (Kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Osteuropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Frankreich"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irland"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Westeuropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australien"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Neuseeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "SĂźdafrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentinien"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Bitte geben Sie Ihre Fernsehnorm und Region ein"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Fernsehnorm:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Region:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Sendersuche ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Sendersuche..."
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11839,7 +12542,7 @@ msgstr ""
"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
"Neuanmeldung wirksam"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "LogDrake"
@@ -11873,7 +12576,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Datei/Speichern_als"
+msgstr "/Datei/Speichern _unter ..."
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11887,13 +12590,9 @@ msgstr "/_Optionen"
msgid "/Options/Test"
msgstr "/Optionen/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hilfe"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/_Hilfe/_Über..."
+msgstr "/Hilfe/_Über ..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11951,7 +12650,7 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Inhalt der LogbĂźcher"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "E-Mail/SMS Benachrichtigung"
@@ -11960,11 +12659,11 @@ msgstr "E-Mail/SMS Benachrichtigung"
msgid "please wait, parsing file: %s"
msgstr "Einen Moment, ich durchsuche: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Mail/SMS Benachrichtigungskonfiguration"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11974,65 +12673,99 @@ msgstr ""
"\n"
"Hier kĂśnnen Sie Ihr Benachrichtigungssystem einrichten.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Name der Domäne"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS Server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr ""
+"Postfix E-Mail-Server und\n"
+"Inn Diskussionsforen-Server"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Dienste"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Drucker-Server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "Dienste einstellen"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Sie weden benachrtichtigt, falls einer der gewählten Dienste nichtmehr "
"verfĂźgbar ist."
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "Einstellungen laden"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Sie erhalten eine Nachricht, wen die Load Ăźber diesen Wert steigt"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "Benachrichtigungskonfiguration"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Stellen Sie ein, wie das System Sie benachrichtigen soll"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Speichern unter..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Bitte wählen Sie Ihren Maustyp."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "Kein „serial_usb“ gefunden\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Die dritte Maustaste emulieren?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Lesen der Treiber-Datenbank ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Geräteerkennung..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -12078,6 +12811,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Firewall-Konfiguration"
@@ -12491,10 +13236,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia / Sound"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Werkzeuge"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentation"
@@ -12602,10 +13343,6 @@ msgstr ""
"zum durchstĂśbern des WWW"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivierung, Emulation, Überwachung"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanzverwaltung"
@@ -12651,3 +13388,212 @@ msgstr "Multimedia / CD-Brenner"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Wissenschaftlicher Arbeitsplatzrechner"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr ""
+#~ "Der Dateisystemcheck (fsck) schlug fehl mit dem RĂźckgabewert %d oder "
+#~ "Signal %d."
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Grafikkartenidentifikation: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Wählen Sie die Einstellungen fßr den Server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Ihr Monitor ist nicht konfiguriert"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ihre Grafikkarte ist noch nicht konfiguriert"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Die AuflÜsungen wurden noch nicht ausgewählt"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "Versuchen Sie bitte, einige Einstellungen zu ändern"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Ein Fehler ist aufgetreten:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Verlassen in %d Sekunden"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ist dies richtig?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr ""
+#~ "Ein Fehler ist aufgetreten. Versuchen Sie bitte, einige Parameter zu "
+#~ "ändern"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 Server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Alle anzeigen"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window Konfiguration vorbereiten"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Was wollen Sie machen?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Monitor ändern"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Grafikkarte ändern"
+
+#~ msgid "Change Server options"
+#~ msgstr "Server Einstellungen ändern"
+
+#~ msgid "Change Resolution"
+#~ msgstr "AuflÜsung ändern"
+
+#~ msgid "Show information"
+#~ msgstr "Informationen anzeigen"
+
+#~ msgid "Test again"
+#~ msgstr "Nochmals testen"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Ihr HP-Multifunktionsgerät wurde automatisch auch zum Scannen "
+#~ "eingerichtet. Sie können nun in der Kommandozeile mittels „ptal-hp %s "
+#~ "scan ...“ scannen. Zur Zeit existieren leider keine grafischen Werkzeuge, "
+#~ "mit deren Hilfe Sie Scannen kÜnnen - Ihr Multifunktionsgerät wird noch "
+#~ "nicht unterstützt. Weitetre Informationen finden Sie in der Datei „/usr/"
+#~ "share/doc/hpoj-0.8/ptal-hp-scan.html“ auf Ihrem Rechner. Falls Sie einen "
+#~ "HP LaserJet 1100 oder 1200 haben, kĂśnnen Sie nur scannen, wenn Sie die "
+#~ "Scanner-Option installiert haben.\n"
+#~ "\n"
+#~ "Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Festplatte mit Dämin verwenden"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "FTP mit Dämon verwenden"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Zu installierende Pakete"
+
+#~ msgid "proftpd"
+#~ msgstr "Pro-ftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Sicherheitsebene einstellen"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafikkarte"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Wählen Sie Ihre Grafikkarte"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Wählen Sie einen X Treiber"
+
+#~ msgid "X driver"
+#~ msgstr "X Treiber"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640×480 bei 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800×600 bei 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 kompatibel, 1024×768 bei 87 Hz, interlaced (kein 800×600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024×768 bei 87 Hz, interlaced und 800×600 bei 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800×600 bei 60 Hz und 640×480 bei 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024×768 bei 60 Hz und 800×600 bei 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hochfrequenz SVGA, 1024×768 bei 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ihr Monitor kann 1600×1200 bei 70 Hz darstellen"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ihr Monitor kann 1600×1200 bei 76 Hz darstellen"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Die Gesamtgröße der zu installierenden Pakete beträgt etwa %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Falls Sie weniger als diese Menge installieren wollen, \n"
+#~ "geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
+#~ "\n"
+#~ "Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
+#~ "100%% installiert alle ausgewählten Pakete."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Sie haben nur Platz fßr %d%% der ausgewählten Pakete. \n"
+#~ "\n"
+#~ "Falls Sie weniger als diese Menge installieren wollen, \n"
+#~ "geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
+#~ "Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
+#~ "%d%% installiert so viele Pakete wie mĂśglich."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Im nächsten Schritt kÜnnen Sie genauer auswählen"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Prozent der zu installierenden Pakete"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Wählen Sie eine Sicherheitsebene"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 1de4183da..e09876265 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -1,13 +1,12 @@
-# Greek Translation of DrakX.
-# Copyright (c) 1999 MandrakeSoft
-# FIRST AUTHOR Theodore J. Soldatos <theodore@eexi.gr>, 1999-2000.
-# Thanos Kyritsis <djart@hellug.gr>, 2001
+# Greek translation for drakfloppy.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Thanos Kyritsis <djart@hellug.gr>, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-23 23:59+0300\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-22 22:44+0300\n"
"Last-Translator: Thanos Kyritsis <djart@hellug.gr>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
"MIME-Version: 1.0\n"
@@ -15,24 +14,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Ńýčěéóç üëůí ôůí ęĺöáëţí áíĺîÜńôçôá"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kb"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "×ńŢóç ĺđÝęôáóçň Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kb"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ńýčěéóç ěüíď ôçň ęÜńôáň \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB Ţ đĺńéóóüôĺńá"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "ĹđéëÝîôĺ X server (ďäçăüň ęÜńôáň ăńáöéęţí)"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "ĺîőđçńĺôçôŢň X Window"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Ńýčěéóç đďëëţí ęĺöáëţí"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,43 +70,44 @@ msgstr ""
"Ôď óýóôçěÜ óáň őđďóôçńßćĺé ńýčěéóç đďëëáđëţí ęĺöáëţí.\n"
"Ôß čÝëĺôĺ íá ęÜíĺôĺ;"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "ĘÜńôá ăńáöéęţí"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "ĚÝăĺčďň ěíŢěçň ęÜńôáň ăńáöéęţí"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "ĹđéëÝîôĺ ęÜńôá ăńáöéęţí"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Ńőčěßóĺéň XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "ĹđéëÝîôĺ X server (ďäçăüň ęÜńôáň ăńáöéęţí)"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Ôß ôýđďő XFree čÝëĺôĺ íá Ý÷ĺôĺ;"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "ĺîőđçńĺôçôŢň X Window"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Ńýčěéóç üëůí ôůí ęĺöáëţí áíĺîÜńôçôá"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "ĹđéëÝîôĺ X server (ďäçăüň ęÜńôáň ăńáöéęţí)"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "×ńŢóç ĺđÝęôáóçň Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "ĺîőđçńĺôçôŢň X Window"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Ńýčěéóç ěüíď ôçň ęÜńôáň \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Ôß ôýđďő XFree čÝëĺôĺ íá Ý÷ĺôĺ;"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ěĺ ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -87,35 +118,19 @@ msgstr ""
"äßíďőí \n"
"ęáëýôĺńç őđďóôŢńéîç ăéá äéóäéÜóôáôá ăńáöéęÜ."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí óôá XFree "
"%s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ěĺ ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí óôá XFree "
-"%s,\n"
-"ĐŃĎÓĎ×Ç: ĐĹÉŃÁĚÁÔÉĘÇ ŐĐĎÓÔÇŃÉÎÇ - ĚĐĎŃĹÉ ÍÁ ĐÁĂŮÓĹÉ ÔĎÍ ŐĐĎËĎĂÉÓÔÇ ÓÁÓ!"
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ěĺ ĐĹÉŃÁĚÁÔÉĘÇ ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -129,31 +144,59 @@ msgstr ""
"őđďóôŢńéîç\n"
"ăéá äéóäéÜóôáôá ăńáöéęÜ."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí óôá XFree "
+"%s,\n"
+"ĐŃĎÓĎ×Ç: ĐĹÉŃÁĚÁÔÉĘÇ ŐĐĎÓÔÇŃÉÎÇ - ĚĐĎŃĹÉ ÍÁ ĐÁĂŮÓĹÉ ÔĎÍ ŐĐĎËĎĂÉÓÔÇ ÓÁÓ!"
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ďäçăüň đńďâďëŢň ĺăęáôÜóôáóçň)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Ńőčěßóĺéň XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "ĚÝăĺčďň ěíŢěçň ęÜńôáň ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Ńőčěßóĺéň X server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"ÄéáôŢńçóç őđáń÷üíôůí ńőčěßóĺůí;\n"
+"Ďé ôńÝ÷ďőóĺň ńőčěßóĺéň ĺßíáé:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "ĹđéëÝîôĺ ďčüíç"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Ďčüíç"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "ĐńďóáńěďóěÝíď"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Ăĺíéęü"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Áęýńůóç ôĺëĺőôáßáň đńÜîçň"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -177,513 +220,328 @@ msgstr ""
"ęáôáóôńďöŢň\n"
"ôçň ďčüíçň óáň. Áí äĺí ĺßóôĺ óßăďőńďé, ęÜíôĺ ěéá óőíôçńçôéęŢ ĺđéëďăŢ."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Óő÷íüôçôá ďńéćüíôéáň áíáíÝůóçň"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Óő÷íüôçôá ęáôáęüńőöçň áíáíÝůóçň"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ç ęÜńôá ăńáöéęţí äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Äĺí Ý÷ďőí ĺđéëĺăĺß áíáëýóĺéň áęüěç"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Đńďóď÷Ţ: Ç äďęéěŢ ĺßíáé ĺđéęßíäőíç óĺ áőôŢ ôçí ęÜńôá ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "ÄďęéěŢ ńőčěßóĺůí"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 ÷ńţěáôá (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"äďęéěÜóôĺ íá áëëÜîĺôĺ ęÜđďéĺň đáńáěÝôńďőň"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ÷éëéÜäĺň ÷ńţěáôá (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "ĐńďęëŢčçęĺ óöÜëěá:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ÷éëéÜäĺň ÷ńţěáôá (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "¸îďäďň óĺ %d äĺőôĺńüëĺđôá"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 ĺęáôďěěýńéá ÷ńţěáôá (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ĺßíáé áőôŢ ç óůóôŢ ńýčěéóç;"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 äéóĺęáôďěěýńéá ÷ńţěáôá (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "ĐńďęëŢčçęĺ óöÜëěá, äďęéěÜóôĺ íá áëëÜîĺôĺ ęÜđďéĺň đáńáěÝôńďőň"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Áíáëýóĺéň"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "ÁíÜëőóç"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "ĹđéëÝîôĺ áíÜëőóç ęáé âÜčďň ÷ńţěáôďň"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "ĘÜńôá ăńáöéęţí: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "śëëá"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "śęőńď"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ďę"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "ĘáôÜóôáóç đńď÷ůńçěÝíůí"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "ĹěöÜíéóç üëůí"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Áíáëýóĺéň"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "ÄďęéěŢ ńőčěßóĺůí"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Äéáńýčěéóç đëçęôńďëďăßďő: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ôýđďň đďíôéęéďý: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "ÓőóęĺőŢ đďíôéęéďý: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Ďčüíç: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Óő÷íüôçôá ďńéćüíôéáň áíáíÝůóçň: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Óő÷íüôçôá ęáôáęüńőöçň áíáíÝůóçň: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "ĘÜńôá ăńáöéęţí: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "ĘÜńôá ăńáöéęţí: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "ĚíŢěç ęÜńôáň ăńáöéęţí: %s kb\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "ÂÜčďň ÷ńţěáôďň: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "ÁíÜëőóç: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Ďäçăüň XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Đńďĺôďéěáóßá ńőčěßóĺůí ăńáöéęďý đĺńéâÜëëďíôďň (X-Window)"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Ôé čÝëĺôĺ íá ęÜíĺôĺ;"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "ÁëëáăŢ ďčüíçň"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "ÁëëáăŢ ęÜńôáň ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "ÁëëáăŢ ńőčěßóĺůí X server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "ÁëëáăŢ áíÜëőóçň"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "ĐńďâďëŢ đëçńďöďńéţí"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "ĹđáíÜëçřç äďęéěŢň"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "¸îďäďň"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ÄéáôŢńçóç őđáń÷üíôůí ńőčěßóĺůí;\n"
-"Ďé ôńÝ÷ďőóĺň ńőčěßóĺéň ĺßíáé:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Ăńáöéęü đĺńéâÜëëďí (X) óôçí ĺęęßíçóç"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ěđďńţ íá ńőčěßóů ôď óýóôçěÜ óáň Ýôóé ţóôĺ íá îĺęéíÜĺé áőôüěáôá óĺ\n"
"ăńáöéęü đĺńéâÜëëďí (X-Windows).\n"
"Ĺđéčőěĺßôĺ áőôüěáôç ĺęęßíçóç ăńáöéęďý đĺńéâÜëëďíôďň;"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Đáńáęáëţ ĺđáíáóőíäĺčĺßôĺ ůň %s ăéá ĺíĺńăďđďßçóç ôůí áëëáăţí"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Đáńáęáëţ áđďóőíäĺčĺßôĺ ęáé ěĺôÜ đáôŢóôĺ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 ÷ńţěáôá (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ÷éëéÜäĺň ÷ńţěáôá (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ÷éëéÜäĺň ÷ńţěáôá (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ĺęáôďěěýńéá ÷ńţěáôá (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 äéóĺęáôďěěýńéá ÷ńţěáôá (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB Ţ đĺńéóóüôĺńá"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 óôá 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 óôá 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatible, 1024x768 óôá 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 óôá 87 Hz interlaced, 800x600 óôá 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 óôá 60 Hz, 640x480 óôá 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 óôá 60 Hz, 800x600 óôá 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 óôá 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ďčüíç đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1600x1200 óôá 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ďčüíç đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1600x1200 óôá 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Đńţôďň ôďěÝáň ôçň ęáôÜôěçóçň ĺęęßíçóçň"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Đńţôďň ôďěÝáň ôďő äßóęďő (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "ĹăęáôÜóôáóç SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Đďý čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ôď đńüăńáěěá ĺęęßíçóçň;"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "ĹăęáôÜóôáóç LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO ěĺ ěĺíďý ęĺéěÝíďő"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO ěĺ ăńáöéęü ěĺíďý"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Ĺęęßíçóç áđü ôď DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "ÂáóéęÝň ĺđéëďăÝň đńďăńÜěěáôďň ĺęęßíçóçň"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader ăéá ÷ńŢóç"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "ĹăęáôÜóôáóç đńďăńÜěěáôďň ĺęęßíçóçň"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "ÓőóęĺőŢ ĺęęßíçóçň"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (äĺí ëĺéôďőńăĺß ěĺ đáëáéüôĺńá BIOS)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "ÓőěđáăŢň"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "óőěđáăŢň"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "ÁíÜëőóç ďčüíçň"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "ĘáčőóôÝńçóç đńéí ôçí ĺęęéíçóç"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Óőíčçěáôéęü"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Óőíčçěáôéęü (îáíÜ)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Áđáăüńĺőóç ĺđéëďăţí ăńáěěŢň ĺíôďëŢň"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "áđáăüńĺőóç"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Ęáčáńéóěüň /tmp óĺ ęÜčĺ ĺęęßíçóç"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "ÁęńéâŢň đďóüôçôáň ěíŢěçň áí ÷ńĺéÜćĺôáé (Ý÷ů ĺíôďđßóĺé %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Ĺíĺńăďđďßçóç đďëëáđëţí profiles"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "ĹéóÜăĺôĺ ěÝăĺčďň ěíŢěçň óĺ Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Ç ĺđéëďăŢ ``Áđáăüńĺőóç ĺđéëďăţí ăńáěěŢň ĺíôďëŢň'' ĺßíáé Ü÷ńçóôç ÷ůńßň "
"óőíčçěáôéęü"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Đáńáęáëţ đńďóđáčŢóôĺ îáíÜ"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Ôá óőíčçěáôéęÜ ĺßíáé áíüěďéá"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "ĚŢíőěá Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "śíďéăěá ĘáčőóôÝńçóçň Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "ÔÝëďň ×ńüíďő Ĺęęßíçóçň ĐőńŢíá"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Ĺíĺńăďđďßçóç ĺęęßíçóçň áđü CD;"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Ĺíĺńăďđďßçóç OF ĺęęßíçóçň;"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Ĺî' ďńéóěďý ëĺéôďőńăéęü óýóôçěá;"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -692,83 +550,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"ŐđÜń÷ďőí ďé áęüëďőčĺň ĺđéëďăÝň.\n"
"Ěđďńĺßôĺ íá đńďóčÝóĺôĺ ęé Üëëĺň Ţ íá áëëÜîĺôĺ ôéň őđÜń÷ďőóĺň."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "ĐńďóčŢęç"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Ďëďęëçńţčçęĺ"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ôńďđďđďßçóç"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Ôß ôýđďő ĺđéëďăŢ čÝëĺôĺ íá đńďóčÝóĺôĺ"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "śëëď ëĺéôďőńăéęü (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "śëëď ëĺéôďőńăéęü (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "śëëď ëĺéôďőńăéęü (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Đßíáęáň"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "ÁíáóöáëÝň"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "ĹôéęÝôôá"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "ĹđéëďăŢ ĺî' ďńéóěďý"
@@ -801,53 +659,75 @@ msgstr "ĐńÝđĺé íá Ý÷ĺôĺ ěéá ęáôÜôěçóç swap"
msgid "This label is already used"
msgstr "ÁőôŢ ç ĺôéęĺôôá ÷ńçóéěďđďéĺßôáé Ţäç"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "ÂńŢęá %s %s đńďóáńěďăĺßň"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "¸÷ĺôĺ áëëďí;"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "¸÷ĺôĺ ęÜđďéďí đńďóáńěďăÝá %s;"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "ź÷é"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Íáé"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
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:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "ĹăęáôÜóôáóç ďäçăďý ăéá %s ęÜńôá %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Ěđďńĺßôĺ ôţńá íá äţóĺôĺ ôéň đáńáěÝôńďőň ăéá ôďí ďäçăü %s.\n"
+"Ďé đáńÜěĺôńďé Ý÷ďőí ôçí ěďńöŢ ``üíďěá=ôéěŢ üíďěá2=ôéěŢ2 ...''.\n"
+"Ăéá đáńÜäĺéăěá, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "ĐáńÜěĺôńďé ďäçăďý"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Đďéüí %s ďäçăü íá äďęéěÜóů;"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -864,37 +744,15 @@ msgstr ""
"ôď őëéęü óáň ăéá ôéň đáńáěÝôńďőň đďő ÷ńĺéÜćĺôáé; Ç ĺîÝôáóç áőôŢ ßóůň\n"
"đńďęáëÝóĺé ęüëëçěá ôďő óőóôŢěáôďň, áëëÜ äĺí čá đńďęáëÝóĺé âëÜâç."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Áőôüěáôç ĺîÝôáóç"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Đńďóäéďńéóěüň đáńáěÝôńůí"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ěđďńĺßôĺ ôţńá íá äţóĺôĺ ôéň đáńáěÝôńďőň ăéá ôďí ďäçăü %s.\n"
-"Ďé đáńÜěĺôńďé Ý÷ďőí ôçí ěďńöŢ ``üíďěá=ôéěŢ üíďěá2=ôéěŢ2 ...''.\n"
-"Ăéá đáńÜäĺéăěá, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "ĐáńÜěĺôńďé ďäçăďý"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -903,50 +761,55 @@ msgstr ""
"Ç öďńôůóç ôďő ďäçăďý %s áđĺôő÷ĺ.\n"
"ČÝëĺôĺ íá äďęéěÜóĺôĺ îáíÜ ěĺ äéáöďńĺôéęÝň đáńáěÝôńďőň;"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ôď %s Ý÷ĺé Ţäç đńďóôĺčĺß)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ôď óőíčçěáôéęü ĺßíáé đďëý áđëü"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ęůäéęü üíďěá"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ôď ęůäéęü üíďěá ěđďńĺß íá đĺńéÝ÷ĺé ěüíď đĺćÜ ăńÜěěáôá, áńéčěďýň, `-' ęáé `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Áőôü ôď ęůäéęü üíďěá őđÜń÷ĺé Ţäç"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Áőôü ôď ęůäéęü üíďěá őđÜń÷ĺé Ţäç"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "ĐńďóčŢęç ÷ńŢóôç"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -955,32 +818,32 @@ msgstr ""
"ĹéóÜăĺôĺ ÷ńŢóôç\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Áđďäď÷Ţ ÷ńŢóôç"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Đńáăěáôéęü üíďěá"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Ęůäéęü üíďěá"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Öëďéüň (shell)"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ĺéęďíßäéď"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Áőôüěáôç óýíäĺóç (Autologin)"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -990,125 +853,105 @@ msgstr ""
"ôçí ĺęęßíçóç óĺ Ýíáí óőăęĺęńéěÝíď ÷ńŢóôç.\n"
"ĹÜí äĺí čÝëĺôĺ íá óőěâáßíĺé áőôü, đáôŢóôĺ óôď ęďőěđß áęýńůóçň."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "ĹđéëÝîôĺ ôďí ĺî' ďńéóěďý ÷ńŢóôç:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "ĹđéëÝîôĺ ôďí äéá÷ĺéńéóôŢ đáńáčýńůí đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "źëá"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "ĐńďóčŢęç ÷ńŢóôç"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "ĐńďóáńěďóěÝíď"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "Ĺęęßíçóç CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Áőôü ôď đáęÝôď đńÝđĺé íá áíáâáčěéóôĺß\n"
"Ĺßóôĺ óßăďőńďň üôé čÝëĺôĺ íá ôď áđďĺđéëÝîĺôĺ;"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Áęýńůóç"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Ęáëţň Ţńčáôĺ óôďőň Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Öôů÷ü"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Ôőđéęü"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Őřçëü"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Őřçëü"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Đáńáíďúęü"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1119,7 +962,7 @@ msgstr ""
"óýóôçěá\n"
"óőíäĺäĺěÝíď óôď Internet Ţ LAN. Äĺí őđÜń÷ďőí ëÝîĺéň ęëĺéäéÜ."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1127,7 +970,7 @@ msgstr ""
"Ôţńá őđÜń÷ďőí ëÝîĺéň ęëĺéäéÜ, áëëÜ ç ÷ńŢóç ôďő óőóôŢěáôďň óĺ äßęôőď \n"
"äĺí óőíßóôáôáé."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1136,60 +979,61 @@ msgstr ""
"Áőôü ĺßíáé ôď óőíçčéóěÝíď ĺđßđĺäď áóöáëĺßáň ăéá Ýíá óýóôçěá đďő čá óőíäĺčĺß\n"
"ůň đĺëÜôçň óôď Internet. ŐđÜń÷ďőí ôţńá Ýëĺă÷ďé áóöáëĺßáň."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Ěĺ áőôü ôď ĺđßđĺäď áóöáëĺßáň ĺßíáé äőíáôŢ ç ÷ńŢóç ôďő óőóôŢěáôďň óôď \n"
"Internet ůň ĺîőđçńĺôçôŢ. Ç áóöÜëĺéá ĺßíáé áńęĺôÜ őřçëŢ ţóôĺ íá äÝ÷ĺôáé\n"
"ôáőôü÷ńďíĺň óőíäÝóĺéň áđü đďëëďýň đĺëÜôĺň."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"ÁóöÜëĺéá ĺđéđÝäďő 4, ěĺ ôď óýóôçěá ôĺëĺßůň ęëĺéóôü. ÁóöÜëĺéá \n"
"óôď ěÝăéóôď äőíáôü."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "ĹđéëÝîôĺ ĺđßđĺäď áóöáëĺßáň"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Ńýčěéóç ĺđéđÝäďő áóöáëĺßáň"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Ńőčěßóĺéň X server"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1213,52 +1057,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
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:931
+#: ../../bootloader.pm_.c:915
#, 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:934
+#: ../../bootloader.pm_.c:918
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:937
+#: ../../bootloader.pm_.c:921
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:940
+#: ../../bootloader.pm_.c:924
#, 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:944
+#: ../../bootloader.pm_.c:928
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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Đďý čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ôď đńüăńáěěá ĺęęßíçóçň;"
@@ -1271,15 +1115,19 @@ msgstr "äĺí őđÜń÷ĺé âďŢčĺéá äéáčÝóéěç áęüěá.\n"
msgid "Boot Style Configuration"
msgstr "Boot Ôýđďő Ńýčěéóç"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Áń÷ĺßď"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Áń÷ĺßď/¸_îďäďň"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1314,14 +1162,14 @@ msgstr "Ëĺéôďőńăßá Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"×ńçóéěďđďéĺßôĺ ôďí %s ůň Boot Manager.\n"
"ĘÜíôĺ ęëßę óôď Ńýčěéóç ăéá íá îĺęéíŢóĺôĺ ôďí ďäçăü ĺăęáôÜóôáóçň."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Ńýčěéóç"
@@ -1331,7 +1179,7 @@ msgid "System mode"
msgstr "ĘáôÜóôáóç óőóôŢěáôďň"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "śíďéăěá ôďő X-Window ęáôÜ ôçí ĺęęßíçóç ôďő óőóôŢěáôďň"
#: ../../bootlook.pm_.c:148
@@ -1342,16 +1190,18 @@ msgstr "ź÷é, äĺí ĺđéčőěţ áőôüěáôď login"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Íáé, ĺđéčőěţ áőôüěáôď login ěĺ áőôü (user, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "ĹíôÜîĺé"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1400,7 +1250,7 @@ msgstr ""
"Ěđďńĺßôĺ íá ĺđéëÝîĺôĺ ęáé Üëëĺň ăëţóóĺň đďő čá ĺßíáé äéáčÝóéěĺň ěĺôÜ ôď "
"đÝńáň ôçň ĺăęáôÜóôáóçň"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Ăáëëéęü"
@@ -1409,7 +1259,7 @@ msgstr "Ăáëëéęü"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Âĺëăéęü"
@@ -1438,11 +1288,12 @@ msgstr "Íďńâçăéęü"
msgid "Sweden"
msgstr "Óďőçäéęü"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Éôáëéęü"
@@ -1452,7 +1303,7 @@ msgstr "Éôáëéęü"
msgid "Austria"
msgstr "óĺéńéáęü"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1460,8 +1311,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Đáńáęáëţ ęÜíôĺ đńţôá Ýíá áíôßăńáöď áóöáëĺßáň ôůí äĺäďěÝíůí óáň"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "ÄéáâÜóôĺ đńďóĺęôéęÜ!"
@@ -1475,11 +1326,12 @@ msgstr ""
"2048 ôďěĺßň ĺßíáé áńęĺôďß)\n"
"óôçí áń÷Ţ ôďő äßóęďő"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "ÓöÜëěá"
@@ -1487,11 +1339,11 @@ msgstr "ÓöÜëěá"
msgid "Wizard"
msgstr "ĚÜăďň"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "ĹđéëÝîôĺ đńÜîç"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1503,78 +1355,78 @@ msgstr ""
"Óőíéóôţ íá áëëÜîĺôĺ ôď ěÝăĺčüň ôçň đńţôá\n"
"(ĺđéëÝîôĺ ôçí, ěĺôÜ ĺđéëÝîôĺ \"ÁëëáăŢ ěĺăÝčďőň\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "ËĺđôďěÝńĺéĺň"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "óýíäĺóç áđÝôő÷ĺ"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "śäĺéď"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "śëëď"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Ôýđďé óőóôŢěáôďň áń÷ĺßůí:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Äçěéďőńăßá"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Ôýđďň"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "×ńçóéěďđďéŢóôĺ ``%s'' óôç čÝóç ôďő"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "ÄéáăńáöŢ"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "ĘÜíôĺ đńţôá ``Áđďóýíäĺóç''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1582,72 +1434,77 @@ msgstr ""
"ĚĺôÜ ôçí áëëáăŢ ôýđďő óôçí ęáôÜôěçóç %s, üëá ôá äĺäďěÝíá óĺ áőôŢí ôçí "
"ęáôÜôěçóç čá ÷áčďýí"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "ĹđéëÝîôĺ đńÜîç"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Äçěéďőńăßá íÝáň ęáôÜôěçóçň"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "ĚĺôáđŢäçóç óĺ đńď÷ůńçěÝíď ôńüđď ëĺéôďőńăßáň"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "ĚĺôáđŢäçóç óĺ ęáíďíéęü ôńüđď ëĺéôďőńăßáň"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Áęýńůóç ôĺëĺőôáßáň đńÜîçň"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Íá óőíĺ÷éóů;"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "¸îďäďň ÷ůńßň áđďčŢęĺőóç"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "¸îďäďň ÷ůńßň áđďčŢęĺőóç ôďő đßíáęá ęáôáôěŢóĺůí;"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Áőôďěáôç ęáôáíďěŢ"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Ęáčáńéóěüň üëůí"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "śëëá"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Ĺíôďđéóěüň óęëçńďý äßóęďő"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "źëĺň ďé đńůôĺýďőóĺň ęáôáôěŢóĺéň ĺßíáé óĺ ÷ńŢóç"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Äĺí ěđďńţ íá đńďóčÝóů ęáôáôěçóĺéň"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1655,35 +1512,35 @@ msgstr ""
"Ăéá íá đńďóčÝóĺôĺ ęáôáôěŢóĺéň, đáńáęáëţ äéáăńÜřôĺ ěßá ĺôóé ţóôĺíá ĺßíáé "
"äőíáôŢ ç đńďóčŢęç ĺęôĺôáěÝíçň ęáôÜôěçóçň"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "ÁđďčŢęĺőóç đßíáęá ęáôáôěŢóĺůí"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Đßíáęáň ęáôáôěŢóĺůí äéÜóůóçň"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Đßíáęáň ęáôáôěŢóĺůí äéÜóůóçň"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Đßíáęáň ęáôáôěŢóĺůí äéÜóůóçň"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Áőôüěáôç óýíäĺóç áđďóđţěĺíůí ěďíÜäůí áđďčŢęĺőóçň"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "ĹđéëÝîôĺ áń÷ĺßď"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1691,11 +1548,11 @@ msgstr ""
"Ď ĺöĺäńéęüň đßíáęáň ęáôáôěŢóĺůí Ý÷ĺé äéáöďńĺôéęü ěÝăĺčďň\n"
"Íá óőíĺ÷ßóů;"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Đńďĺéäďđďßçóç"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1703,124 +1560,131 @@ msgstr ""
"ĹéóÜăĺôĺ ěéá äéóęÝôôá óôďí ďäçăü äéóęÝôôáň\n"
"źëá ôá äĺäďěÝíá óĺ áőôŢ ôç äéóęÝôôá čá ÷áčďýí"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "ĐńďóđÜčĺéá äéÜóůóçň đßíáęá ęáôáôěŢóĺůí"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "ĐńďâďëŢ đëçńďöďńéţí"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Óçěĺßď óýíäĺóçň"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "ĹđéëďăÝň"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "ÁëëáăŢ ěĺăÝčďőň"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Ěĺôáęßíçóç"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Ěďńöďđďßçóç"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Óýíäĺóç"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "ĐńďóčŢęç óôď RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "ĐńďóčŢęç óôď LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Áđďóýíäĺóç"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Áöáßńĺóç áđü ôď RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Áöáßńĺóç áđü ôď LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Ôńďđďđďßçóç RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "×ńŢóç ăéá loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Äçěéďőńăßá íÝáň ęáôÜôěçóçň"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Áń÷Ţ óôďí ôďěÝá: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "ĚÝăĺčďň óĺ MB"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Ôýđďň óőóôŢěáôďň áń÷ĺßůí: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Óçěĺßď óýíäĺóçň: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Đńďôßěçóç: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ěďńöďđďßçóç áń÷ĺßďő loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "ÁëëáăŢ ôýđďő ęáôÜôěçóçň"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Đďéü óýôçěá áń÷ĺßůí đńďôéěÜôĺ;"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "ÁëëáăŢ áđü ext2 óĺ ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Đďý čÝëĺôĺ íá óőíäÝóĺôĺ ôď áń÷ĺßď loopback %s;"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Đďý čÝëĺôĺ íá óőíäÝóĺôĺ ôçí óőóęĺőŢ %s;"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1829,131 +1693,138 @@ msgstr ""
"÷ńçóéěďđďéĺßôáé\n"
"ăéá loopback. ÁöáéńÝóôĺ đńţôá ôď loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Őđďëďăéóěüň fat filesystem bounds"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "ĚĺôáâďëŢ ěĺăÝčďőň"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Áőôüň ď ôýđďň ęáôÜôěçóçň äĺí ěđďńĺß í' áëëÜîĺé ěÝăĺčďň."
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
"ĐńÝđĺé íá ăßíĺé áíôßăńáöď áóöáëĺßáň üëůí ôůí äĺäďěÝíůí óĺ áőôŢ ôçí ęáôÜôěçóç"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"ĚĺôÜ ôçí áëëáăŢ ěĺăÝčďőň óôçí ęáôÜôěçóç %s, üëá ôá äĺäďěÝíá óĺ áőôŢí ôçí "
"ęáôÜôěçóç čá ÷áčďýí"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "ĹđéëÝîôĺ ôď íÝď ěÝăĺčďň"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "ĚÝăĺčďň óĺ MB"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Óĺ đďéüí äßóęď čÝëĺôĺ íá ěĺôáęéíçčĺßôĺ;"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "ÔďěÝáň"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Óĺ đďéüí ôďěÝá čÝëĺôĺ íá ěĺôáęéíçčĺßôĺ;"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Ěĺôáęßíçóç óĺ ĺîÝëéîç"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Ěĺôáęßíçóç ęáôÜôěçóçň óĺ ĺîÝëéîç..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "ĹđéëÝîôĺ Ýíá őđÜń÷ďí RAID óôď ďđďßď čá ăßíĺé ç đńďóčŢęç"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "íÝď"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "ĹđéëÝîôĺ Ýíá őđÜń÷ďí LVM óôď ďđďßď čá ăßíĺé ç đńďóčŢęç"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "üíďěá LVM;"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "ÁőôŢ ç ęáôÜôěçóç äĺí ěđďńĺß íá ÷ńçóéěďđďéçčĺß ăéá loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "źíďěá áń÷ĺßďő loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Đńáăěáôéęü üíďěá"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Ôď áń÷ĺßď ÷ńçóéěđďđďéĺßôáé Ţäç, ĺđéëÝîôĺ Ýíá Üëëď"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ôď áń÷ĺßď őđÜń÷ĺé Ţäç. Íá ôď ÷ńçóéěďđďéŢóů;"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "ĐáńÜěĺôńďé ďäçăďý"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "óőóęĺőŢ"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "ĺđßđĺäď"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ěÝăĺčďň chunk"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Đńďóď÷Ţ: ÁőôŢ ç äéáäéęáóßá ĺßíáé ĺđéęßíäőíç."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Ôß ôýđďő partitioning;"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Áőôü ôď đáęÝôď đńÝđĺé íá áíáâáčěéóôĺß\n"
+"Ĺßóôĺ óßăďőńďň üôé čÝëĺôĺ íá ôď áđďĺđéëÝîĺôĺ;"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1965,7 +1836,7 @@ msgstr ""
"Ĺßôĺ ÷ńçóéěďđďéĺßôĺ LILO ęáé äĺí čá äďőëÝřĺé, ĺßôĺ äĺí ÷ńçóéěďđďéĺßôĺLILO "
"ęáé äĺí ÷ńĺéÜćĺóôĺ ôď /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1976,7 +1847,7 @@ msgstr ""
"äĺí Ý÷ĺôĺ ęáôÜôěçóç /boot.\n"
"Áí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ LILO, đńďóčÝóôĺ ěßá ęáôÜôěçóç /boot."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1987,139 +1858,139 @@ msgstr ""
"ęáôÜôěçóç /boot.\n"
"Öńďíôßóôĺ ëďéđüí íá đńďóčÝóĺôĺ ěéá ęáôÜôěçóç /boot."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ď đßíáęáň ęáôáôěŢóĺůí ôďő äßóęďő %s čá áđďčçęĺőôĺß óôďí äßóęď!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Áđáéôĺßôáé ĺđáíĺęęßíçóç ăéá íá ĺöáńěďóôďýí ďé áëëáăÝň"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"ĚĺôÜ ôçí ěďńöďđďßçóç ôçň ęáôÜôěçóçň %s, üëá ôá äĺäďěÝíá óĺ áőôŢí ôçí "
"ęáôÜôěçóç čá ÷áčďýí"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Ěďńöďđďßçóç"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ěďńöďđďßçóç áń÷ĺßďő loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Ěďńöďđďßçóç ęáôÜôěçóçň %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "áđďôő÷ßá mkraid"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "ÁíÜëőóç: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "ÓőóęĺőŢ: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Đéčáíü DOS ăńÜěěá äßóęďő: %s \n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Ôýđďň: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "źíďěá: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Áń÷Ţ: ôďěÝáň %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "ĚÝăĺčďň: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s ôďěĺßň"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Ęýëéíäńďň %d ĺţň ęýëéíäńďň %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "ĚďńöďđďéçěÝíďň\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Áěďńöďđďßçôďň\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "ÓőíäĺäĺěÝíďň\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Áń÷ĺßá loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2127,27 +1998,27 @@ msgstr ""
"ĘáôÜôěçóç ĺęęßíçóçň ĺî ďńéóěďý\n"
" (áđü MS-DOS, ü÷é áđü lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Ĺđßđĺäď %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "ĚÝăĺčďň chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Äßóęďé RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "źíďěá áń÷ĺßďő loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2159,7 +2030,7 @@ msgstr ""
"ěéá ęáôÜôěçóç Ďäçăţí, čá đńÝđĺé đéčáíüôáôá\n"
"íá ôçí áöŢóĺôĺ Ţóő÷ç.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2171,66 +2042,66 @@ msgstr ""
"ęáôÜôěçóç ăéá\n"
"dual-booting ôď óýóôçěÜ óáň.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "ĚÝăĺčďň: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăĺůěĺôńßá: %s ęýëéíäńďé, %s ęĺöáëÝň, %s ôďěĺßň\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Đëçńďöďńßĺň: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Äßóęďé LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ôýđďň đßíáęá ęáôáôěŢóĺůí: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "óôď bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "ĹđéëďăÝň: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Ôýđďň óőóôŢěáôďň áń÷ĺßůí: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Áőôü ôď óőíčçěáôéęü ĺßíáé đďëý áđëü (đńÝđĺé íá ĺßíáé ôďőëÜ÷éóôďí %d "
"÷áńáęôŢńĺň ěáęńý)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ôá óőíčçěáôéęÜ ĺßíáé áíüěďéá"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2241,36 +2112,66 @@ msgstr "ÁëëáăŢ ôýđďő ęáôÜôěçóçň"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Đéóôďđďßçóç ôáőôüôçôáň"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Éíôĺńíĺô"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Ęůäéęü üíďěá"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Ęůäéęü üíďěá"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Đĺńéď÷Ţ (domain) NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "ĹîőđçńĺôçôŢň DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ěďńöďđďßçóç ôďő %s áđÝôő÷ĺ"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "äĺí îÝńů đţň íá ěďńöďđďéŢóů ôď %s óĺ ôýđď %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "ôď fsck áđÝôő÷ĺ ěĺ ęůäéęü ĺîüäďő %d Ţ óŢěá %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "óöÜëěá ęáôÜ ôçí áđďóýíäĺóç ôďő %s: %s"
@@ -2287,75 +2188,329 @@ msgstr ""
msgid "server"
msgstr "ĺîőđçńĺôçôŢň"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
"Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď JFS ăéá ęáôáôěŢóĺéň ěéęńüôĺńĺň áđü 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď ReiserFS ăéá ęáôáôěŢóĺéň ěéęńüôĺńĺň áđü "
"32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Ôď óçěĺßď óýíäĺóçň đńÝđĺé íá îĺęéíÜĺé ěĺ /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "ŐđÜń÷ĺé Ţäç ęáôÜôěçóç ěĺ óçěĺßď óýíäĺóçň %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ěéá ęáôÜôěçóç LVM ăéá đńďóÜńôçóç %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
"Áőôüň ď ęáôÜëďăďň đńÝđĺé íá đáńáěĺßíĺé óôď ńéćéęü óýóôçěá áń÷ĺßůí (root)"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"×ńĺéÜćĺóôĺ Ýíá đńáăěáôéęü óýóôçěá áń÷ĺßůí (ext2, reiserfs) ăéá áőôü ôď "
"óçěĺßď óýíäĺóçň\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ěéá ęáôÜôěçóç LVM ăéá đńďóÜńôçóç %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr ""
"Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá áőôüěáôç äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "ÓöÜëěá ęáôÜ ôď Üíďéăěá ôďő %s ăéá ĺăăńáöŢ: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"ĐńďęëŢčçęĺ óöÜëěá - äĺí âńÝčçęáí óőóęĺőÝň óôéň ďđďßĺň íá ĺßíáé äőíáôŢç "
"äçěéďőńăßá íÝůí óőóôçěÜôůí áń÷ĺßůí. Đáńáęáëţ ĺëĺăîôĺ ôď őëéęü óáň ăéáôçí "
"áéôßá áőôďý ôďő đńďâëŢěáôďň"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Äĺí őđÜń÷ĺé ęáěßá ęáôÜôěçóç!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ăĺíéęü"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "DMA ęÜńôáň"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ěďńöďđďßçóç"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "ÁëëáăŢ ôýđďő ęáôÜôěçóçň"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "¸îďäďň"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_ÂďŢčĺéá"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_ÂďŢčĺéá"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/ÂďŢčĺéá/_Ó÷ĺôéęÜ ěĺ..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Đďíôßęé"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "DMA ęÜńôáň"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "śęőńď"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Đďíôßęé"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "ĐĺńéăńáöŢ"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Đéóôďđďßçóç ôáőôüôçôáň"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "ĹđéëÝîôĺ áń÷ĺßď"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "ÓőóęĺőŢ đýëçň"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "Äýď đëŢęôńůí"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Ĺíôďđéóěüň óęëçńďý äßóęďő"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "ĐńďâďëŢ đëçńďöďńéţí őëéęďý"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "ĐńďâďëŢ đëçńďöďńéţí"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Ńýčěéóç đďíôéęéďý"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "áíé÷íĺýčçęĺ óôçí đüńôá %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d äĺőôĺńüëĺđôá"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Áőôüěáôç ĺîÝôáóç"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2369,7 +2524,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2481,9 +2636,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2679,7 +2833,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2691,9 +2845,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2740,21 +2893,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2770,9 +2922,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Óĺ áőôü ôď óçěĺßď, đńÝđĺé íá áđďöáóßóĺôĺ đďý čá ĺăęáôáóôŢóĺôĺ ôď GNU/Linux\n"
"óôďí óęëçńü óáň äßóęď. ĹÜí ĺßíáé Üäĺéďň Ţ ĺÜí Ýíá Üëëď ëĺéôďőńăéęü "
@@ -2862,9 +3014,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3015,38 +3166,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3240,11 +3385,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3301,7 +3446,7 @@ msgstr ""
"đńďűđďčÝôďőí ĺîĺéäéęĺőěÝíĺň ăíţóĺéň.\n"
" Âĺâáéůčĺßôĺ üôé îÝńĺôĺ ôé ęÜíĺôĺ đńůôďý ĺđéëÝîĺôĺ áőôŢí ôçí ĺăęáôÜóôáóç."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3316,7 +3461,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3331,7 +3476,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3347,7 +3492,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3356,23 +3501,23 @@ msgstr ""
"Đáńáęáëţ ĺđéëÝîôĺ ôçí ęáôÜëëçëç čýńá. Ăéá đáńÜäĺéăěá,\n"
"ç COM1 óôá Windows ďíďěÜćĺôáé ttyS0 óôď GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3394,7 +3539,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3416,7 +3561,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3424,7 +3569,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3445,7 +3590,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3472,7 +3617,7 @@ msgstr ""
"äéóęÝôôá ĺęęßíçóçň\n"
"ăéá íá ôá ÷ńçóéěďđďéŢóĺôĺ!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3489,29 +3634,28 @@ msgstr ""
"Ĺęôüň ęáé áí îÝńĺôĺ đďëý ęáëÜ ôé ęÜíĺôĺ, ĺđéëÝîôĺ \"Đńţôďň ôďěÝáň\n"
"ôďő äßóęďő (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3520,7 +3664,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3546,7 +3690,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"Ôď DrakX čá đńďóđáčŢóĺé íá ĺíôďđßóĺé đńďóáńěďăĺßň SCSI ôýđďő PCI.\n"
@@ -3577,7 +3721,7 @@ msgstr ""
"ôďő őëéęďý Ţ áđü ôçí éóôďóĺëßäá ôďő ęáôáóęĺőáóôŢ (áí Ý÷ĺôĺ đńüóâáóç óôď "
"Internet)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3588,9 +3732,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3602,7 +3745,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3697,7 +3840,7 @@ msgstr ""
"with a '*', if you\n"
"press TAB to see the boot selections."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3725,9 +3868,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3779,10 +3921,10 @@ msgstr ""
"Firmware \n"
"Delay expires."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3790,12 +3932,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3811,7 +3952,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3822,7 +3963,7 @@ msgstr ""
"ôçí íÝá ęáôÜôěçóç Mandrake Linux. ĐŃĎÓĎ×Ç: źëá ôá äĺäďěÝíá čá äéáăńáöďýí\n"
"ęáé čá ĺßíáé áäýíáôç ç ĺđáíáöďńÜ ôďőň."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3842,7 +3983,7 @@ msgstr ""
"ĐáôŢóôĺ \"Áęýńůóç\" ăéá íá áęőńţóĺôĺ áőôŢí ôçí äéáäéęáóßá ÷ůńßň íá ÷Üóĺôĺ \n"
"äĺäďěÝíá ęáé ęáôáôěŢóĺéň đďő âńßóęďíôáé óôďí äßóęď."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3850,12 +3991,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3881,20 +4022,20 @@ msgstr ""
"\n"
"ČÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ áőôďýň ôďőň ĺîőđçńĺôçôÝň;\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Äĺí ěđďńţ íá ÷ńçóéěďđďéŢóů broadcast ÷ůńßň NIS domain"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "ĹéóÜăĺôĺ ěéá FAT ěďńöďđďéçěÝíç äéóęÝôôá óôďí ďäçăü %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "ÁőôŢ ç äéóęÝôôá äĺí ĺßíáé ěďńöďđďéçěÝíç FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3902,7 +4043,7 @@ msgstr ""
"Ăéá íá ÷ńçóéěďđďéŢóĺôĺ áőôŢí ôçí áđďčçęĺőěÝíç ĺđéëďăŢ đáęÝôůí, îĺęéíŢóôĺ ôçí "
"ĺăęáôÜóôáóç ěĺ ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "ÓöÜëěá ęáôÜ ôçí áíÜăíůóç ôďő áń÷ĺßďő %s"
@@ -3933,7 +4074,7 @@ msgstr "ĐńÝđĺé íá Ý÷ĺôĺ ěéá ęáôÜôěçóç swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3941,59 +4082,59 @@ msgstr ""
"\n"
"Íá óőíĺ÷ßóů;"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "ĐńÝđĺé íá Ý÷ĺôĺ ěéá ęáôÜôěçóç FAT mounted óôď /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "×ńŢóç ĺëĺýčĺńďő ÷ţńďő"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "×ńŢóç őđÜń÷ďíôůí ęáôáôěŢóĺůí"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Äĺí őđÜń÷ďőí ęáôáôěŢóĺéň đńďň ÷ńŢóç"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "×ńŢóç ęáôÜôěçóçň Windows ăéá loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "ĐďéÜ ęáôÜôěçóç čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ăéá ôď Linux4Win;"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "ĹđéëÝîôĺ ôá ěĺăÝčç"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "ĚÝăĺčďň âáóéęŢň ęáôÜôěçóçň óőóôŢěáôďň óĺ MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "ĚÝăĺčďň ęáôÜôěçóçň swap óĺ MB"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "×ńŢóç ôďő ĺëĺýčĺńďő ÷ţńďő óôçí ęáôÜôěçóç ôůí Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Óĺ ôé ôýđď ęáôÜôěçóçň čÝëĺôĺ íá áëëÜîĺôĺ ěÝăĺčďň;"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Őđďëďăéóěüň ďńßůí óőóôŢěáôďň áń÷ĺßůí Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4002,13 +4143,16 @@ msgstr ""
"Äĺí ěđďńţ íá áëëÜîů ěÝăĺčďň óôçí ęáôÜôěçóç FAT, \n"
"đńďęëŢčçęĺ ôď đáńáęÜôů ëÜčďň: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Ç ęáôÜôěçóç ôůí Windows ĺßíáé đďëý ęáôáęĺńěáôéóěÝíç, đáńáęáëţ ôńÝîôĺ đńţôá "
"ôď ``defrag'' "
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4029,57 +4173,57 @@ msgstr ""
"ĚĺôÜ čá đńÝđĺé íá ęńáôŢóĺôĺ áíôßăńáöď áóöáëĺßáň ôůí äĺäďěÝíůí óáň.\n"
"ĹÜí ĺßóôĺ óßăďőńďé, đáôŢóôĺ Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Ôé ÷ţńď čÝëĺôĺ íá ęńáôŢóĺôĺ ăéá ôá windows óôď"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "ęáôÜôěçóç %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "ÁëëáăŢ ěĺăÝčďőň FAT áđÝôő÷ĺ: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Äĺí őđÜń÷ďőí FAT ęáôáôěŢóĺéň ăéá áëëáăŢ ěĺăÝčďőň Ţ ăéá ÷ńŢóç ůň loopback (Ţ "
"äĺí őđÜń÷ĺé áńęĺôüň ÷ţńďň)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "ÄéáăńáöŢ ďëüęëçńďő ôďő äßóęďő"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Áöáßńĺóç Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"¸÷ĺôĺ đĺńéóóüôĺńďőň áđü Ýíáí äßóęďőň, óĺ đďéüí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ôď "
"Linux;"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"źëĺň ďé őđÜń÷ďőóĺň ęáôáôěŢóĺéň ęáé ôá äĺäďěÝíá ôďőň óôďí äßóęď %s čá ÷áčďýí"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "ĐńďóáńěďóěÝíĺň ęáôáôěŢóĺéň äßóęďő"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "×ńŢóç fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4088,11 +4232,11 @@ msgstr ""
"Ěđďńĺßôĺ ôţńá íá ęáôáôěŢóĺôĺ ôďí äßóęď %s\n"
"źôáí ôĺëĺéţóĺôĺ, ěçí îĺ÷Üóĺôĺ íá áđďčçęĺýóĺôĺ đáôţíôáň `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Äĺí Ý÷ĺôĺ áńęĺôü ĺëĺýčĺńď ÷ţńď óôçí ęáôÜôěçóç ôůí Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Äĺí ěđďńţ íá âńţ áńęĺôü ÷ţńď ăéá ĺăęáôÜóôáóç"
@@ -4100,16 +4244,16 @@ msgstr "Äĺí ěđďńţ íá âńţ áńęĺôü ÷ţńď ăéá ĺăęáôÜóôáóç"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ôď DrakX âńŢęĺ ôéň đáńáęÜôů ëýóĺéň:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ç ęáôÜôěçóç áđÝôő÷ĺ: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Ĺęęßíçóç äéęôýďő"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
@@ -4122,12 +4266,12 @@ msgstr ""
"ôďő őëéęďý Ţ áđü ôçí éóôďóĺëßäá ôďő ęáôáóęĺőáóôŢ (áí Ý÷ĺôĺ đńüóâáóç óôď "
"Internet).Óőíĺ÷ßóôĺ ěĺ äéęéÜ óáň ĺőčýíç."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äéđëü óçěĺßď óýíäĺóçň %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4139,12 +4283,12 @@ msgstr ""
"ĹëÝăîôĺ ôď CD-ROM óĺ Ýíá Üëëď óýóôçěá ÷ńçóéěďđďéţíôáň ôçí ĺíôďëŢ \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Ęáëţň Ţńčáôĺ óôď %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôôáň"
@@ -4154,9 +4298,9 @@ msgstr "Äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôôáň"
msgid "Entering step `%s'\n"
msgstr "ÂŢěá `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4167,199 +4311,154 @@ msgstr ""
"ĺăęáôÜóôáóç ęĺéěÝíďő.\n"
"ĐáôŢóôĺ F1 ęáôÜ ôçí ĺęęßíçóç áđü CDROM, ěĺôÜ ăńÜřôĺ `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Ôýđďň ĺăęáôÜóôáóçň"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôéň đáńáęÜôů đëçńďöďńßĺň"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ôď óőíďëéęü ěÝăĺčďň ôůí ďěÜäůí đďő ĺđéëÝîáôĺ ĺßíáé đĺńßđďő %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"ĹÜí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ëéăüôĺńá,\n"
-"ĺđéëÝîôĺ ôď đďóďóôü ôůí đáęÝôůí đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ.\n"
-"\n"
-"¸íá ÷áěçëü đďóďóôü čá ĺăęáôáóôŢóĺé ěüíď ôá đéď óçěáíôéęÜ đáęÝôá.\n"
-"¸íá đďóďóôü 100% čá ĺăęáôáóôŢóĺé üëá ôá ĺđéëĺăěÝíá đáęÝôá."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"¸÷ĺôĺ óôď äßóęď óáň ÷ţńď ěüíď ăéá ôď %d%% áőôţí ôůí đáęÝôůí.\n"
-"\n"
-"ĹÜí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ëéăüôĺńá áđü áőôÜ,\n"
-"ĺđéëÝîôĺ ôď đďóďóôü ôůí đáęÝôůí đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ.\n"
-"¸íá ÷áěçëü đďóďóôü čá ĺăęáôáóôŢóĺé ěüíď ôá đéď óçěáíôéęÜ đáęÝôá.\n"
-"¸íá đďóďóôü %d%% čá ĺăęáôáóôŢóĺé üóď đĺńéóóüôĺńá ăßíĺôáé."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Čá ěđďńÝóĺôĺ íá ęÜíĺôĺ ëĺđôďěĺńÝóôĺńç ĺđéëďăŢ óôď ĺđüěĺíď âŢěá."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Đďóďóôü đáęÝôůí đńďň ĺăęáôÜóôáóç"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "ĹđéëďăŢ ďěÜäůí đáęÝôůí"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "ĹđéëďăŢ îĺ÷ůńéóôţí đáęÝôůí"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Óőíďëéęü ěÝăĺčďň: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "ËÜčďň đáęÝôď"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "źíďěá: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "¸ęäďóç: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "ĚÝăĺčďň: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Óçěáóßá: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Äĺí ěđďńĺßôĺ íá ĺđéëÝîĺôĺ áőôü ôď đáęÝôď äéüôé äĺí őđÜń÷ĺé áńęĺôüň ÷ţńďň"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Čá ĺăęáôáóôáčďýí ôá đáńáęÜôů đáęÝôá"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Čá áöáéńĺčďýí ôá đáńáęÜôů đáęÝôá "
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Äĺí ěđďńĺßôĺ íá ĺđéëÝîĺôĺ/áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Áőôü ĺßíáé áđáéôďýěĺíď đáęÝôď, äĺí ěđďńĺß íá áđďĺđéëĺăĺß"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Äĺí ěđďńĺßôĺ íá áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď. Ĺßíáé Ţäç ĺăęáôĺóôçěÝíď"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Áőôü ôď đáęÝôď đńÝđĺé íá áíáâáčěéóôĺß\n"
"Ĺßóôĺ óßăďőńďň üôé čÝëĺôĺ íá ôď áđďĺđéëÝîĺôĺ;"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Äĺí ěđďńĺßôĺ íá áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď. ĐńÝđĺé íá áíáâáčěéóôĺß"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Áőôüěáôç đńďâďëŢ ĺđéëĺăěÝíůí đáęÝôůí"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "ĹăęáôÜóôáóç"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Öüńôůóç/ÁđďčŢęĺőóç óĺ äéóęÝôôá"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "ÁíáíÝůóç ĺđéëĺăěÝíůí đáęÝôůí"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "ĹëÜ÷éóôç ĹăęáôÜóôáóç"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "ĹđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "ĹăęáôÜóôáóç"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Ĺęôßěçóç"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "ĹíáđďěÝíůí ÷ńüíďň "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ, đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d đáęÝôá"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Áđďäď÷Ţ"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "śńíçóç"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4373,17 +4472,17 @@ msgstr ""
"Đáńáęáëţ ĺéóÜăĺôĺ ôď Cd-Rom ěĺ üíďěá \"%s\" óôďí ďäçăü óáň ęáé đáôŢóôĺ Ďę.\n"
"ĹÜí äĺí ôď Ý÷ĺôĺ, đáôŢóôĺ Áęýńůóç ăéá áđďöőăŢ ĺăęáôÜóôáóçň áđü áőôü ôď CdRom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Íá óőíĺ÷ßóů;"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "ĐńďęëŢčçęĺ óöÜëěá ęáôÜ ôçí ôáîéíüěçóç ôůí đáęÝôůí:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "ĐńďęëŢčçęĺ óöÜëěá ęáôÜ ôçí ĺăęáôÜóôáóç ôůí đáęÝôůí:"
@@ -4457,11 +4556,11 @@ msgstr "ĐńďęëŢčçęĺ óöÜëěá"
msgid "Do you really want to leave the installation?"
msgstr "ČÝëĺôĺ íá ĺđáíĺęęéíŢóĺôĺ ôď äßęôőď;"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "śäĺéá ÷ńŢóçň"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4476,7 +4575,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4594,7 +4693,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4699,114 +4798,118 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Đëçęôńďëüăéď"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ äéáńýčěéóç đëçęôńďëďăßďő."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "ÁőôŢ ĺßíáé ç đëŢńçň ëßóôá ôůí äéáčÝóéěůí đëçęôńďëďăßůí"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Ôé ôýđď ĺăęáôÜóôáóçň đńďôéěÜôĺ;"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "ĹăęáôÜóôáóç/ÁíáâÜčěéóç"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Đńüęĺéôáé ăéá ĺăęáôÜóôáóç Ţ ăéá áíáâÜčěéóç;"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Óőíéóôţěĺíď"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ăéá ĺéäéęďýň"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "ÁíáâÜčěéóç"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "ÁíáíÝůóç ĺđéëĺăěÝíůí đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Čýńá đďíôéęéďý"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Đáńáęáëţ ĺđéëÝîôĺ óĺéńéáęŢ čýńá óôçí ďđďßá ĺßíáé óőíäĺäĺěÝíď ôď đďíôßęé óáň."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Đńďóďěďßůóç Ęďőěđéţí"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Đńďóďěďßůóç 2 Ęďőěđéţí"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Đńďóďěďßůóç 3 Ęďőěđéţí"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Ńýčěéóç ęáńôţí PCMCIA "
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Ńýčěéóç IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "äĺí őđÜń÷ďőí äéáčÝóéěĺň ęáôáôěŢóĺéň"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "ÁíÜëőóç ęáôáôěŢóĺůí ăéá đńďóäéďńéóěü óçěĺßůí óýíäĺóçň."
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "ĹđéëÝîôĺ óçěĺßá óýíäĺóçň"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4818,7 +4921,7 @@ msgstr ""
"\n"
"Óőěöůíĺßôĺ íá äéáăńáöďýí üëĺň ďé ęáôáôěŢóĺéň;\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4826,7 +4929,7 @@ msgstr ""
"Ôď DiskDrake áđÝôő÷ĺ íá äéáâÜóĺé óůóôÜ ôďí đßíáęá ęáôáôěŢóĺůí.\n"
"Óőíĺ÷ßóôĺ ěĺ äéęŢ óáň ĺőčýíç!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4835,79 +4938,82 @@ msgstr ""
"áëëÜ ăéá íá îĺęéíŢóĺôĺ ôď óýóôçěÜ óáň, čá ÷ńĺéáóôĺß íá äçěéďőńăŢóĺôĺ ěéá "
"ęáôÜôěçóç bootstrap ěĺ ôď DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Äĺí âńÝčçęĺ ęáôÜôěçóç root ăéá ôçí đńáăěáôďđďßçóç ôçň áíáâÜčěéóçň"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root Partition (âáóéęŢ ęáôÜôěçóç óőóôŢěáôďň)"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "ĐďéÜ ĺßíáé ç âáóéęŢ ęáôÜôěçóç (/) ôďő óőóôŢěáôüň óáň;"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Áđáéôĺßôáé ĺđáíĺęęßíçóç ăéá íá ĺíĺńăďđďéçčďýí ďé áëëáăÝň óôďí đßíáęá "
"ęáôáôěŢóĺůí"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "ĹđéëÝîôĺ ęáôáôěŢóĺéň đńďň ěďńöďđďßçóç"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "¸ëĺă÷ďň ăéá ÷áëáóěÝíá blocks;"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Ěďńöďđďßçóç ęáôáôěŢóĺůí"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Äçěéďőńăßá ęáé ěďńöďđďßçóç áń÷ĺßďő %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Äĺí őđÜń÷ĺé áńęĺôü swap ăéá ôçí ďëďęëŢńůóç ôçň ĺăęáôÜóôáóçň, đáńáęáëţ "
"đńďóčÝóôĺ"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "ŘÜ÷íů ăéá äéáčÝóéěá đáęÝôá"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "ŘÜ÷íů ăéá äéáčÝóéěá đáęÝôá"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Đńďóäéďńéóěüň đáęÝôůí đńďň áíáâÜčěéóç"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Äĺí ěđďńĺßôĺ íá áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď. Ĺßíáé Ţäç ĺăęáôĺóôçěÝíď"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Ôď óýóôçěÜ óáň äĺí Ý÷ĺé áńęĺôü äéáčÝóéěď ÷ţńď ăéá ĺăęáôÜóôáóç Ţ áíáâÜčěéóç (%"
"d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "ĐëŢńçň (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "ĹëÜ÷éóôç (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Óőíéóôţěĺíç (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4916,53 +5022,53 @@ msgstr ""
"äéóęÝôôá.\n"
"Ç ěďńöďđďßçóç ĺßíáé ç ßäéá ěĺ ôéň äéóęÝôôĺň áőôüěáôçň ĺăęáôÜóôáóçň."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Öüńôůóç áđü äéóęÝôôá"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Öüńôůóç áđü äéóęÝôôá"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "ĹđéëďăŢ đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "ĹéóÜăĺôĺ äéóęÝôôá đďő đĺńéÝ÷ĺé ôçí ĺđéëďăŢ đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "ÁđďčŢęĺőóç óĺ äéóęÝôôá"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Ôď ĺđéëĺăěÝíď ěÝăĺčďň ĺßíáé ěĺăáëýôĺńď áđü ôď äéáčÝóéěď ÷ţńď"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4972,16 +5078,16 @@ msgstr ""
"ĹÜí äĺí Ý÷ĺôĺ ęáíÝíá áđü ôá đáńáęÜôů CDs, đáôŢóôĺ Áęýńůóç.\n"
"ĹÜí äĺí Ý÷ĺôĺ ęÜđďéá áđü áőôÜ, áđďĺđéëÝîôĺ ôá ęáé đáôŢóôĺ Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ďíüěáôé \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4990,23 +5096,23 @@ msgstr ""
"ĹăęáôÜóôáóç đáęÝôďő %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Ńőčěßóĺéň ěĺôÜ ôçí ĺăęáôÜóôáóç"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôç äéóęÝôôá Ĺęęßíçóçň óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôç äéóęÝôôá ÁíáíÝůóçň ÁńčńůěÜôůí óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5069,161 +5175,192 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Óýíäĺóç ăéá ëŢřç đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "ĹđéëÝîôĺ ôüđď áđü ôďí ďđďßď čá ăßíĺé ç ëŢřç đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Óýíäĺóç ăéá ëŢřç đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "ĐďéÜ ĺßíáé ç ćţíç ţńáň;"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Ôď ńďëüé ôďő őđďëďăéóôŢ óáň ĺßíáé ńőčěéóěÝíď óĺ GMT (ţńá ĂęńŢíďőúôň)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Áőôüěáôďň óőă÷ńďíéóěüň ţńáň (÷ńŢóç NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "ĹîőđçńĺôçôŢň NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "ĘáíÝíáň ĺęôőđůôŢň"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "¸÷ĺôĺ áëëďí;"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Đĺńßëçřç"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Đďíôßęé"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "ŮńďëďăéáęŢ Ćţíç"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "ĹęôőđůôŢň"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "KÜńôá ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "ĘÜńôá Ţ÷ďő"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "ĘÜńôá TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Áöáßńĺóç Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "ÔďđéęÜ áń÷ĺßá"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Óőíčçěáôéęü root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "×ůńßň óőíčçěáôéęü"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Áőôü ôď óőíčçěáôéęü ĺßíáé đďëý áđëü (đńÝđĺé íá ĺßíáé ôďőëÜ÷éóôďí %d "
"÷áńáęôŢńĺň ěáęńý)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Đéóôďđďßçóç ôáőôüôçôáň"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Đéóôďđďßçóç LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "ĹîőđçńĺôçôŢň LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Ĺîáęńßâůóç NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Đĺńéď÷Ţ (domain) NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "ĹîőđçńĺôçôŢň NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Đéóôďđďßçóç LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Đĺńéď÷Ţ (domain) NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "ĹîőđçńĺôçôŢň NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5250,19 +5387,19 @@ msgstr ""
"ęÜíďíôáň ĺőęďëüôĺńç ôçí ĺđáíáöďńÜ ôďő óőóôŢěáôďň ěĺôÜ áđü óďâáńŢ âëÜâç.\n"
"ČÝëĺôĺ íá äçěéďőńăŢóĺôĺ äéóęÝôôá ĺęęßíçóçň;"
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Đńţôďň ďäçăüň äéóęÝôáň"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Äĺýôĺńďň ďäçăüň äéóęÝôáň"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "ĐáńÜëĺéřç"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5289,7 +5426,7 @@ msgstr ""
"ČÝëĺôĺ íá äçěéďőńăŢóĺôĺ äéóęÝôôá ĺęęßíçóçň;\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5298,28 +5435,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "ËőđÜěáé, äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôôáň"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "ĹđéëÝîôĺ ďäçăü äéóęÝôôáň ăéá äçěéďőńăßá äéóęÝôôáň ĺęęßíçóçň"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "ĹéóÜăĺôĺ äéóęÝôôá óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Äçěéďőńăßá äßóęďő ĺęęßíçóçň"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Đńďĺôďéěáóßá đńďăńÜěěáôďň ĺęęßíçóçň"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5331,11 +5468,11 @@ msgstr ""
"Ç ĺăęáôÜóôáóç čá óőíĺ÷éóôĺß, áëëÜ\n"
"čá ÷ńĺéáóôĺß íá ÷ńçóéěďđďéŢóĺôĺ ôď BootX ăéá íá îĺęéíŢóĺôĺ ôď ěç÷ÜíçěÜ óáň"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "ČÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď aboot;"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5344,18 +5481,18 @@ msgstr ""
"đńďóđÜčĺéá âĺâéáóěÝíçň ĺăęáôÜóôáóçň, áęüěá ęáé áí áőôü Ý÷ĺé óáí áđďôÝëĺóěá "
"ôçí ęáôáóôńďöŢ ôçň đńţôçň ęáôÜôěçóçň;"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Ĺăę. đń. ĺęęßíçóçň"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ç ĺăęáôÜóôáóç ôďő đńďăńÜěěáôďň ĺęęßíçóçň áđÝôő÷ĺ. ĐńďęëŢčçęĺ ôď áęüëďőčď "
"óöÜëěá:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5372,18 +5509,17 @@ msgstr ""
" Ôüôĺ ôőđţóôĺ: shut-down\n"
"Óôçí ĺđüěĺíç ĺęęßíçóç čá đńÝđĺé íá äĺßôĺ ôçí đńďôńďđŢ ôďő bootloader."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "ĹéóÜăĺôĺ Üäĺéá äéóęÝôôá óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Đńďĺôďéěáóßá äéóęÝôáň áőôüěáôçň ĺăęáôÜóôáóçň"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5393,7 +5529,8 @@ msgstr ""
"\n"
"ČÝëĺôĺ óßăďőńá íá ĺăęáôáëĺßřĺôĺ ôţńá;"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5404,7 +5541,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5419,18 +5556,22 @@ msgstr ""
"óőěâďőëĺőôĺßôĺ ôçí óĺëßäá \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Đëçńďöďńßĺň ó÷ĺôéęÜ ěĺ ôéň ńőčěßóĺéň ôďő óőóôŢěáôüň óáň őđÜń÷ďőí óôď "
"ó÷ĺôéęü\n"
"ęĺöÜëáéď ôďő ĺđßóçěďő ďäçăďý ÷ńŢóçň ôďő Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Đńďĺôďéěáóßá äéóęÝôôáň áőôüěáôçň ĺăęáôÜóôáóçň"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5444,15 +5585,15 @@ msgstr ""
"\n"
"Ěđďńĺß íá đńďôéěÜôĺ íá ĺđáíáëÜâĺôĺ ôçí ĺăęáôÜóôáóç.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Áőôüěáôď"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ĺđáíáöüńôůóç"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "ÁđďčŢęĺőóç ĺđéëďăŢň đáęÝôůí"
@@ -5480,418 +5621,402 @@ msgstr ""
msgid "Choose a file"
msgstr "ĹđéëÝîôĺ đńÜîç"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr " Ăéá Đńď÷ůńçěÝíďőň"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Đëçńďöďńßĺň"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ÁíÜđôőîç äÝíôńďő"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Óýěđôőîç äÝíôńďő"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "ĹíáëëáăŢ ěĺôáîý ĺđßđĺäçň ęáé ďěáäéęŢň ôáîéíüěçóçň"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "ĘáęŢ ĺđéëďăŢ, îáíáäďęéěÜóôĺ\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "ĹđéëďăÝň: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "ČÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď aboot;"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "ÔóÝ÷éęď (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Ăĺńěáíéęü"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Éóđáíéęü"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Öéíëáíäéęü"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ăáëëéęü"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Íďńâçăéęü"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Đďëůíéęü"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ńůóéęü"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Óďőçäéęü"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "ĚĺăÜëç Âńĺôáííßá (UK)"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Ç.Đ.Á. (US)"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Áëâáíéęü"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Áńěĺíéęü (đáëéü)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Áńěĺíéęü (ăńáöďěç÷áíŢ)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Áńěĺíéęü (öůíçôéęü)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "ÁćĺńěđáúôćÜí (Ëáôéíéęü)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Âĺëăéęü"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Áńěĺíéęü (öůíçôéęü)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Âďőëăáńéęü"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "ÂńáćéëéÜíéęď"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Ëĺőęďńůóßáň"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Ĺëâĺôéęü (ĂĺńěáíéęŢ äéáńýčěéóç)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Ĺëâĺôéęü (ĂáëëéęŢ äéáńýčěéóç)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "ÔóÝ÷éęď (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Ăĺńěáíéęü (÷ůńßň íĺęńÜ đëŢęôńá)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Äáíéęü"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (ÇĐÁ)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Íďńâçăéęü)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (ÇĐÁ)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Ĺóčďíéęü"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Ăĺůńăßá (\"Ńůóéęç\" äéáńýčěéóç)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Ăĺůńăßá (\"ËáôéíéęŢ\" äéáńýčěéóç)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Ĺëëçíéęü"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ďőăăńéęü"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Ęńďáôéęü"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "ÉóńáŢë"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "ÉóńáŢë (öůíçôéęü)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Éńáíéęü"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Éóëáíäéęü"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Éôáëéęü"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Éáđůíéęü 106 đëŢęôńůí"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "ĘďńĺÜôéęď Đëçęôńďëüăéď"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "ËáôéíéęŢň ÁěĺńéęŢň"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Ëéčďőáíéęü AZERTY (đáëéü)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Ëéčďőáíéęü AZERTY (íÝď)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëéčďőáíéęü \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëéčďőáíéęü \"öůíçôéęü\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Ôďđďčĺóßá"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "ĚáęĺäďíéęŢ"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Ďëëáíäéęü"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Đďëůíéęü (äéáńýčěéóç qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Đďëůíéęü (äéáńýčěéóç qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Đďńôďăáëëéęü"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Ęáíáäéęü (ĘĺěđÝę)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Ńďőěáíéęü (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Ńďőěáíéęü (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ńůóéęü (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Óëďâĺíßáň"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Óëďâáęßáň (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Óëďâáęßáň (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "ÁćĺńěđáúôćÜí (ęőńéëëéęü)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Đßíáęáň"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Ôďőńęéęü (đáńáäďóéáęü \"F\" ěďíôÝëď)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Ôďőńęéęü (ěďíôÝńíď \"Q\" ěďíôÝëď)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ďőęńáíéęü"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US äéĺčíÝň"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "ÂéĺôíÜě \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Ăéďőăęďóëáâéęü (ëáôéíéęü/ęőńéëëéęü)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5904,7 +6029,31 @@ msgstr "ĘőęëéęÝň óőíäÝóĺéň %s\n"
msgid "Remove the logical volumes first\n"
msgstr "ÁöáéńÝóôĺ ôá logical volumes đńţôá\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Áńéčěüň ôçëĺöţíďő"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Ěďńöďđ. ęáôáôěŢó."
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5945,10 +6094,6 @@ msgstr "1 đëŢęôńďő"
msgid "Generic 2 Button Mouse"
msgstr "Ăĺíéęďý ôýđďő ěĺ 2 đëŢęôńá"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ăĺíéęü"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Ěĺ ńďäÜęé"
@@ -6013,38 +6158,54 @@ msgstr "ęáíÝíá"
msgid "No mouse"
msgstr "×ůńßň đďíôßęé"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Ăéá ĺíĺńăďđďßçóç đďíôéęéďý"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "ĘÉÍÇÓÔĹ ÔĎ ŃĎÄÁĘÉ!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "ÔÝëďň"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Ĺđüěĺíď -ť"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Đńďçăďýěĺíď"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Óůóôü;"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Đëçńďöďńßĺň"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "ÁíÜđôőîç äÝíôńďő"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Óýěđôőîç äÝíôńďő"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "ĹíáëëáăŢ ěĺôáîý ĺđßđĺäçň ęáé ďěáäéęŢň ôáîéíüěçóçň"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Óýíäĺóç óôď Äéáäßęôőď"
@@ -6091,7 +6252,7 @@ msgstr ""
"Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő Ethernet óôď óýóôçěÜ óáň.\n"
"Äĺí ěđďńţ íá ńőčěßóů áőôďý ôďő ôýđďő ôçí óýíäĺóç."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "ĹđéëÝîôĺ óőóęĺőŢ äéęôýďő"
@@ -6106,7 +6267,7 @@ msgstr ""
msgid "no network card found"
msgstr "äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Ńýčěéóç äéęôýďő"
@@ -6122,15 +6283,15 @@ msgstr ""
"Ôď üíďěá áőôü đńÝđĺé íá ĺßíáé Ýíá đëŢńĺň üíďěá óőóôŢěáôďň,\n"
"üđůň đ.÷. ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "źíďěá óőóôŢěáôďň"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Ďäçăüň Ńýčěéóçň Äéęôýďő"
@@ -6186,7 +6347,7 @@ msgstr "Ńőčěßóĺéň ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"ĹđéëÝîôĺ ôďí đáńď÷Ýá óáň\n"
" ĹÜí äĺí ĺßíáé óôďí ęáôÜëďăď, ĺđéëÝîôĺ Unlisted"
@@ -6209,14 +6370,14 @@ msgstr "Őđüëďéđďň ęüóěďň"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Őđüëďéđďň ęüóěďň \n"
" ÷ůńßň D-Channel (ěéóčůěÝíĺň ăńáěěÝň)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Đďéü đńůôüęďëëď čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
#: ../../network/isdn.pm_.c:199
@@ -6240,7 +6401,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"ĹÜí Ý÷ĺôĺ ISA ęÜńôá, ďé ôéěÝň óôçí ĺđüěĺíç ďčüíç čá đńÝđĺé íá ĺßíáé óůóôÝň.\n"
@@ -6256,13 +6418,13 @@ msgid "Continue"
msgstr "ÓőíÝ÷ĺéá"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "ĐďéÜ ĺßíáé ç ISDN ęÜńôá óáň;"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ĺíôüđéóá ěéá ISDN ęÜńôá, áëëÜ äĺí îÝńů ôďí ôýđď ôçň. Đáńáęáëţ ĺđéëÝîôĺ ěéá "
"ęÜńôá PCI áđü ôçí đáńáęÜôů ďčüíç."
@@ -6279,47 +6441,47 @@ msgstr "Óĺ đďéÜ óĺéńéáęŢ đüńôá ĺßíáé óőíäĺäĺěÝíď ôď modem óáň;"
msgid "Dialup options"
msgstr "ĹđéëďăÝň dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "źíďěá óýíäĺóçň"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Áńéčěüň ôçëĺöţíďő"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "×ńŢóç script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "×ńŢóç ôĺńěáôéęďý"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "źíďěá äéęôýďő"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Đńţôďň ĺîőđçńĺôçôŢň DNS (đńďáéńĺôéęü)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Äĺýôĺńďň ĺîőđçńĺôçôŢň DNS (đńďáéńĺôéęü)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6327,7 +6489,7 @@ msgstr ""
"\n"
"Ěđďńĺßôĺ íá áđďóőíäĺčĺßôĺ Ţ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6335,11 +6497,11 @@ msgstr ""
"\n"
"Ěđďńĺßôĺ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "ÁőôŢ ôç óôéăěŢ ĺßóôĺ óőíäĺäĺěÝíďé óôď Äéáäßęôőď."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6347,33 +6509,33 @@ msgstr ""
"\n"
"Ěđďńĺßôĺ íá óőíäĺčĺßôĺ óôď Äéáäßęôőď Ţ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "ÁőôŢ ôç óôéăěŢ äĺí ĺßóôĺ óőíäĺäĺěÝíďé óôď Äéáäßęôőď."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Óýíäĺóç"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Áđďóýíäĺóç"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Ńýčěéóç äéęôýďő"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Óýíäĺóç ęáé ńýčěéóç Äéáäéęôýďő (internet)"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ôţńá čá ńőčěßóďőěĺ ôçí %s óýíäĺóç."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6392,12 +6554,12 @@ msgstr ""
"\n"
"ĐáôŢóôĺ ôď OK ăéá íá îĺęéíŢóĺôĺ"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6408,9 +6570,9 @@ msgstr ""
"ĘÜíôĺ ęëßę óôď Ďę ăéá íá äéáôçńŢóĺôĺ ôéň ńőčěßóĺéň óáň, Ţ Üęőńď ăéá íá "
"îáíáńőčěßóĺôĺ ôç óýíäĺóç óôď Internet.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6421,66 +6583,72 @@ msgstr ""
"Áí äĺí čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôçí áőôüěáôç áíß÷íĺőóç, îĺôóĺęÜńĺôĺ ôď "
"checkbox.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "ĹđéëÝîôĺ ôď đńďößë ăéá ńýčěéóç"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "ĘáôÜóôáóç Đńď÷ůńçěÝíůí"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Ĺíôďđéóěüň óőóęĺőţí..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "ÁđëŢ óýíäĺóç ěĺ modem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "áíé÷íĺýčçęĺ óôçí đüńôá %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Óýíäĺóç ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "áíé÷íĺýčçęĺ ôď %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Óýíäĺóç ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "áíé÷íĺýôçęĺ óôçí äéĺđéöÜíĺéá %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "ĘáëůäéáęŢ óýíäĺóç"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "áíé÷íĺýčçęĺ ęáëůäéáęŢ óýíäĺóç"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Óýíäĺóç LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ęÜńôá(ĺň) ethernet áíé÷íĺýčçęáí"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "ĹđéëÝîôĺ ôç óýíäĺóç đďő čÝëĺôĺ íá ńőčěßóĺôĺ"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6490,23 +6658,23 @@ msgstr ""
"ĹđéëÝîôĺ áőôüí đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Óýíäĺóç Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "ČÝëĺôĺ íá óőíäÝĺóôĺ ęáôÜ ôçí ĺęęßíçóç;"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6517,7 +6685,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6527,7 +6695,7 @@ msgstr ""
"\n"
"Ďé ńőčěßóĺéň čá ĺöáńěďóôďýí ôţńá óôď óýóôçěÜ óáň.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6535,16 +6703,16 @@ msgstr ""
"Áöďý ăßíĺé áőôü, đńďôĺßíďőěĺ íá îáíáîĺęéíŢóĺôĺ ôď ×\n"
"đĺńéâÜëëďí ăéá íá áđďöýăĺôĺ ôá đńďâëŢěáôá áëëáăŢň hostname."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6554,7 +6722,7 @@ msgstr ""
"ÁđëÜ đáôŢóôĺ OK ăéá íá ęńáôŢóĺôĺ ôéň őđÜń÷ďőóĺň ńőčěßóĺéň.\n"
"ÁëëÜćďíôáň ôá đáńáęÜôů đĺäßá čá áëëÜîĺôĺ ôçí őđÜń÷ďőóá ńýčěéóç."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6564,38 +6732,43 @@ msgstr ""
"ĘÜčĺ óôďé÷ĺßď đńÝđĺé íá ĺéóá÷čĺß ůň IP äéĺýčőíóç óĺ ďęôáäéęŢ\n"
"ěďńöŢ (đáńÜäĺéăěá: 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Ńýčěéóç óőóęĺőŢň äéęôýďő %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Äéĺýčőíóç IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "ĚÜóęá äéęôýďő"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Áőôüěáôď IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Îĺęßíçóáí óôçí ĺęęßíçóç óőóôŢěáôďň"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Ç IP äéĺýčőíóç đńÝđĺé íá ĺßíáé óĺ ěďńöŢ 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6607,64 +6780,64 @@ msgstr ""
"üđůň đ.÷. ``mybox.mylab.myco.com''.\n"
"Ěđďńĺßôĺ ĺđßóçň íá ĺéóÜăĺôĺ ęáé ôçí äéĺýčőíóç IP ôçň đýëçň äéęôýďő"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "ĹîőđçńĺôçôŢň DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "ÓőóęĺőŢ đýëçň"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Ńőčěßóĺéň proxies"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Ď proxy đńÝđĺé íá ĺßíáé http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Ď proxy đńÝđĺé íá ĺßíáé ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ íá óőíäĺčĺßôĺ óôď Äéáäßęôőď ôţńá;"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "ÄďęéěŢ óýíäĺóçň... "
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ôď óýóôçěá äĺí ĺßíáé óőíäĺäĺěÝíď óôď Äéáäßęôőď."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Ăéá ëüăď ÁóöÜëĺéáň, čá áđďóőíäĺčĺßôĺ ôţńá."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6672,113 +6845,118 @@ msgstr ""
"Ôď óýóôçěÜ óáň äĺí öáßíĺôáé íá ĺßíáé óőíäĺäĺěÝíď óôď Äéáäßęôőď.\n"
"ÄďęéěÜóôĺ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Ńőčěßóĺéň óëőíäĺóçň"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Đáńáęáëţ ĺëÝăîôĺ Ţ óőěđëçńţóôĺ ôď đáńáęÜôů đĺäßď"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ ęÜńôáň"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "DMA ęÜńôáň"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO ęÜńôáň"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 ęÜńôáň"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 ęÜńôáň"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Đńďóůđéęüň áńéčěüň ôçëĺöţíďő"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "źíďěá đáńď÷Ýá (đ.÷. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Áńéčěüň ôçëĺöţíďő đáńď÷Ýá"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provider dns 1 (đńďáéńĺôéęü)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provider dns 2 (đńďáéńĺôéęü)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "ĹđéëÝîôĺ đëçęôńďëüăéď"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Ôńüđďň ęëŢóçň"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Ôá÷ýôçôá óýíäĺóçň"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "×ńüíďň óýíäĺóçň: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "'Ďíďěá ëďăáńéáěďý (user name)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Óőíčçěáôéęü ëďăáńéáóěďý"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "óýíäĺóç áđÝôő÷ĺ: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Ç ĺęôĺôáěÝíç ęáôÜôěçóç äĺí őđďóôçńßćĺôáé óĺ áőôüí ôďí ôýđď óőóôŢěáôďň"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"ŐđÜń÷ĺé Ýíá ęĺíü óôďí đßíáęá ęáôáôěŢóĺůí ěá äĺí ěđďńţ íá ôď ÷ńçóéěďđďéŢóů.\n"
"Ç ěďíáäéęŢ ëýóç ĺßíáé íá ěĺôáęéíŢóĺôĺ ôéň đńůôĺýďőóĺň ęáôáôěŢóĺéň óáň Ýôóé "
"ţóôĺ ôď ęĺíü íá âńĺčĺß äßđëá óôçí ĺęôĺôáěÝíç ęáôÜôěçóç"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ç ĺđáíáöďńÜ áđü ôď áń÷ĺßď %s áđÝôő÷ĺ: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "ÓöÜëěá ĺăăńáöŢň óôď áń÷ĺßď %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6789,194 +6967,194 @@ msgstr ""
"Áőôü óçěáßíĺé đůň ç ďđďéáäŢđďôĺ ĺăăńáöŢ óôď äßóęď čá ęáôáëŢîĺé óáí ôő÷áßá "
"óęďőđßäéá"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "đńÝđĺé íá őđÜń÷ĺé"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "óçěáíôéęü"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "đďëý ęáëü"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "ęáëü"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ßóůň"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Ôďđéęüň ĺęôőđůôŢň"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň lpd"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "ĹęôőđůôŢň äéęôýďő (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "ĹîőđçńĺôçôŢň ĺęôőđţóĺůí"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
#, fuzzy
msgid "Pipe job into a command"
msgstr "ÄéáóůëŢíůóç óôçí ĺíôďëŢ"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Ôďđéęüň ĺęôőđůôŢň"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "ÓöÜëěá ĺăăńáöŢň óôď áń÷ĺßď %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(module %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP äéĺýčőíóç ĺîőđçńĺôçôŢ CUPS:"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (ĹđéëďăŢ ĺî' ďńéóěďý)"
@@ -7000,12 +7178,12 @@ msgstr ""
"óĺ äéáöďńĺôéęü äßęôőď. Óĺ áőôŢí ôçí đĺńßđôůóç, čá đńÝđĺé íá äçëţóĺôĺ ôçí\n"
"IP äéĺýčőíóç ôďő ĺîőđçńĺôçôŢ CUPS ęáé ßóůň ęáé ôďí áńéčěü čýńáň."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Ńýčěéóç LÁÍ"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
@@ -7035,7 +7213,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Ç IP äéĺýčőíóç đńÝđĺé íá ĺßíáé óĺ ěďńöŢ 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Ď áńéčěüň čýńáň đńÝđĺé íá ĺßíáé áęÝńáéďň áńéčěüň!"
@@ -7043,7 +7221,7 @@ msgstr "Ď áńéčěüň čýńáň đńÝđĺé íá ĺßíáé áęÝńáéďň áńéčěüň!"
msgid "CUPS server IP"
msgstr "IP äéĺýčőíóç ĺîőđçńĺôçôŢ CUPS:"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Čýńá"
@@ -7052,22 +7230,13 @@ msgstr "Čýńá"
msgid "Automatic CUPS configuration"
msgstr "Boot Ôýđďő Ńýčěéóç"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Ĺíôďđéóěüň óőóęĺőţí..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "ÄďęéěŢ čőńţí"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "ĐńďóčŢęç ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7080,14 +7249,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Ôďđéęüň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7105,12 +7274,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7124,11 +7293,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7138,35 +7307,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "ÄďęéěŢ čőńţí"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "áíé÷íĺýčçęĺ ôď %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7174,43 +7347,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Ôďđéęüň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7218,7 +7391,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7226,73 +7399,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Óĺ đďéÜ óĺéńéáęŢ đüńôá ĺßíáé óőíäĺäĺěÝíď ôď modem óáň;"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Ńőčěßóĺéň ÷ńůěÜôůí"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "ĹđéëďăÝň áđďěĺěáęńőóěÝíďő lpd ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7303,30 +7486,30 @@ msgstr ""
"ĺęôőđţóĺůí, ęáčţň ęáé ôď üíďěá ôçň ďőńÜň ôçí ďđďßá čá \n"
"÷ńçóéěďđďéŢóĺôĺ óĺ áőôüí ôďí ĺîőđçńĺôçôŢ."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "ÁđďěĺěáęńőóěÝíď äéęôőáęü üíďěá:"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "ÁđďěĺěáęńőóěÝíď äéęôőáęü üíďěá ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "ÁđďěĺěáęńőóěÝíď äéęôőáęü üíďěá ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "ĹđéëďăÝň ĺęôőđůôŢ SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7341,35 +7524,35 @@ msgstr ""
"đńüóâáóç, ęáčţň ęáé ďđďéáäŢđďôĺ áđáńáßôçôç đëçńďöďńßá đĺńß ęůäéęďý \n"
"÷ńŢóôç, ëÝîçň ęëĺéäß ęáé ôďěÝá Ţ ďěÜäáň ĺńăáóßáň."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Äéęôőáęü üíďěá SMB ĺîőđçńĺôçôŢ:"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP äéĺýčőíóç SMB ĺîőđçńĺôçôŢ:"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "źíďěá đüńďő:"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "ĎěÜäá ĺńăáóßáň:"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Ĺßôĺ ôď üíďěá ôďő ĺîőđçńĺôçôŢ Ţ ç IP ôďő đńÝđĺé íá äďčďýí!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Ôď üíďěá ăéá ôçí Samba ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7393,7 +7576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7402,7 +7585,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7410,11 +7593,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "ĹđéëďăÝň ĺęôőđůôŢ NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7428,28 +7611,28 @@ msgstr ""
"ôď üíďěá ôďő ĺęôőđůôŢ óôďí ďđďßď ĺđéčőěĺßôĺ đńüóâáóç, ęáčţň ęáé\n"
"ďđďéáäŢđďôĺ áđáńáßôçôç đëçńďöďńßá đĺńß ęůäéęďý ÷ńŢóôç ęáé ëÝîçň ęëĺéäß."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "ĹîőđçńĺôçôŢň ĺęôőđţóĺůí"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "źíďěá ďőńÜň ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Ôď üíďěá ôďő ĺîőđçńĺôçôŢ NCP ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Ôď üíďěá ôçň NCP ďőńÜň ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "ĹđéëďăÝň ĺęôőđůôŢ socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7460,20 +7643,20 @@ msgstr ""
"Ăéá íá ĺęôőđţóĺôĺ óĺ Ýíáí ĺęôőđůôŢ socket, đńÝđĺé íá äţóĺôĺ ôď \n"
"äéęôőáęü üíďěá ôďő ĺęôőđůôŢ ęáé đńďáéńĺôéęÜ ôďí áńéčěü čýńáň."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "źíďěá ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "źíďěá ĺęôőđůôŢ ëĺßđĺé!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
#, fuzzy
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
@@ -7484,11 +7667,11 @@ msgstr ""
"đńÝđĺé íá ôçńĺß ĺßôĺ ôéň CUPS ĺßôĺ ôéň Foomatic đńďäéáăńáöÝň. ź÷é đůň äĺí "
"őđďóôçńßćďíôáé üëďé ďé URI ôýđďé áđü üëá ôá spoolers."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "¸íá óůóôü URI đńÝđĺé íá ĺéóá÷čĺß!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7498,29 +7681,25 @@ msgstr ""
"Ôá đĺäßá ĐĺńéăńáöŢ ęáé Ôďđďčĺóßá äĺí ÷ńĺéÜćĺôáé íá \n"
"óőěđëçńůčďýí. Ĺßíáé áđëÜ ó÷üëéá ăéá ôďőň ÷ńŢóôĺň."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "źíďěá ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "ĐĺńéăńáöŢ"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ôďđďčĺóßá"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7535,26 +7714,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Óůóôü;"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "ĹđéëďăŢ ěďíôÝëďő ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Ôß ôýđďő ĺęôőđůôŢ Ý÷ĺôĺ;"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7563,18 +7742,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7584,12 +7763,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7597,7 +7776,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7610,7 +7789,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7620,34 +7799,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "ĹđéëďăŢ %s đńÝđĺé íá ĺßíáé áęÝńáéďň áńéčěüň!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "ĹđéëďăŢ %s đńÝđĺé íá ĺßíáé áńéčěüň!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "ĹđéëďăŢ %s ĺęôüň ďńßďő!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "ČÝëĺôĺ íá ĺęôőđţóĺôĺ ěéá äďęéěáóôéęŢ óĺëßäá;"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "ÄďęéěŢ čőńţí"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7655,44 +7834,44 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "ĹęôőđůôŢň"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Ôőđéęü"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7708,7 +7887,7 @@ msgstr ""
"\n"
"¸ăéíĺ óůóôÜ ç ĺęôýđůóç"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7718,16 +7897,16 @@ msgstr ""
"Ěđďńĺß íá đĺńÜóĺé ęÜđďéďň ÷ńüíďň ěÝ÷ńé ç ĺęôýđůóç íá îĺęéíŢóĺé.\n"
"¸ăéíĺ óůóôÜ ç ĺęôýđůóç;"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "ĘáíÝíáň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7736,15 +7915,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7753,49 +7932,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7805,7 +7984,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7814,30 +7993,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Ęëĺßóéěď"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Ęëĺßóéěď"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "ĹđéëďăÝň ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7845,37 +8035,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7885,51 +8075,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7937,63 +8127,63 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Ôď üíďěá ôďő ĺęôőđůôŢ đńÝđĺé íá đĺńéÝ÷ĺé ěüíď ăńÜěěáôá, áńéčěďýň ęáé ôďí "
"÷áńáęôŢńá underscore"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "ĘáíÝíáň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Ĺęęßíçóç óýíäĺóçň..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Ńýčěéóç äéęôýďő"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8001,12 +8191,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Ńýčěéóç äéęôýďő"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8016,34 +8206,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Đďéü óýóôçěá ĺęôýđůóçň čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Őřçëü"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Đáńáíďúęü"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8058,12 +8248,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Đďéü óýóôçěá ĺęôýđůóçň čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8077,66 +8267,66 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "ĹđéëďăŢ Spooler EęôőđůôŢ"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Đďéü óýóôçěá ĺęôýđůóçň čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Ńýčěéóç ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "ĹđéëďăÝň ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Ńýčěéóç ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Čá čÝëáôĺ íá ńőčěßóĺôĺ Ýíáí ĺęôőđůôŢ;"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "ĹęôőđůôŢň"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8147,7 +8337,7 @@ msgstr ""
"ŐđÜń÷ďőí ďé áęüëďőčĺň ďőńÝň ĺęôýđůóçň.\n"
"Ěđďńĺßôĺ íá đńďóčÝóĺôĺ ęé Üëëĺň Ţ íá áëëÜîĺôĺ ôéň őđÜń÷ďőóĺň."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8157,139 +8347,143 @@ msgstr ""
"ŐđÜń÷ďőí ďé áęüëďőčĺň ďőńÝň ĺęôýđůóçň.\n"
"Ěđďńĺßôĺ íá đńďóčÝóĺôĺ ęé Üëëĺň Ţ íá áëëÜîĺôĺ ôéň őđÜń÷ďőóĺň."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Ńýčěéóç äéęôýďő"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "ĘáíďíéęŢ ĘáôÜóôáóç"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "¸îďäďň"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Óýíäĺóç Internet"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "ĹđéëďăŢ ěďíôÝëďő ĺęôőđůôŢ"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Ôďđéęüň ĺęôőđůôŢň"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ČÝëĺôĺ íá ĺđáíĺęęéíŢóĺôĺ ôď äßęôőď;"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8374,24 +8568,61 @@ msgstr "Ďé ęůäéęďß đńüóâáóçň ĺßíáé áíüěďéďé. ĐńďóđáčŢóôĺ îáíÜ!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Äĺí ěđďńţ íá đńďóčÝóů ęáôÜôěçóç óôď _ěďńöďđďéçěÝíď_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Äĺí ěđďńţ íá áđďčçęĺýóů ôď áń÷ĺßď %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "áđďôő÷ßá mkraid"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "áđďôő÷ßá mkraid (ěŢđůň áđďőóéÜćďőí ôá raidtools;)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Äĺí őđÜń÷ďőí áńęĺôÝň ęáôáôěŢóĺéň ăéá RAID ĺđéđÝäďő %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Áőôü ôď ĺđßđĺäď đńÝđĺé íá ÷ńçóéěďđďéçčĺß ěĺ đńďóď÷Ţ. ĘÜíĺé ôď óýóôçěÜ óáň\n"
+"đéď ĺőęďëü÷ńçóôď, áëëÜ đďëý ĺőáßóčçôď. Äĺí đńÝđĺé íá ÷ńçóéěďđďéçčĺß óĺ "
+"óýóôçěá\n"
+"óőíäĺäĺěÝíď óôď Internet Ţ LAN. Äĺí őđÜń÷ďőí ëÝîĺéň ęëĺéäéÜ."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Ěĺ áőôü ôď ĺđßđĺäď áóöáëĺßáň ĺßíáé äőíáôŢ ç ÷ńŢóç ôďő óőóôŢěáôďň óôď \n"
+"Internet ůň ĺîőđçńĺôçôŢ. Ç áóöÜëĺéá ĺßíáé áńęĺôÜ őřçëŢ ţóôĺ íá äÝ÷ĺôáé\n"
+"ôáőôü÷ńďíĺň óőíäÝóĺéň áđü đďëëďýň đĺëÜôĺň."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Ńýčěéóç LÁÍ"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "ĹđéëďăÝň"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Ĺęęßíçóç ôďő ALSA (Advanced Linux Sound Architecture) óőóôŢěáôďň Ţ÷ďő"
@@ -8449,7 +8680,7 @@ msgstr ""
"Ôď HardDrake ôńÝ÷ĺé ěéá áíß÷íĺőóç őëéęďý ęáé đńďáéńĺôéęÜ ńőčěßćĺé\n"
"ôď íÝď/áëëáăěÝíď őëéęü."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8528,7 +8759,7 @@ msgstr ""
"Linux Virtual ĹîőđçńĺôçôŢň, ÷ńçóéěďđďéĺßôáé ăéá íá äçěéďőńăŢóĺé Ýíáí őřçëŢň\n"
"áđüäďóçň ęáé äéáčĺóéěüôçôáň ĺîőđçńĺôçôŢ."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8607,7 +8838,7 @@ msgstr ""
"áđü đńďôüęďëá üđůň ôď NFS ęáé ôď NIS. ĐńÝđĺé íá ĺßíáé ĺíĺńăďđďéçěÝíď óĺ \n"
"óőóôŢěáôá đďő äńďőí ůň ĺîőđçńĺôçôÝň ôÝôďéůí đńďôďęüëůí."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8709,7 +8940,7 @@ msgstr "Éíôĺńíĺô"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "ĘáôÜóôáóç óőóôŢěáôďň"
@@ -8833,6 +9064,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "ĘÝíôńď ĹëÝă÷ďő"
@@ -8936,6 +9168,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Đáńáęáëţ áđďóőíäĺčĺßôĺ ęáé ěĺôÜ đáôŢóôĺ Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Đáńáęáëţ ĺđáíáóőíäĺčĺßôĺ ůň %s ăéá ĺíĺńăďđďßçóç ôůí áëëáăţí"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8944,6 +9185,161 @@ msgstr ""
"Äĺí ěđďńţ íá äéáâÜóů ôďí đßíáęá ęáôáôěŢóĺůí, ĺßíáé đďëý ęáôĺóôńáěÝíďň :(\n"
"Čá đńďóđáčŢóů íá óőíĺ÷ßóů áöáéńţíôáň ôéň ëáíčáóěÝíĺň ęáôáôěŢóĺéň"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "ÂÜóç ÄĺäďěÝíůí"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "ÂÜóç ÄĺäďěÝíůí"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "ĹîőđçńĺôçôŢň NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "ĹîőđçńĺôçôŢň NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "ĐńďóčŢęç ÷ńŢóôç"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "ĐĺëÜôçň DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_ÂďŢčĺéá"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Äĺ óőíäÝčçęĺ"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "ÄéáăńáöŢ"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "ĹđéëÝîôĺ áń÷ĺßď"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "ĐńďóčŢęç ÷ńŢóôç"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "ĐĺëÜôçň DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Ńýčěéóç..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ĺđáíáńýčěéóç"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôç äéóęÝôôá Ĺęęßíçóçň óôďí ďäçăü %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôôáň"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "ÓöÜëěá!"
@@ -8984,6 +9380,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Đńďĺôďéěáóßá äéóęÝôáň áőôüěáôçň ĺăęáôÜóôáóçň"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8992,47 +9393,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Óőă÷áńçôŢńéá!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "ĹăęáôÜóôáóç"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "ĐńďóčŢęç ÷ńŢóôç"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Ěďńöďđďßçóç áń÷ĺßďő loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9040,15 +9434,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9056,709 +9442,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "ÓöÜëěá ęáôÜ ôçí áíÜăíůóç ôďő áń÷ĺßďő %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "ĹđéëďăŢ đáęÝôůí"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "ÄéáăńáöŢ ďőńÜň"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Áöáßńĺóç Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Ęůäéęü üíďěá"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Đáńáęáëţ đńďóđáčŢóôĺ îáíÜ"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Đáńáęáëţ đńďóđáčŢóôĺ îáíÜ"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "îáíáđëçęôńďëďăŢóôĺ ôďí ęůäéęü đńüóâáóçň"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Óýíäĺóç LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Ôńüđďň óýíäĺóçň ĺęôőđůôŢ"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ äéáńýčěéóç đëçęôńďëďăßďő."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "ÓőóęĺőŢ äéęôýďő"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Ôýđďň"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Ęůäéęü üíďěá"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Ĺíôďđéóěüň óęëçńďý äßóęďő"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Ęůäéęü üíďěá"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Ěĺ ńďäÜęé"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Ěĺ ńďäÜęé"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "ĐáńÜěĺôńďé ďäçăďý"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Đńďĺô. óőó. áń÷."
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "ÓőóęĺőŢ đďíôéęéďý: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "ĹđéëďăÝň"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Óĺ đďéÜ óĺéńéáęŢ đüńôá ĺßíáé óőíäĺäĺěÝíď ôď modem óáň;"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Óýíäĺóç LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Ôńüđďň óýíäĺóçň ĺęôőđůôŢ"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "ĹđáíáöďńÜ áđü äéóęÝôôá"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "śëëď"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "ĹăęáôÜóôáóç óőóôŢěáôďň"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "ĹđáíáöďńÜ áđü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "ĹđáíáöďńÜ áđü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "ĐńďóáńěďóěÝíď"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_ÂďŢčĺéá"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Đńďçăďýěĺíď"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "ĘáôÜóôáóç:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "ĹđáíáöďńÜ áđü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Ĺđüěĺíď -ť"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "ĹđéëďăŢ đáęÝôůí"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Čá ĺăęáôáóôáčďýí ôá đáńáęÜôů đáęÝôá"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "ÁđďčŢęĺőóç óĺ áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Ńýčěéóç LÁÍ"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Ńýčěéóç LÁÍ"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Đńďĺô. óőó. áń÷."
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9790,7 +10239,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9799,7 +10248,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9840,7 +10289,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9868,12 +10317,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -9890,7 +10344,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9930,7 +10384,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9941,7 +10395,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9954,7 +10408,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9998,103 +10452,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Ç ĺăęáôÜóôáóç ôďő %s áđÝôő÷ĺ. ĐńďęëŢčçęĺ ôď áęüëďőčď óöÜëěá:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Ĺńăáëĺßá ęďíóüëáň"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "ĘÝíôńď ĹëÝă÷ďő"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Ăéá ĺéäéęďýň"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Đďíôßęé"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "źíďěá đüńďő:"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "ĹęôőđůôŢň"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Ďäçăüň Ńýčěéóçň Äéęôýďő"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Đéóôďđďßçóç ôáőôüôçôáň"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "ĹđéëďăŢ đáęÝôůí"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "¸îďäďň"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "đüńôá"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Ěđďńĺßôĺ íá ĺđéëÝîĺôĺ ęáé Üëëĺň ăëţóóĺň đďő čá ĺßíáé äéáčÝóéěĺň ěĺôÜ ôď "
+"đÝńáň ôçň ĺăęáôÜóôáóçň"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Ńýčěéóç äéęôýďő (%d adapters)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Đńďößë: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "ÄéáăńáöŢ đńďößë..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Đńďößë ăéá äéáăńáöŢ:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "ÍÝď đńďößë..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "źíďěá óőóôŢěáôďň: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Đńüóâáóç óôď Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Ôýđďň:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Đýëç äéęôýďő:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "ÄéĺđéöÜíĺéá:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "ĘáôÜóôáóç:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Ńýčěéóç Đńüóâáóçň óôď Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Ńýčěéóç LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Ďäçăüň"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "ÄéĺđéöÜíĺéá"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Đńůôüęďëëď"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "ĘáôÜóôáóç:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Ńýčěéóç ôďđéęďý äéęôýďő..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "ĚÜăďň..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Ĺíĺńăďđďßçóç"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ... ĹöáńěďăŢ ńőčěßóĺůí"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "ÓőíäÝčçęĺ"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Äĺ óőíäÝčçęĺ"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Óýíäĺóç..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Áđďóýíäĺóç..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Äĺí Ý÷ĺôĺ ęÜđďéá ńőčéóěÝíç äéĺđéöÜíĺéá.\n"
+"Ńőčěßóôĺ ôéň ęÜíďíôáň ęëßę óôď 'Ńýčěéóç'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Ńýčěéóç LÁÍ"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "ĐńďóáńěďăÝáň %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Đńůôüęďëëď Ĺęęßíçóçň"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Îĺęßíçóáí óôçí ĺęęßíçóç óőóôŢěáôďň"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "đĺëÜôçň DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Äĺí Ý÷ĺôĺ óýíäĺóç ěĺ ôď internet.\n"
+"ÄçěéďőńăŢóôĺ ěßá ęÜíďíôáň ęëßę óôď 'Ńýčěéóç'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Ńýčěéóç óýíäĺóçň Äéáäéęôýďő (internet)"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Ńýčěéóç Óýíäĺóçň Äéáäéęôýďő (internet)"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Ôýđďň óýíäĺóçň: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "ĐáńÜěĺôńďé"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Đýëç äéęôýďő"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "ĘÜńôá Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "ĐĺëÜôçň DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "÷ńŢóç: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "źíďěá áńčńţěáôďň (module)"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "ĚÝăĺčďň"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "äçěéďőńăßá äéóęÝôôáň ĺęęßíçóçň"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "ĺî' ďńéóěďý"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "ÓöÜëěá DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Ýęäďóç đőńŢíá"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "ĂĺíéęÜ"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Đĺńéď÷Ţ Đńď÷ůńçěÝíůí"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "đńďáéńĺôéęÝň ĺđéëďăÝň ôďő mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "ĐńďóčŢęç áńčńţěáôďň (module)"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "ěĺôÜ âßáň"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "áí ÷ńĺéÜćĺôáé"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "đáńÜëĺéřç ôůí áńčńůěÜôůí (modules) scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "đáńÜëĺéřç ôůí áńčńůěÜôůí (modules) raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "ÁđďěÜęńőíóç áńčńţěáôďň (module)"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "¸îďäďň (Output)"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Äçěéďőńăßá äéóęÝôôáň"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Óéăďőńĺőôĺßôĺ đůň Ýíá ěÝóď ĺßíáé đáńüí ăéá ôç óőóęĺőŢ %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Äĺí őđÜń÷ĺé ěÝóď ăéá ôç óőóęĺőŢ %s.\n"
+"Đáńáęáëţ ĺéóÜăĺôĺ Ýíá."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Áäőíáěßá fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Áäőíáěßá óůóôďý ôĺńěáôéóěďý ôďő mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Ďëďęëçńţčçęĺ"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "áđáăüńĺőóç"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10103,122 +10985,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Ěďńöďđ. ęáôáôěŢó."
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Ńýčěéóç LÁÍ"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Óçěĺßď óýíäĺóçň"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "ĹđéëÝîôĺ ęáôáôěŢóĺéň đńďň ěďńöďđďßçóç"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Ăńáöĺßď"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Áęýńůóç"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "ĹęôőđůôŢň"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "ĹăęáôÜóôáóç óőóôŢěáôďň"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "ĹđéëÝîôĺ áń÷ĺßď"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "ĚŢíőěá Init"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő óôď óýóôçěÜ óáň!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "ĹăęáôÜóôáóç"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő óôď óýóôçěÜ óáň!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "¸îďäďň"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet ĺíĺńăďđďéçěÝíďň"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10230,31 +11111,31 @@ msgstr ""
"\n"
"Ôß čÝëĺôĺ íá ęÜíĺôĺ;"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "áđĺíĺńăďđďßçóç"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "Üęőńď"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ĺđáíáńýčěéóç"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Áđĺíĺńăďđďßçóç ĺîőđçńĺôçôţí..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet áđĺíĺńăďđďéçěÝíďň"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet áđĺíĺńăďđďéçěÝíďň"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10266,19 +11147,19 @@ msgstr ""
"\n"
"Ôß čÝëĺôĺ íá ęÜíĺôĺ;"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ĺíĺńăďđďßçóç"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Ĺíĺńăďđďßçóç ĺîőđçńĺôçôţí..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet ĺíĺńăďđďéçěÝíďň"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10293,21 +11174,21 @@ msgstr ""
"Óçěĺßůóç: ×ńĺéÜćĺóôĺ Ýíáí đńďóáńěďăÝá äéęôýďő Ýôóé ţóôĺ íá äçěéďőńăŢóĺôĺ Ýíá "
"ôďđéęü äßęôőď (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "ÄéĺđéöÜíĺéá %s (÷ńŢóç áńčńţěáôďň %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "ÄéĺđéöÜíĺéá %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő óôď óýóôçěÜ óáň!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10315,11 +11196,11 @@ msgstr ""
"Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő Ethernet óôď óýóôçěÜ óáň. Đáńáęáëţ "
"÷ńçóéěďđďéĺßóôĺ ôď đńüăńáěěá ńýčěéóçň őëéęďý."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "ÓőóęĺőŢ äéęôýďő"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10334,7 +11215,7 @@ msgstr ""
"\n"
"Čá ńőčěéóôĺß ôď Ôďđéęü óáň Äßęôőď ěĺ áőôüí ôďí đńďóáńěďăÝá."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10342,12 +11223,12 @@ msgstr ""
"Đáńáęáëţ ĺđéëÝîôĺ ôé đńďóáńěďăÝáň äéęôýďő čá óőíäĺčĺß\n"
"óôď ôďđéęü óáň äßęôőď."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10357,17 +11238,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Boot Ôýđďő Ńýčěéóç"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10378,7 +11259,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10390,34 +11271,34 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP äéĺýčőíóç ĺîőđçńĺôçôŢ CUPS:"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ĐéčáíŢ ĺđáíá÷ńçóéěďđďßçóç ôçň äéĺýčőíóçň LAN óôçí ôńÝ÷ďőóá ńýčěéóç ôďő %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Áíé÷íĺýôçęĺ ńýčěéóç firewall!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10425,20 +11306,20 @@ msgstr ""
"Đńďóď÷Ţ! Áíé÷íĺýôçęĺ őđÜń÷ďőóá ńýčěéóç firewall. şóůň ÷ńĺéáóôďýí ďńéóěÝíĺň"
"\"÷ĺéńďęßíçôĺň\" ńőčěßóĺéň ěĺôÜ ôçí ĺăęáôÜóôáóç."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Ńýčěéóç..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ńýčěéóç, ĺăęáôÜóôáóç ëďăéóěéęďý, ĺęęßíçóç ĺîőđçńĺôçôţí..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Đńüâëçěá ęáôÜ ôçí ĺăęáôÜóôáóç ôďő đáęÝôďő %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10449,23 +11330,23 @@ msgstr ""
"őđďëďăéóôÝň óôď ôďđéęü óáň äßęôőď, ěĺ ôçí ÷ńŢóç áőôüěáôçň ńýčěéóçň äéęôýďő "
"(DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Ç ńýčěéóç Ý÷ĺé Ţäç ăßíĺé, áëëÜ áőôŢ ôç óôéăěŢ ĺßíáé áđĺíĺńăďđďéçěÝíç."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Ç ńýčěéóç Ý÷ĺé Ţäç ăßíĺé, ęáé áőôŢ ôç óôéăěŢ ĺßíáé ĺíĺńăďđďéçěÝíç."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ď Ĺđéěĺńéóěüň óýíäĺóçň Internet äĺí Ý÷ĺé ńőčěéóôĺß đďôÝ."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Ńýčěéóç ĺđéěĺńéóěďý óýíäĺóçň Äéáäéęôýďő (internet)"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10480,211 +11361,6 @@ msgstr ""
"\n"
"ĘÜíôĺ ęëßę óôď Ńýčěéóç ăéá íá îĺęéíŢóĺôĺ ôďí ďäçăü ĺăęáôÜóôáóçň."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ńýčěéóç äéęôýďő (%d adapters)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Đńďößë: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "ÄéáăńáöŢ đńďößë..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Đńďößë ăéá äéáăńáöŢ:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "ÍÝď đńďößë..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "źíďěá óőóôŢěáôďň: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Đńüóâáóç óôď Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Ôýđďň:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Đýëç äéęôýďő:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "ÄéĺđéöÜíĺéá:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "ĘáôÜóôáóç:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ńýčěéóç Đńüóâáóçň óôď Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Ńýčěéóç LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ďäçăüň"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "ÄéĺđéöÜíĺéá"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Đńůôüęďëëď"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "ĘáôÜóôáóç:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Ńýčěéóç ôďđéęďý äéęôýďő..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "ĚÜăďň..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Ĺíĺńăďđďßçóç"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ... ĹöáńěďăŢ ńőčěßóĺůí"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "ÓőíäÝčçęĺ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Äĺ óőíäÝčçęĺ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Óýíäĺóç..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Áđďóýíäĺóç..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Äĺí Ý÷ĺôĺ ęÜđďéá ńőčéóěÝíç äéĺđéöÜíĺéá.\n"
-"Ńőčěßóôĺ ôéň ęÜíďíôáň ęëßę óôď 'Ńýčěéóç'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Ńýčěéóç LÁÍ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "ĐńďóáńěďăÝáň %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Đńůôüęďëëď Ĺęęßíçóçň"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Îĺęßíçóáí óôçí ĺęęßíçóç óőóôŢěáôďň"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "đĺëÜôçň DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Äĺí Ý÷ĺôĺ óýíäĺóç ěĺ ôď internet.\n"
-"ÄçěéďőńăŢóôĺ ěßá ęÜíďíôáň ęëßę óôď 'Ńýčěéóç'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Ńýčěéóç óýíäĺóçň Äéáäéęôýďő (internet)"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Ńýčěéóç Óýíäĺóçň Äéáäéęôýďő (internet)"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Ôýđďň óýíäĺóçň: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "ĐáńÜěĺôńďé"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Đýëç äéęôýďő"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "ĘÜńôá Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "ĐĺëÜôçň DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Ńýčěéóç ĺđéđÝäďő áóöáëĺßáň"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "ĘÝíôńď ĹëÝă÷ďő"
@@ -10693,94 +11369,130 @@ msgstr "ĘÝíôńď ĹëÝă÷ďő"
msgid "Choose the tool you want to use"
msgstr "ĹđéëÝîôĺ ôď ĺńăáëĺßď đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Ęáíáäéęü (ĘĺěđÝę)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Ĺőńţđç"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ăáëëéęü"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Éóëáíäéęü"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Ĺőńţđç"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "óĺéńéáęü"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "ĐńďęëŢčçęĺ óöÜëěá ęáôÜ ôçí ĺăęáôÜóôáóç ôůí đáęÝôůí:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10824,7 +11536,7 @@ msgstr "Äĺí ěđďńţ íá îĺęéíŢóů ôď live upgrade!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10842,7 +11554,7 @@ msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr "/Áń÷ĺßď/_Áíďéăěá"
+msgstr "/Áń÷ĺßď/ś_íďéăěá"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
@@ -10850,7 +11562,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/Áń÷ĺßď/Áđď_čŢęĺőóç"
+msgstr "Áń÷ĺßď/Áđď_čŢęĺőóç"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -10870,11 +11582,7 @@ msgstr "/_ĹđéëďăÝň"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/ĹđéëďăÝň/ÔÝóô"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_ÂďŢčĺéá"
+msgstr "/ĹđéëďăÝň/Ôĺóô"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
@@ -10939,7 +11647,7 @@ msgstr "Çěĺńďëüăéď"
msgid "Content of the file"
msgstr "Đĺńéĺ÷üěĺíď ôďő áń÷ĺßďő"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10948,12 +11656,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "đáńáęáëţ đĺńéěÝíĺôĺ, ĺđĺîĺńăáóßá áń÷ĺßďő: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "ĹëáöńéÜ ńýčěéóç"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -10965,68 +11673,99 @@ msgstr ""
"Ĺäţ, čá ěđďńÝóĺôĺ íá ńőčěßóĺôĺ ôďőň http ęáé ftp proxies\n"
"ěĺ Ţ ÷ůńßň login ęáé ęůäéęü đńüóâáóçň\n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "źíďěá äéęôýďő"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "ĹîőđçńĺôçôŢň NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "ĹîőđçńĺôçôŢň ôá÷őäńďěĺßďő Postfix, ĺîőđçńĺôçôŢň íĺţí Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "ĹîőđçńĺôçôŢň NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "ĹîőđçńĺôçôŢň NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "ĹîőđçńĺôçôŢň"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "ĹîőđçńĺôçôŢň ĺęôőđţóĺůí"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "ĹîőđçńĺôçôŢň"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Ěďńöďđďßçóç"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Ńőčěßóĺéň ÷ńůěÜôůí"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "ÁđďčŢęĺőóç Ůň"
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "äĺí âńÝčçęĺ serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ĺîďěďßůóç ôńßôďő đëŢęôńďő;"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Ĺíôďđéóěüň óőóęĺőţí..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11070,6 +11809,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Ńýčěéóç Firewalling"
@@ -11485,10 +12236,6 @@ msgid "Multimedia - Sound"
msgstr "ĐďëőěÝóá - š÷ďň"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Ĺńăáëĺßá"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Ôĺęěçńßůóç"
@@ -11592,10 +12339,6 @@ msgstr ""
"ęáé Web Browsers"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Áń÷ĺéďčÝôçóç, ĺîďěďéůôÝň, đáńáęďëďýčçóç"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Äéá÷ĺßńçóç đńďóůđéęţí ďéęďíďěéęţí äĺäďěÝíůí"
@@ -11641,1484 +12384,158 @@ msgstr "ĐďëőěÝóá - ĹăăńáöŢ CD"
msgid "Scientific Workstation"
msgstr "Óôáčěüň Ĺńăáóßáň Ĺđéóôçěďíéęţí ĺöáńěďăţí"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Áęýńůóç"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Ďëďęëçńţčçęĺ"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "ĹđéëÝîôĺ ôďí ĺî' ďńéóěďý ÷ńŢóôç:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ěđďńĺßôĺ ôţńá íá äţóĺôĺ đáńáěÝôńďőň ăéá ôďí ďäçăü %s"
-
-#~ msgid "mount failed"
-#~ msgstr "óýíäĺóç áđÝôő÷ĺ"
-
-#~ msgid "Low"
-#~ msgstr "×áěçëü"
-
-#~ msgid "Medium"
-#~ msgstr "ĚÝôńéď"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Ëßăĺň âĺëôéţóĺéň áóöáëĺßáň, ç ęýńéá ĺßíáé üôé őđÜń÷ďőí đĺńéóóüôĺńĺň \n"
-#~ "đńďĺéäďđďéŢóĺéň ęáé Ýëĺă÷ďé."
-
-#~ msgid "Boot mode"
-#~ msgstr "Ëĺéôďőńăßá ĺęęßíçóçň"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ăéá ĺéäéęďýň"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Ôď GNU/Linux ÷ĺéńßćĺôáé ôçí ţńá óĺ GMT (\"Greenwich Mean Time\" Ţ \n"
-#~ "\"ĚĺóçěâńéíŢ żńá ĂęńŢíďőéôň\") ęáé ôçí ěĺôáôńÝđĺé óĺ ôďđéęŢ ţńá\n"
-#~ "âÜóĺé ôçň ćţíçň ţńáň đďő čá ĺđéëÝîĺôĺ."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Óýíäĺóç óôď äéáäßęôőď (internet)"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet)"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Ńýčěéóç óýíäĺóçň óôď äßęôőď (ôďđéęü Ţ Äéáäßęôőď)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Óĺ đďéüí äßóęď čÝëĺôĺ íá ěĺôáęéíçčĺßôĺ;"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "ôď fsck áđÝôő÷ĺ ěĺ ęůäéęü ĺîüäďő %d Ţ óŢěá %d"
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Đëçńďöďńßĺň"
+#~ msgid "Choose options for server"
+#~ msgstr "Ńőčěßóĺéň X server"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Óôáčěüň ĺńăáóßáň Gnome"
+#~ msgid "Monitor not configured"
+#~ msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-#~ msgid "authentification"
-#~ msgstr "áőčĺíôéęüôçôá"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ç ęÜńôá ăńáöéęţí äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-#~ msgid "user"
-#~ msgstr "÷ńŢóôçň"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Äĺí Ý÷ďőí ĺđéëĺăĺß áíáëýóĺéň áęüěç"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "¸îďäďň"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Áőôüěáôç óýíäĺóç áđďóđţěĺíůí ěďíÜäůí áđďčŢęĺőóçň"
-
-#~ msgid "Active"
-#~ msgstr "Ĺíĺńăü"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "ź÷é"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "¸íáň ĺęôőđůôŢň ôýđďő \"%s\" ĺíôďđßóôçęĺ óôď "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "ÓőóęĺőŢ ôďđéęďý ĺęôőđůôŢ"
-
-#~ msgid "Printer Device"
-#~ msgstr "ÓőóęĺőŢ ĺęôőđůôŢ"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Ôď áń÷ĺßď óőóęĺőŢň ëĺßđĺé!"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "ĘáôÜóôáóç óőóôŢěáôďň"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "śëëď"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ äéáńýčěéóç đëçęôńďëďăßďő."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Ôýđďň: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Ńýčěéóç ×"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "ÓőóęĺőŢ ĺęôőđůôŢ"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Áęýńůóç"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ďę"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Ęëĺßóéěď"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Ĺęęßíçóç óýíäĺóçň..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Ęëĺßóéěď óýíäĺóçň..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "Ç óýíäĺóç äĺí Ýęëĺéóĺ.\n"
-#~ "ĐńďóđáčŢóôĺ íá ôď ęÜíĺôĺ ěüíďň óáň ôńÝ÷ďíôáň\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "ůň root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ôď óýóôçěá äĺí ĺßíáé óőíäĺäĺěÝíď óôď Äéáäßęôőď."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "ĹđéëÝîôĺ ôď ěÝăĺčďň đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#~ msgid "Total size: "
-#~ msgstr "Óőíďëéęü ěÝăĺčďň: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ, "
-
-#~ msgid "Total time "
-#~ msgstr "Óőíďëéęüň ÷ńüíďň "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Íá ÷ńçóéěďđďéŢóů ôéň őđÜń÷ďőóĺň ńőčěßóĺéň ăéá ôá ×11;"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Óĺ đďéÜ óőóęĺőŢ ĺßíáé óőíäĺäĺěÝíďň ď ĺęôőđůôŢň óáň;\n"
-#~ "(óçěĺßůóç: ôď /dev/lp0 áíôéóôďé÷ĺß óôď LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Đńďóď÷Ţ, ď đńďóáńěďăÝáň äéęôýďő ĺßíáé Ţäç ńőčěéóěÝíďň. Čá ôďí "
-#~ "ĺđáíáńőčěßóů."
-
-#~ msgid "New"
-#~ msgstr "ÍÝď"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "źíďěá áđďěĺěáęńőóěÝíçň ďőńÜň"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ 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 ĺéóÜăĺôĺ `none' ăéá ęáíÝíá) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "áäőíáěßá áíďßăěáôďň ôďő /etc/sysconfig/autologin ăéá áíÜăíůóç: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "ČÝëĺôĺ íá ĺđáíĺęęéíŢóĺôĺ ôď äßęôőď;"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Óőěöůíĺßôĺ;"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Čá ĺđáíĺęęéíŢóů ôçí đáńáęÜôů óőóęĺőŢ äéęôýďő:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Čá ĺđáíĺęęéíŢóů ôçí óőóęĺőŢ äéęôýďő %s. Óőěöůíĺßôĺ;"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Ĺęôüň ęáé áí ĺßóôĺ óßăďőńďé üôé äĺí ĺßíáé Ýôóé, ç óőíçčéóěÝíç ĺđéëďăŢ\n"
-#~ "ĺßíáé \"/dev/hda\" (ď đńţôďň äßóęďň óôď đńţôď ęáíÜëé), Ţ \"/dev/sda\n"
-#~ "(ď đńţôďň SCSI äßóęďň)."
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "ĹđéëÝîôĺ ôďí ĺî' ďńéóěďý ÷ńŢóôç:"
-
-#~ msgid "Spooler: "
-#~ msgstr "Spooler: "
-
-#~ msgid "Test the mouse here."
-#~ msgstr "ÄďęéěÜóôĺ ôď đďíôßęé ĺäţ."
-
-#~ msgid "Press next to continue."
-#~ msgstr "ĐáôŢóôĺ ĺđüěĺíď ăéá íá óőíĺ÷ßóĺôĺ."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ ăëţóóá ăéá ĺăęáôÜóôáóç ęáé ÷ńŢóç."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "ĐńÝđĺé íá áđďäĺ÷čĺßôĺ ôďőň üńďőň ôçň Üäĺéáň ÷ńŢóçň đńéí óőíĺ÷ßóĺôĺ ôçí "
-#~ "ĺăęáôÜóôáóç.\n"
#~ "\n"
-#~ "\n"
-#~ "Đáńáęáëţ ĺđéëÝîôĺ \"Áđďäď÷Ţ\" ĺÜí óőěöůíĺßôĺ ěĺ ôďőň üńďőň.\n"
-#~ "\n"
-#~ "\n"
-#~ "Đáńáęáëţ ĺđéëÝîôĺ \"śńíçóç\" ĺÜí äĺí óőěöůíĺßôĺ. Ç ĺăęáôÜóôáóç čá "
-#~ "óôáěáôŢóĺé ÷ůńßň íá\n"
-#~ "đĺéńá÷ôĺß ôßđďôá."
+#~ "äďęéěÜóôĺ íá áëëÜîĺôĺ ęÜđďéĺň đáńáěÝôńďőň"
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr ""
-#~ "ĹđéëÝîôĺ ôçí äéáńýčěéóç đďő áíôéóôďé÷ĺß óôď đëçęôńďëüăéü óáňáđü ôçí "
-#~ "đáńáđÜíů ëßóôá"
+#~ msgid "An error occurred:"
+#~ msgstr "ĐńďęëŢčçęĺ óöÜëěá:"
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "ĹÜí čÝëĺôĺ ęáé Üëëĺň ăëţóóĺň (ĺęôüň áđü áőôŢ đďő ĺđéëÝîáôĺ óôçí áń÷Ţ)\n"
-#~ "đáńáęáëţ ĺđéëÝîôĺ ôéň áđü ôďí đáńáđÜíů ęáôÜëďăď."
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "¸îďäďň óĺ %d äĺőôĺńüëĺđôá"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "ĹđéëÝîôĺ:\n"
-#~ "\n"
-#~ " - ĐńďóáńěďóěÝíç: ĹÜí ĺßóôĺ ĺîďéęĺéůěÝíďň ěĺ ôď Linux, čá ěđďńÝóĺôĺ íá \n"
-#~ "ĺđéëÝîĺôĺ ěĺôáîý óőóôŢěáôďň ăĺíéęŢň ÷ńŢóçň, óőóôŢěáôďň áíÜđôőîçň Ţ "
-#~ "ĺîőđçńĺôçôŢ\n"
-#~ "äéęôýďő.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĹîĺéäéęĺőěÝíç: ĹÜí ĺßóôĺ đďëý ĺîďéęĺéůěÝíďň ěĺ óőóôŢěáôá GNU/Linux "
-#~ "ęáé\n"
-#~ "čÝëĺôĺ íá đńáăěáôďđďéŢóĺôĺ ěéá ĺîáéńĺôéęÜ đńďóáńěďóěÝíç ĺăęáôÜóôáóç, "
-#~ "ôüôĺ\n"
-#~ "áőôŢ ç ĺđéëďăŢ ĺßíáé ăéá óáň. Čá ěđďńÝóĺôĺ íá ĺđéëÝîĺôĺ ôýđď "
-#~ "ĺăęáôÜóôáóçň\n"
-#~ "üđůň ęáé óôçí đáńáđÜíů (\"ĐńďóáńěďóěÝíç\") ĺđéëďăŢ."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ďé ĺđéëďăÝň đďő Ý÷ĺôĺ ó÷ĺôéęÜ ěĺ ôçí ÷ńŢóç ôďő óőóôŢěáôüň óáň \n"
-#~ "ĺßíáé ďé áęüëďőčĺň:\n"
-#~ "\n"
-#~ "* Óôáčěüň ĺńăáóßáň: ĹđéëÝîôĺ áőôŢí ĺÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéçóĺôĺ ôď "
-#~ "óýóôçěÜ\n"
-#~ " óáň ęőńßůň ăéá ęáčçěĺńéíŢ ÷ńŢóç, óôď óđßôé Ţ óôď ăńáöĺßď. \n"
-#~ "\n"
-#~ "* ÁíÜđôőîç: ĹđéëÝîôĺ áőôü ĺÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď óýóôçěÜ "
-#~ "óáň\n"
-#~ " ęőńßůň ăéá áíÜđôőîç ëďăéóěéęďý. Čá ĺăęáôáóôáčĺß ěéá đëŢńçň óőëëďăŢ "
-#~ "ĺńăáëĺßůí\n"
-#~ " ăéá ěĺôáăëţôéóç, áđďóöáëěÜôůóç ęáé ěďńöďđďßçóç đçăáßďő ęţäéęá, ęáčţň "
-#~ "ęáé\n"
-#~ " äçěéďőńăßá đáęÝôůí ëďăéóěéęďý.\n"
-#~ "\n"
-#~ "* ĹîőđçńĺôçôŢň: ĹđéëÝîôĺ áőôü ĺÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď óýóôçěÜ "
-#~ "óáň\n"
-#~ " ůň ĺîőđçńĺôçôŢ, ĺßôĺ áń÷ĺßůí (NFS Ţ SMB), ĺßôĺ ĺęôőđţóĺůí (lp Ţ SMB), "
-#~ "ĺßôĺ\n"
-#~ " đéóôďđďßçóçň (NIS), âÜóçň äĺäďěÝíůí ęëđ. Óĺ áőôŢí ôçí đĺńßđôůóç, äĺí "
-#~ "čá\n"
-#~ " ĺăęáôáóôáčďýí đńÜăěáôá üđůň ôď KDE, ôď Gnome ęëđ."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ôéň ďěÜäĺň đáęÝôůí đďő ĺđéčőěĺßôĺ íá "
-#~ "ĺăęáôáóôŢóĺôĺ Ţ íá áíáâáčěßóĺôĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ôď DrakX čá đńďóäéďńßóĺé ĺÜí Ý÷ĺôĺ áńęĺôü ÷ţńď óôďí äßóęď óáň.\n"
-#~ "ĹÜí ü÷é, čá ëÜâĺôĺ ěéá đńďĺéäďđďßçóç. ĹÜí čÝëĺôĺ íá óőíĺ÷ßóĺôĺ, čá "
-#~ "ĺăęáôáóôáčďýí\n"
-#~ "üëĺň ďé ĺđéëĺăěÝíĺň ďěÜäĺň, áëëÜ čá áöáéńĺčďýí ęÜđďéá đáęÝôá ĺëÜóóďíďň "
-#~ "ĺíäéáöÝńďíôďň.\n"
-#~ "Óôď ęÜôů ěÝńďň ôçň ëßóôáň ěđďńĺßôĺ íá ĺđéëÝîĺôĺ \"ĹđéëďăŢ áíĺîÜńôçôůí "
-#~ "đáęÝôůí\". Óĺ áőôŢ\n"
-#~ "ôç đĺńßđôůóç čá đńÝđĺé íá ĺđéëÝîĺôĺ áíÜěĺóá óĺ đáńáđÜíů áđü 1000 đáęÝôá."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ áíĺîÜńôçôá üëá ôá đáęÝôá đďő ĺđéčőěĺßôĺ \n"
-#~ "íá ĺăęáôáóôŢóĺôĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ěđďńĺßôĺ íá áíáđôýîĺôĺ Ţ íá óőěđôýîĺôĺ ôď äÝíôńď ĺđéëÝăďíôáň ôéň "
-#~ "ĺđéëďăÝň\n"
-#~ "óôçí áńéóôĺńŢ ăůíßá ôďő đáńáčýńďő ôůí đáęÝôůí.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí đńďôéěÜôĺ íá íá âëÝđĺôĺ ôá đáęÝôá ôáîéíďěçěÝíá áëöáâçôéęÜ, đáôŢóôĺ\n"
-#~ "\"ĹíáëëáăŢ ďěáäďđďßçóçň\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí äĺí čÝëĺôĺ íá ëáěâÜíĺôĺ đńďĺéäďđďéŢóĺéň ăéá ĺîáńôŢóĺéň, đáôŢóôĺ\n"
-#~ "\"Áőôüěáôĺň ĺîáńôŢóĺéň\". Óçěĺéţóôĺ üôé óĺ áőôŢí ôçí đĺńßđôůóç, ç \n"
-#~ "áđďĺđéëďăŢ ĺíüň đáęÝôďő ěđďńĺß íá đńďęáëÝóĺé ôçí óéůđçëŢ áđďĺđéëďăŢ \n"
-#~ "ęáé Üëëůí đáęÝôůí đďő ĺîáńôţíôáé áđü áőôü."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "ĹÜí Ý÷ĺôĺ üëá ôá đáńáđÜíů CDs, đáôŢóôĺ Ok.\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ ęáíÝíá áđü ôá đáńáđÜíů CDs, đáôŢóôĺ Áęýńůóç.\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ ęÜđďéá áđü áőôÜ, áđďĺđéëÝîôĺ ôá ęáé đáôŢóôĺ Ok."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ "Ôţńá ěđďńĺßôĺ íá äďęéěÜóĺôĺ ôď đďíôßęé óáň. ×ńçóéěďđďéŢóôĺ ôá ęďőěđéÜ ęáé "
-#~ "ôç ńďäÝëá ăéá íá\n"
-#~ "ĺđéâĺâáéţóĺôĺ đůň ďé ńőčěßóĺéň ĺßíáé óůóôÝň. Áí äĺí ĺßíáé, ěđďńĺßôĺ íá "
-#~ "ęÜíĺôĺ ęëßę óôď \"śęőńď\"\n"
-#~ "ăéá íá ĺđéëÝîĺôĺ Ýíáí Üëëď ďäçăü.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ĺáí ęÜíĺôĺ ĺăęáôÜóôáóç óĺ Ýíá ěç÷Üíçěá Apple ěĺ đďíôßęé ĺíüň ęďőěđéďý, čá "
-#~ "óáň äďčĺß ç\n"
-#~ "ĺőęáéńĺßá íá ďńßóĺôĺ ęÜđďéá ęďőěđéÜ ôďő đëçęôńďëďăßďő ţóôĺ íá ĺîďěďéţóĺôĺ "
-#~ "ôď 2ď ęáé ôď 3ď\n"
-#~ "ęďőěđß ôďő đďíôéęéďý. Áőôü čá óáň ĺđéôńÝřĺé íá Ý÷ĺôĺ đńüóâáóç óôçí đëŢńç "
-#~ "ëĺéôďőńăéęüôçôá\n"
-#~ "ôďő đďíôéęéďý ôüóď óôçí ęďíóüëá ôďő Linux üóď ęáé óôď X Window GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "Áí Ý÷ĺôĺ Ýíá ADB đďíôßęé, đáńáęáëţ ĺđéëÝîôĺ USB, ęáčţň ď đőńŢíáň ôďő "
-#~ "Linux čá öńďíôßóĺé\n"
-#~ "ăéá ôď đďíôßęé óáň ęáôÜëëçëá."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "ĹÜí čÝëĺôĺ íá óőíäÝóĺôĺ ôďí őđďëďăéóôŢ óáň óôď Äéáäßęôőď Ţ óĺ Ýíá "
-#~ "ôďđéęü \n"
-#~ "äßęôőď, đáńáęáëţ ęÜíôĺ ôçí ęáôÜëëçëç ĺđéëďăŢ, áöďý áíďßîĺôĺ ôçí äéęôőáęŢ "
-#~ "óáň \n"
-#~ "óőóęĺőŢ ţóôĺ ôď DrakX íá ôçí ĺíôďđßóĺé áőôüěáôá.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ ęáěßá äéęôőáęŢ óýíäĺóç, ĺđéëÝîôĺ \"Áđĺíĺńăďđďßçóç äéęôýďő"
-#~ "\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí čÝëĺôĺ íá ńőčěßóĺôĺ ôď äßęôőď áńăüôĺńá, Ţ áí ôĺëĺéţóáôĺ ěĺ ôéň \n"
-#~ "ńőčěßóĺéň äéęôýďő, ĺđéëÝîôĺ \"ÔÝëďň\"."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ĺßíáé áőôŢ ç óůóôŢ ńýčěéóç;"
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Äĺí ĺíôďđßóôçęĺ modem. Đáńáęáëţ ĺđéëÝîôĺ ôçí óĺéńéáęŢ čýńá óôçí ďđďßá\n"
-#~ "ĺßíáé óőíäĺäĺěÝíď.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĐëçńďöďńéáęÜ, ç đńţôç čýńá (đďő ďíďěÜćĺôáé \"COM1\" óôá Microsoft "
-#~ "Windows),\n"
-#~ "óôď Linux ďíďěÜćĺôáé \"ttyS0\"."
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "ĐńďęëŢčçęĺ óöÜëěá, äďęéěÜóôĺ íá áëëÜîĺôĺ ęÜđďéĺň đáńáěÝôńďőň"
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ôéň ńőčěßóĺéň dial-up. ĹÜí äĺí îÝńĺôĺ Ţ äĺí "
-#~ "ĺßóôĺ\n"
-#~ "óßăďőńďň ăéá áőôÝň ôéň ńőčěßóĺéň, ěđďńĺßôĺ íá ôéň đëçńďöďńçčĺßôĺ áđü "
-#~ "ôďí \n"
-#~ "đáńď÷Ýá óáň. ĹÜí äĺí ďńßóĺôĺ ĺîőđçńĺôçôŢ ďíďěÜôůí (DNS), čá ďńéóôĺß "
-#~ "áőôüěáôá \n"
-#~ "ęáôÜ ôçí óýíäĺóç."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "ĹÜí ôď modem óáň ĺßíáé ĺîůôĺńéęü, đáńáęáëţ áíďßîôĺ ôď ţóôĺ ôď DrakX íá "
-#~ "ěđďńÝóĺé íá ôď ĺíôďđßóĺé áőôüěáôá."
+#~ msgid "Show all"
+#~ msgstr "ĹěöÜíéóç üëůí"
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Đáńáęáëţ áíďßîôĺ ôď modem óáň ęáé ĺđéëÝîôĺ ôď óůóôü."
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Đńďĺôďéěáóßá ńőčěßóĺůí ăńáöéęďý đĺńéâÜëëďíôďň (X-Window)"
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ôéň ńőčěßóĺéň dial-up. ĹÜí äĺí îÝńĺôĺ Ţ äĺí "
-#~ "ĺßóôĺ\n"
-#~ "óßăďőńďň ăéá áőôÝň ôéň ńőčěßóĺéň, ěđďńĺßôĺ íá ôéň đëçńďöďńçčĺßôĺ áđü "
-#~ "ôďí \n"
-#~ "đáńď÷Ýá óáň. ĹÜí äĺí ďńßóĺôĺ ĺîőđçńĺôçôŢ ďíďěÜôůí (DNS), čá ďńéóôĺß "
-#~ "áőôüěáôá \n"
-#~ "ęáôÜ ôçí óýíäĺóç."
+#~ msgid "What do you want to do?"
+#~ msgstr "Ôé čÝëĺôĺ íá ęÜíĺôĺ;"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôď äéęôőáęü üíďěá (ĺÜí ÷ńĺéÜćĺôáé). ĹÜí äĺí "
-#~ "ĺßóôĺ óßăďőńďň,\n"
-#~ "ěđďńĺßôĺ íá ćçôŢóĺôĺ đëçńďöďńßĺň áđü ôďí đáńď÷Ýá óáň."
+#~ msgid "Change Monitor"
+#~ msgstr "ÁëëáăŢ ďčüíçň"
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ńőčěßóĺôĺ ôçí óőóęĺőŢ äéęôýďő.\n"
-#~ "\n"
-#~ " - Äéĺýčőíóç IP: ĹÜí äĺí ôçí îÝńĺôĺ, ńůôŢóôĺ ôďí őđĺýčőíď äéęôýďő Ţ\n"
-#~ "ôďí đáńď÷Ýá óáň.\n"
-#~ "Äĺí đńÝđĺé íá ĺéóÜăĺôĺ äéĺýčőíóç IP ĺÜí ĺđéëÝîĺôĺ \"Áőôüěáôç áđüäďóç IP"
-#~ "\"\n"
-#~ "đáńáęÜôů.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĚÜóęá äéęôýďő: \"255.255.255.0\" ĺßíáé óőíŢčůň ęáëŢ ĺđéëďăŢ. ĹÜí äĺí\n"
-#~ "ĺßóôĺ óßăďőńďň, ńůôŢóôĺ ôďí őđĺýčőíď äéęôýďő Ţ ôďí đáńď÷Ýá óáň.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Áőôüěáôç áđüäďóç IP: ĹÜí ôď äßęôőü óáň ÷ńçóéěďđďéĺß Ýíá áđü ôá "
-#~ "đńďôüęďëëá\n"
-#~ "BOOTP Ţ DHCP, ĺđéëÝîôĺ áőôü. Óĺ áőôŢ ôçí đĺńßđôůóç, äĺí ÷ńĺéÜćĺôáé íá "
-#~ "äţóĺôĺ\n"
-#~ "äéĺýčőíóç IP. ĹÜí äĺí ĺßóôĺ óßăďőńďň, ńůôŢóôĺ ôďí őđĺýčőíď äéęôýďő Ţ\n"
-#~ "ôďí đáńď÷Ýá óáň."
+#~ msgid "Change Graphics card"
+#~ msgstr "ÁëëáăŢ ęÜńôáň ăńáöéęţí"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôď äéęôőáęü óáň üíďěá. ĹÜí äĺí\n"
-#~ "ĺßóôĺ óßăďőńďé, óőěâďőëĺőčĺßôĺ ôďí őđĺýčőíď äéęôýďő."
+#~ msgid "Change Server options"
+#~ msgstr "ÁëëáăŢ ńőčěßóĺůí X server"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôď äéęôőáęü óáň üíďěá. ĹÜí äĺí\n"
-#~ "ĺßóôĺ óßăďőńďé, áöŢóôĺ ôď ęĺíü."
+#~ msgid "Change Resolution"
+#~ msgstr "ÁëëáăŢ áíÜëőóçň"
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôéň ĺđéëďăÝň ôďő dialup. ĹÜí äĺí ĺßóôĺ "
-#~ "óßăďőńďň,\n"
-#~ "ěđďńĺßôĺ íá ćçôŢóĺôĺ đëçńďöďńßĺň áđü ôďí đáńď÷Ýá óáň."
+#~ msgid "Show information"
+#~ msgstr "ĐńďâďëŢ đëçńďöďńéţí"
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "ĹÜí ÷ńçóéěďđďéŢóĺôĺ proxies, đáńáęáëţ ńőčěßóôĺ ôďőň ôţńá. ĹÜí äĺí "
-#~ "îÝńĺôĺ,\n"
-#~ "ńůôŢóôĺ ôďí đáńď÷Ýá óáň Ţ ôďí őđĺýčőíď äéęôýďő."
+#~ msgid "Test again"
+#~ msgstr "ĹđáíÜëçřç äďęéěŢň"
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Áí ç óýíäĺóŢ óáň ěĺ ôď Äéáäßęôőď ĺßíáé óůóôÜ ńőčěéóěÝíç, ěđďńĺßôĺ íá\n"
-#~ "ĺăęáôáóôŢóĺôĺ đáęÝôď ęńőđôďăńáößáň. Đńţôá ĺđéëÝîôĺ Ýíáí ôüđď áđ'\n"
-#~ "üđďő čá ęáôĺâÜóĺôĺ ôá đáęÝôá ęáé ěĺôÜ ĺđéëÝîôĺ đďéÜ đáęÝôá čá\n"
-#~ "ĺăęáôáóôŢóĺôĺ.\n"
-#~ "\n"
-#~ "Óçěĺéţóôĺ üôé đńÝđĺé íá ĺđéëÝîĺôĺ ôüđď ęáé đáęÝôá óýěöůíá ěĺ ôçí\n"
-#~ "íďěďčĺóßá óáň."
+#~ msgid "Setting security level"
+#~ msgstr "Ńýčěéóç ĺđéđÝäďő áóöáëĺßáň"
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ćţíç ţńáň áíÜëďăá ěĺ ôçí ôďđďčĺóßá óáň."
+#~ msgid "Graphics card"
+#~ msgstr "ĘÜńôá ăńáöéęţí"
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ íá ďńßóĺôĺ Ýíáí ôďđéęü ĺęôőđůôŢ (óőíäĺäĺěÝíď óôďí őđďëďăéóôŢ "
-#~ "óáň) \n"
-#~ "Ţ Ýíáí áđďěĺěáęńőóěÝíď (đńďóâÜóéěď ěÝóů UNIX äéęôýďő, Netware Ţ äéęôýďő \n"
-#~ "Microsoft Windows)."
+#~ msgid "Select a graphics card"
+#~ msgstr "ĹđéëÝîôĺ ęÜńôá ăńáöéęţí"
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "ĹÜí čÝëĺôĺ íá ĺęôőđţíĺôĺ, ĺđéëÝîôĺ Ýíá óđü ôá äýď óőóôŢěáôá ĺęôýđůóçň \n"
-#~ "(CUPS ęáé LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ôď CUPS ĺßíáé Ýíá íÝď, äőíáôü ęáé ĺőÝëéęôď óýóôçěá ĺęôýđůóçň ăéá UNIX \n"
-#~ "óőóôŢěáôá. ÁőôŢ ĺßíáé ç âáóéęŢ ĺđéëďăŢ ăéá ôď Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ôď LPR ĺßíáé ôď đáëéü ęëáóóéęü óýóôçěá ĺęôýđůóçň.\n"
-#~ "\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ óęôőđůôŢ, ĺđéëÝîôĺ \"ĘáíÝíá\"."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Đńďóď÷Ţ: Ç äďęéěŢ ĺßíáé ĺđéęßíäőíç óĺ áőôŢ ôçí ęÜńôá ăńáöéęţí"
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "Ôď GNU/Linux ěđďńĺß íá óőíĺńăáóôĺß ěĺ äéÜöďńďőň ôýđďőň ĺęôőđůôţí. Ď "
-#~ "ęáčÝíáň áđü\n"
-#~ "áőôďýň ÷ńĺéÜćĺôáé äéáöďńĺôéęÝň ńőčěßóĺéň.\n"
-#~ "\n"
-#~ "ĹÜí ď ĺęôőđůôŢň óáň ĺßíáé óőíäĺäĺěÝíďň óôď óýóôçěÜ óáň, ĺđéëÝîôĺ "
-#~ "\"Ôďđéęüň\n"
-#~ "ĹęôőđůôŢň\".\n"
-#~ "\n"
-#~ "ĹÜí čÝëĺôĺ íá ĺęôőđţíĺôĺ óĺ Ýíáí ĺęôőđůôŢ ôďđďčĺôçěÝíď óĺ áđďěĺěáęńőóěÝíď "
-#~ "UNIX\n"
-#~ "óýóôçěá, ĺđéëÝîôĺ \"ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí čÝëĺôĺ íá ĺęôőđţíĺôĺ óĺ Ýíáí ĺęôőđůôŢ ôďđďčĺôçěÝíď óĺ áđďěĺěáęńőóěÝíď "
-#~ "Windows\n"
-#~ "óýóôçěá (Ţ UNIX ěĺ SMB đńůôüęďëëď), ĺđéëÝîôĺ \"SMB/Windows 95/98/NT\"."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 óôá 60 Hz"
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Đáńáęáëţ áíÜřôĺ ôďí ĺęôőđůôŢ óáň ăéá íá ôď áíé÷íĺýóĺé ôď DrakX.\n"
-#~ "\n"
-#~ "ĐńÝđĺé íá ĺéóÜăĺôĺ ęÜđďéĺň đëçńďöďńßĺň ĺäţ.\n"
-#~ "\n"
-#~ "\n"
-#~ "...* źíďěá ĺęôőđůôŢ: ď print spooler ÷ńçóéěďđďéĺß ôď \"lp\"ůň ôď "
-#~ "đńďęáčďńéóěÝíď üíďěá. Ďđüôĺ, đńÝđĺé íá Ý÷ĺôĺ Ýíáí ĺęôőđůôŢ ďíüěáôé \"lp"
-#~ "\".\n"
-#~ " Ĺáí Ý÷ĺôĺ ěüíď Ýíáí ĺęôőđůôŢ, ěđďńĺßôĺ íá ÷ńçóéěďđďéŢôĺ đďëëÜ "
-#~ "ďíüěáôá ăéá áőôüí.Áđëţň čá đńÝđĺé íá ôá äéá÷ůńßóĺôĺ ěĺ Ýíá pipe\n"
-#~ " ÷áńáęôŢńá (Ýíá \"|\"). Ďđüôĺ, ĺáí đńďôéěÜôĺ Ýíá đďéď óçěáíôéęü "
-#~ "üíďěá, đńÝđĺé íá ôď âÜëĺôĺ đńţôď, đ.÷: \"My printer|lp\".\n"
-#~ " Ď ĺęôőđůôŢň đďő Ý÷ĺé ôď \"lp\" óôá ďíüěáôÜ ôďő čá ĺßíáé ď "
-#~ "đńďęáčďńéóěÝíďň ĺęôőđůôŢň.\n"
-#~ "\n"
-#~ "\n"
-#~ "...* ĐĺńéăńáöŢ: áőôü ĺßíáé đńďáéńĺôéęü áëëÜ ěđďńĺß íá ĺßíáé ÷ńŢóéěď ĺáí "
-#~ "đďëëďß ĺęôőđůôÝň ĺßíáé óőíäĺäĺěÝíďé óôďí őđďëďăéóôŢ óáň Ţ áí ĺđéôńÝđĺôĺ\n"
-#~ " Üëëďőň őđďëďăéóôÝň íá Ý÷ďőí đńüóâáóç óĺ áőôüí ôďí ĺęôőđůôŢ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ôďđďčĺóßá: ĺáí čÝëĺôĺ íá äţóĺôĺ ęÜđďéĺň đëçńďöďńßĺň ó÷ĺôéęÜ ěĺ ôçí\n"
-#~ " ôďđďčĺóßá ôďő ĺęôőđůôŢ óáň, âÜëôĺ ôéň ĺäţ (ĺßóôĺ ĺëĺýčĺńďň íá "
-#~ "ăńÜřĺôĺ üôé\n"
-#~ " čÝëĺôĺ, ăéá đáńÜäĺéăěá \"2ďň üńďöďň\").\n"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 óôá 56 Hz"
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "ĐńÝđĺé íá ĺéóÜăĺôĺ ęÜđďéĺň đëçńďöďńßĺň ĺäţ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * źíďěá ďőńÜň: ď print spooler ÷ńçóéěďđďéĺß ôď \"lp\" ůň ôď "
-#~ "đńďęáčďńéóěÝíď üíďěá ĺęôőđůôŢ. Ďđüôĺ, đńÝđĺé íá Ý÷ĺôĺ Ýíáí ĺęôőđůôŢ ěĺ ôď "
-#~ "üíďěá \"lp\".\n"
-#~ " Ĺáí Ý÷ĺôĺ ěüíď Ýíáí ĺęôőđůôŢ, ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ đďëëÜ "
-#~ "ďíüěáôá ăéá áőôüí. ÁđëÜ đńÝđĺé íá ôá ÷ůńßóĺôĺ ěĺ Ýíá pipe\n"
-#~ " ÷áńáęôŢńá (Ýíá \"|\"). Ďđüôĺ, ĺáí đńďôéěÜôĺ íá Ý÷ĺôĺ Ýíá đéď "
-#~ "óçěáíôéęü üíďěá, đńÝđĺé íá ôď âÜëĺôĺ đńţôď, đ.÷: \"My printer|lp\".\n"
-#~ " Ď ĺęôőđůôŢň ěĺ ôď \"lp\" óôá ďíüěáôÜ ôďő čá ĺßíáé ď đńďęáčďńéóěÝíďň "
-#~ "ĺęôőđůôŢň.\n"
-#~ "\n"
-#~ " \n"
-#~ " * ĘáôÜëďăďň Spool: áőôüň ĺßíáé ď ęáôÜëďăďň đďő áđďčçęĺýďíôáé ďé "
-#~ "ĺńăáóßĺň ôďő ĺęôőđůôŢ. ÄéáôçńŢóôĺ ôçí ĺî' ďńéóěďý ĺđéëďăŢ\n"
-#~ " ĺáí äĺí îÝńĺôĺ ôß íá ÷ńçóéěďđďéŢóĺôĺ\n"
-#~ "\n"
-#~ "\n"
-#~ " * Óýíäĺóç ĹęôőđůôŢ: Ĺáí ď ĺęôőđůôŢň óáň ĺßíáé öőóéęţň óőíäĺäĺěÝíďň "
-#~ "óôďí őđďëďăéóôŢ óáň, ĺđéëÝîôĺ \"Ôďđéęüň ĺęôőđůôŢň\".\n"
-#~ " Ĺáí čÝëĺôĺ íá Ý÷ĺôĺ đńüóâáóç óĺ Ýíáí ĺęôőđůôŢ đďő âńßóęĺôáé óĺ Ýíá "
-#~ "áđďěáęńőóěÝíď Unix ěç÷Üíçěá, ĺđéëÝîôĺ \"ÁđďěáęńőóěÝíďň lpd ĺęôőđůôŢň\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ĺáí čÝëĺôĺ íá Ý÷ĺôĺ đńüóâáóç óĺ Ýíáí ĺęôőđůôŢ đďő âńßóęĺôáé óĺ Ýíá "
-#~ "áđďěáęńőóěÝíď Microsoft Windows ěç÷Üíçěá (Ţ óĺ Ýíá Unix ěç÷Üíçěá ěĺ SMB\n"
-#~ " đńůôüęďëëď), ĺđéëÝîôĺ \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ĺáí čÝëĺôĺ íá Ý÷ĺôĺ đńüóâáóç óĺ Ýíáí ĺęôőđůôŢ đďő âńßóęĺôáé óĺ Ýíá "
-#~ "NetWare äßęôőď, ĺđéëÝîôĺ \"NetWare\".\n"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Compatible, 1024x768 óôá 87 Hz interlaced (no 800x600)"
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Äĺí ĺíôďđßóôçęĺ ĺęôőđůôŢň. Đáńáęáëţ ĺéóÜăĺôĺ ôď üíďěá ôçň óőóęĺőŢň óôçí\n"
-#~ " ďđďßá ĺßíáé óőíäĺäĺěÝíďň.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďé đĺńéóóüôĺńďé ĺęôőđůôÝň óőíäÝďíôáé óôçí đńţôç đáńÜëëçëç čýńá. ÁőôŢ "
-#~ "ďíďěÜćĺôáé\n"
-#~ "\"/dev/lp0\" óôď GNU/Linux ęáé \"LPT1\" óôá Microsoft Windows."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 óôá 87 Hz interlaced, 800x600 óôá 56 Hz"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "ĹđéëÝîôĺ ôďí ĺęôőđůôŢ óáň óôďí đáńáđÜíů ęáôÜëďăď"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 óôá 60 Hz, 640x480 óôá 72 Hz"
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Đáńáęáëţ ĺđéëÝîôĺ ôéň ęáôÜëëçëĺň ńőčěßóĺéň ăéá ôďí ĺęôőđůôŢ óáň.\n"
-#~ "ĘďéôÜîôĺ ôçí ôĺęěçńßůóç ôďő ĺęôőđůôŢ ĺÜí äĺí îÝńĺôĺ ôé íá ĺđéëÝîĺôĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "¸÷ĺôĺ ôçí äőíáôüôçôá íá ĺëÝăîĺôĺ ôéň ĺđéëďăÝň óáň óôď ĺđüěĺíď âŢěá ęáé "
-#~ "íáôéň ôńďđďđďéŢóĺôĺ áí äĺí ëĺéôďőńăďýí üđůň čá čÝëáôĺ."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 óôá 60 Hz, 800x600 óôá 72 Hz"
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ďńßóĺôĺ ôç ëÝîç-ęëĺéäß ăéá ôďí ÷ńŢóôç \"root\".\n"
-#~ "Ç ëÝîç đńÝđĺé íá ĺéóá÷čĺß ĺéň äéđëďýí ăéá ĺđéâĺâáßůóç.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ď root ĺßíáé ď äéá÷ĺéńéóôŢň ôďő óőóôŢěáôďň ęáé ď ěüíďň đďő Ý÷ĺé \n"
-#~ "ôď äéęáßůěá íá áëëÜîĺé ôéň ńőčěßóĺéň ôďő óőóôŢěáôďň. Ăé áőôü, \n"
-#~ "ĺđéëÝîôĺ đńďóĺęôéęÜ áőôŢ ôç ëÝîç ęëĺéäß! Ěç ĺîďőóéďäďôçěÝíç \n"
-#~ "đńüóâáóç óôď root ěđďńĺß íá ĺßíáéĺîáéńĺôéęÜ ĺđéęßíäőíç ăéá \n"
-#~ "ôçí áęĺńáéüôçôá ôďő óőóôŢěáôďň ęáé ôůí äĺäďěÝíůí ôďő, ęáčţň \n"
-#~ "ęáé ăéá Üëëá óőóôŢěáôá óőíäĺäĺěÝíá óĺ áőôü. \n"
-#~ "\n"
-#~ "\n"
-#~ "Ç ëÝîç ęëĺéäß đńÝđĺé íá ĺßíáé ěéá ěßîç áëöáńéčěçôéęţí ÷áńáęôŢńůí \n"
-#~ "ęáé ěĺ ěŢęďň ôďőëÜ÷éóôďí ďęôţ (8) ÷áńáęôŢńůí. Äĺí đńÝđĺé *đďôÝ* \n"
-#~ "íá ôď ăńÜřĺôĺ óĺ ÷áńôß."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 óôá 70 Hz"
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
#~ msgstr ""
-#~ "Áí ôď äßęôőü óáň őđďóôçńßćĺé LDAP (Ţ NIS) đńůôüęďëëď ăéá ĺîáęńßâůóç, "
-#~ "ĺđéëÝîôĺ\n"
-#~ "\"LDAP\" (Ţ \"NIS\") ůň ĺîáęńßâůóç. Áí äĺí ăíůńßćĺôĺ, ńůôŢóôĺ ôďí "
-#~ "äéá÷ĺéńéóôŢ\n"
-#~ "äéęôýďő óáň.\n"
-#~ "Áí ď őđďëďăéóôŢň óáň äĺí ĺßíáé óőíäĺäĺěÝíďň óĺ äßęôőď ěĺ äéá÷ĺéńéóôŢ, "
-#~ "ôüôĺ đéčáíüôáôá íá čÝëĺôĺ íá\n"
-#~ "ĺđéëÝîĺôĺ \"ÔďđéęÜ áń÷ĺßá\" ăéá ĺîáęńßâůóç."
+#~ "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 60 Hz"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá äçěéďőńăŢóĺôĺ Ýíáí Ţ đĺńéóóüôĺńďőň \"áđëďýň\" ÷ńŢóôĺň,\n"
-#~ "(óĺ áíôßčĺóç ěĺ ôďí \"ĺîďőóéďäďôçěÝíď\" ÷ńŢóôç, root). Ěđďńĺßôĺ íá \n"
-#~ "äçěéďőńăŢóĺôĺ Ýíáí Ţ đĺńéóóüôĺńďőň ÷ńŢóôĺň ăéá ęÜčĺ đńüóůđď đďő čÝëĺôĺ\n"
-#~ "íá Ý÷ĺé đńüóâáóç óôď óýóôçěÜ óáň. Óçěĺéţóôĺ üôé ęÜčĺ ÷ńŢóôçň Ý÷ĺé ôéň\n"
-#~ "äéęÝň ôďő ńőčěßóĺéň (ăńáöéęü đĺńéâÜëëďí, ńőčěßóĺéň ĺöáńěďăţí ęëđ),\n"
-#~ "ęáčţň ęáé ôď äéęü ôďő \"home directory\", óôď ďđďßď áđďčçęĺýďíôáé\n"
-#~ "áőôÝň ďé ńőčěßóĺéň.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęáô' áń÷Ţí, äçěéďőńăŢóôĺ Ýíáí ÷ńŢóôç ăéá ôďí ĺáőôü óáň! Áęüěá ęáé ĺÜí\n"
-#~ "ĺßóôĺ ď ěďíáäéęüň ÷ńçóôçň ôďő óőóôŢěáôďň, ÄĹÍ đńÝđĺé íá ÷ńçóéěďđďéĺßôĺ\n"
-#~ "ôď root ăéá ôçí ęáčçěĺńéíŢ ÷ńŢóç ôďő óőóôŢěáôďň, äéüôé áőôü čá \n"
-#~ "äçěéďőńăďýóĺ ęéíäőíďőň. ¸íá áđëü ëÜčďň đëçęôńďëüăçóçň ĺßíáé áńęĺôü\n"
-#~ "ăéá íá ęáôáóôńÝřĺé ôçí ĺăęáôÜóôáóŢ óáň üôáí ĺńăÜćĺóôĺ ůň root.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ăé áőôü, čá đńÝđĺé íá óőíäÝĺóôĺ óôď óýóôçěÜ óáň ÷ńçóéěďđďéţíôáň Ýíáí\n"
-#~ "ęůäéęü áđëďý ÷ńŢóôç ęáé íá óőíäÝĺóôĺ ůň root ěüíď ăéá ĺńăáóßĺň äéďßęçóçň\n"
-#~ "ęáé óőíôŢńçóçň ôďő óőóôŢěáôďň."
+#~ "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 74 Hz"
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
#~ msgstr ""
-#~ "Óőíßóôáôáé íá äçěéďőńăŢóĺôĺ Ýíáí äßóęď ĺęęßíçóçň. ĹÜí äĺí \n"
-#~ "ěđďńĺßôĺ íá ĺęęéíŢóĺôĺ ôďí őđďëďăéóôŢ óáň, ĺßíáé ď ěüíďň ôńüđďň \n"
-#~ "íá äéáóţóĺôĺ ôď óýóôçěÜ óáň ÷ůńßň ĺđáíĺăęáôÜóôáóç."
+#~ "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 76 Hz"
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Ďé ęýńéĺň ĺđéëďăÝň ôďő LILO ęáé ôďő grub ĺßíáé:\n"
-#~ " - ÓőóęĺőŢ ĺęęßíçóçň: Ďńßćĺé ôď üíďěá ôçň óőóęĺőŢň (đ.÷. ěéá \n"
-#~ "ęáôÜôěçóç) đďő đĺńéÝ÷ĺé ôďí ôďěÝá ĺęęßíçóçň. Ĺęôüň ęáé áí ĺßóôĺ\n"
-#~ "óßăďőńďé üôé ĺßíáé áëëéţň, ĺđéëÝîôĺ \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĘáčőóôÝńçóç đńéí ôçí ĺęęßíçóç: Ďńßćĺé ôá äÝęáôá ôďő äĺőôĺńďëÝđôďő\n"
-#~ "đďő ôď óýóôçěá čá đĺńéěÝíĺé đńéí ĺęęéíŢóĺé ôď đńţôď ëĺéôďőńăéęü.\n"
-#~ "Áőôü ĺßíáé óőíŢčůň ÷ńŢóéěď óĺ óőóôŢěáôá đďő ĺęęéíďýí áđü ôďí äßóęď\n"
-#~ "áěÝóůň ěĺôÜ ôçí ĺíĺńăďđďßçóç ôďő đëçęôńďëďăßďő. Äĺí őđÜń÷ĺé ęáčőóôÝńçóç\n"
-#~ "ĺÜí ď áńéčěüň đáńáëĺéöčĺß Ţ ĺßíáé ěçäÝí.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ÁíÜëőóç ďčüíçň: Áőôü ďńßćĺé ôçí VGA áíÜëőóç ęĺéěÝíďő đďő čá ĺđéëĺăĺß\n"
-#~ "ęáôÜ ôçí ĺęęßíçóç. ŐđÜń÷ďőí ďé đáńáęÜôů ĺđéëďăÝň: \n"
-#~ "\n"
-#~ " * normal: ĘáíďíéęŢ áíÜëőóç ęĺéěÝíďő 80×25.\n"
-#~ "\n"
-#~ " * <áńéčěüň>: ÷ńŢóç ôçň áíôßóôďé÷çň áíÜëőóçň ęĺéěÝíďő.\n"
-#~ "\n"
-#~ " - Ęáčáńéóěüň \"/tmp\" óĺ ęÜčĺ ĺęęßíçóç: ĺáí čÝëĺôĺ íá óâŢíĺôĺ üëá ôá "
-#~ "áń÷ĺßá ęáé ôďő öáęÝëďőň\n"
-#~ "đďő ĺßíáé óôď \"/tmp\" üôáí îĺęéíÜôĺ ôď óýóôçěÜ óáň, ĺíĺńăďđďéŢóôĺ áőôŢí "
-#~ "ôçí ĺđéëďăŢ.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ÁęńéâŢň RAM áí ÷ńĺéÜćĺôáé: äőóôő÷ţň, äĺí őđÜń÷ĺé óôĺńĺüôőđç ěÝčďäďň "
-#~ "íá äţóĺé ôď\n"
-#~ "BIOS ôďí áęńéâŢ áńéčěü RAM ôďő őđďëďăéóôŢ óáň. Óáí óőíÝđĺéá, ôď Linux "
-#~ "ßóůň\n"
-#~ "áđďôý÷ĺé íá áíé÷íĺýóĺé ôçí RAM óůóôÜ. Óĺ áőôŢí ôçí đĺńßđôůóç, ěđďńĺßôĺ\n"
-#~ "íá ďńßóĺôĺ ôďí óůóôü áńéčěü ĺäţ. Đáńáęáëţ óçěĺéţóôĺ đůň ěéá äéáöďńÜ ôçň "
-#~ "ôÜîçň ôůí 2 Ţ 4\n"
-#~ "MB ěĺôáîý ôçň ěíŢěçň đďő áíé÷íĺýôçęĺ ęáé ôçň đńáăěáôéęŢň RAM ôďő "
-#~ "óőóôŢěáôüň óáň ĺßíáé ęáíďíéęŢ."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ďčüíç đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1600x1200 óôá 70 Hz"
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "Ôď SILO ĺßíáé đńüăńáěěá ĺęęßíçóçň ăéá SPARC: Ěđďńĺß íá ĺęęéíŢóĺé \n"
-#~ "ôď GNU/Linux Ţ ďđďéďäŢđďôĺ Üëëď ëĺéôďőńăéęü őđÜń÷ĺé óôď óýóôçěÜ óáň. "
-#~ "ĘáíďíéęÜ, \n"
-#~ "ôá ĺđéđëÝďí ëĺéôďőńăéęÜ đńďóäéďńßćďíôáé ęáé ńőčěßćďíôáé óůóôÜ. ĹÜí áőôü "
-#~ "äĺí \n"
-#~ "óőíÝâç, ěđďńĺßôĺ íá đńďóčÝóĺôĺ ĺđéđëÝďí ĺđéëďăÝň óĺ áőôŢí ôçí ďčüíç. \n"
-#~ "ĐńďóÝîôĺ íá ĺđéëÝîĺôĺ ôéň óůóôÝň đáńáěÝôńďőň.\n"
-#~ "\n"
-#~ "Ěđďńĺßôĺ ĺđßóçň íá áđďęëĺßóĺôĺ ôçí đńüóâáóç óĺ Üëëá ëĺéôďőńăéęÜ óőóôŢěáôá "
-#~ "áöáéńţíôáň\n"
-#~ "ôéň áíôßóôďé÷ĺň ĺđéëďăÝň. Óĺ áőôŢí üěůň ôçí đĺńßđôůóç, čá ÷ńĺéáóôĺßôĺ "
-#~ "äéóęÝôôá ĺęęßíçóçň\n"
-#~ "ăéá íá ôá ÷ńçóéěďđďéŢóĺôĺ!"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ďčüíç đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1600x1200 óôá 76 Hz"
#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Ďé ęýńéĺň ĺđéëďăÝň ôďő SILO ĺßíáé:\n"
-#~ " - ĹăęáôÜóôáóç bootloader: Ďńßćĺé ôď đďý čÝëĺôĺ íá ĺăęáôáóôáčďýí ďé "
-#~ "áđáńáßôçôĺň\n"
-#~ "ăéá ôçí ĺęęßíçóç ôďő GNU/Linux đëçńďöďńßĺň. Ĺęôüň ęé áí îÝńĺôĺ ôé áęńéâţň "
-#~ "ęÜíĺôĺ,\n"
-#~ "ĺđéëÝîôĺ \"Đńţôďň ôďěÝáň ôďő äßóęďő (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĘáčőóôÝńçóç đńéí ôçí ĺęęßíçóç: Ďńßćĺé ôá äÝęáôá ôďő äĺőôĺńďëÝđôďő\n"
-#~ "đďő ôď óýóôçěá čá đĺńéěÝíĺé đńéí ĺęęéíŢóĺé ôď đńţôď ëĺéôďőńăéęü.\n"
-#~ "Áőôü ĺßíáé óőíŢčůň ÷ńŢóéěď óĺ óőóôŢěáôá đďő ĺęęéíďýí áđü ôďí äßóęď\n"
-#~ "áěÝóůň ěĺôÜ ôçí ĺíĺńăďđďßçóç ôďő đëçęôńďëďăßďő. Äĺí őđÜń÷ĺé ęáčőóôÝńçóç\n"
-#~ "ĺÜí ď áńéčěüň đáńáëĺéöčĺß Ţ ĺßíáé ěçäÝí."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ôď óőíďëéęü ěÝăĺčďň ôůí ďěÜäůí đďő ĺđéëÝîáôĺ ĺßíáé đĺńßđďő %d MB.\n"
#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Ôţńá đńÝđĺé íá ńőčěßóĺôĺ ôď X Window System, ôď ďđďßď ĺßíáé ď \n"
-#~ "đőńŢíáň ôďő ăńáöéęďý đĺńéâÜëëďíôďň (GUI) ôďő GNU/Linux. ĐńÝđĺé íá\n"
-#~ "ńőčěßóĺôĺ ôçí ęÜńôá ăńáöéęţí ęáé ôçí ďčüíç óáň. Ôď ěĺăáëýôĺńď\n"
-#~ "ěÝńďň ôçň äéáäéęáóßáň ĺßíáé áőôďěáôďđďéçěÝíď, ďđüôĺ ç óőěâďëŢ\n"
-#~ "óáň óőíßóôáôáé óôçí ĺđéâĺâáßůóç ęáé áđďäď÷Ţ ôůí áőôďěÜôůí \n"
-#~ "ńőčěßóĺůí :)\n"
-#~ "\n"
+#~ "ĹÜí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ëéăüôĺńá,\n"
+#~ "ĺđéëÝîôĺ ôď đďóďóôü ôůí đáęÝôůí đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ.\n"
#~ "\n"
-#~ "źôáí ďëďęëçńůčĺß ç äéáäéęáóßá ńýčěéóçň, čá îĺęéíŢóĺé ôď\n"
-#~ "X Window óýóôçěá (ĺęôüň ĺÜí ĺóĺßň áđďöáóßóĺôĺ áëëéţň), ăéá\n"
-#~ "íá ĺëÝăîĺôĺ ĺÜí ďé ńőčěßóĺéň óáň éęáíďđďéďýí. ĹÜí ü÷é, \n"
-#~ "ěđďńĺßôĺ íá ĺđéóôńÝřĺôĺ ĺäţ ęáé íá ĺđáíáëÜâĺôĺ ôéň ńőčěßóĺéň\n"
-#~ "üóĺň öďńÝň ÷ńĺéáóôĺß."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "ĹÜí ęÜôé äĺí đÜĺé ęáëÜ ěĺ ôéň ńőčěßóĺéň ôůí ×, ÷ńçóéěďđďéĺßóôĺ áőôÝň ôéň\n"
-#~ "ĺđéëďăÝň ăéá íá ńőčěßóĺôĺ óůóôÜ ôď ăńáöéęü đĺńéâÜëëďí (X Window System)."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "ĹÜí đńďôéěÜôĺ ĺęęßíçóç óĺ ăńáöéęü đĺńéâÜëëďí ĺđéëÝîôĺ \"Íáé\". Áëëéţň, \n"
-#~ "ĺđéëÝîôĺ \"ź÷é\"."
+#~ "¸íá ÷áěçëü đďóďóôü čá ĺăęáôáóôŢóĺé ěüíď ôá đéď óçěáíôéęÜ đáęÝôá.\n"
+#~ "¸íá đďóďóôü 100% čá ĺăęáôáóôŢóĺé üëá ôá ĺđéëĺăěÝíá đáęÝôá."
#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ íá ĺđéëÝîĺôĺ Ýíá ĺđßđĺäď áóöÜëĺéáň ăéá ôď óýóôçěÜ óáň. Đáńáęáëţ "
-#~ "äéáâÜóôĺ ôď manual ăéá đëŢńĺéň\n"
-#~ " đëçńďöďńßĺň. ÂáóéęÜ, áí äĺí îÝńĺôĺ ôß íá ĺđéëÝîĺôĺ, ęńáôŢóôĺ ôçň "
-#~ "đńďęáčďńéóěÝíĺň ĺđéëďăÝň.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Ôď óýóôçěÜ óáň čá ĺđáíĺęęéíŢóĺé.\n"
+#~ "¸÷ĺôĺ óôď äßóęď óáň ÷ţńď ěüíď ăéá ôď %d%% áőôţí ôůí đáęÝôůí.\n"
#~ "\n"
-#~ "ĚĺôÜ ôçí ĺđáíĺęęßíçóç, ôď íÝď óáň Mandrake Linux óýóôçěá čá îĺęéíŢóĺé\n"
-#~ "áőôüěáôá. ĹÜí čÝëĺôĺ íá ĺęęéíŢóĺôĺ Ýíá Üëëď őđÜń÷ďí ëĺéôďőńăéęü, "
-#~ "đáńáęáëţ\n"
-#~ "äéáâÜóôĺ ôéň ó÷ĺôéęÝň ďäçăßĺň."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "ÔóÝ÷éęď (ĐńďăńáěěáôéóôÝň)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Óëďâáęßáň (đńďăńáěěáôéóôÝň)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "źíďěá ôďő đńďößë ăéá äçěéďőńăßá:"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Ĺî' ďńéóěďý Runlevel"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "ÁđďčŢęĺőóç /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Ěďńöďđďßçóç üëůí"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "ĚĺôÜ ôçí ěďńöďđďßçóç üëůí ôůí ęáôáôěŢóĺůí,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "üëá ôá äĺäďěÝíá óĺ áőôÝň ôéň ęáôáôěŢóĺéň čá ÷áčďýí"
-
-#~ msgid "Reload"
-#~ msgstr "Ĺđáíáöüńôůóç"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "ČÝëĺôĺ íá äçěéďőńăŢóĺôĺ ěéá äéóęÝôôá áőôüěáôçň ĺăęáôÜóôáóçň ăéá "
-#~ "ęëůíďđďßçóç áőôŢň ôçň ĺăęáôÜóôáóçň;"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Ńőčěßóĺéň ADSL"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "źíďěá áđďěĺěáęńőóěÝíçň ďőńÜň ëĺßđĺé!"
-
-#~ msgid ""
-#~ "Here you can specify any arbitrary command line into which the job should "
-#~ "be piped instead of being sent directly to a printer."
-#~ msgstr ""
-#~ "Ĺäţ ěđďńĺßôĺ íá ďńßóĺôĺ ěéá ăńáěěŢ ĺíôďëţí óôçí ďđďßá ç äéĺńăáóßá čá "
-#~ "äéáóůëçíţíĺôáé áíôß íá óôÝëíĺôáé ęáôĺőčĺßáí óôďí ĺęôőđůôŢ."
-
-#~ msgid "Command line"
-#~ msgstr "ĂńáěěŢ ĺíôďëţí"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr "Ěéá ăńáěěŢ ĺíôďëţí đńÝđĺé íá ĺéóá÷čĺß!"
-
-#~ msgid "Enter Printer Name and Comments"
-#~ msgstr "ĹéóÜăĺôĺ ôď üíďěá ôďő ĺęôőđůôŢ ęáé ó÷üëéá"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Ôá đĺńéĺ÷üěĺíá ôďő áń÷ĺßďő ńőčěßóĺůí äĺí ěđďńďýí íá ěĺôáöńáóôďýí"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Ěç áíáăíůńßóéěď áń÷ĺßď ńőčěßóĺůí"
-
-#~ msgid "Adapter"
-#~ msgstr "Adapter"
-
-#~ msgid "Disable network"
-#~ msgstr "Áđĺíĺńăďđďßçóç äéęôýďő"
-
-#~ msgid "Enable network"
-#~ msgstr "Ĺíĺńăďđďßçóç äéęôýďő"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Ĺđßâëĺřç Äéęôýďő"
-
-#~ msgid "Profile "
-#~ msgstr "Đńďößë "
-
-#~ msgid "Statistics"
-#~ msgstr "ÓôáôéóôéęÜ"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Ôá÷ýôçôá ÁđďóôďëŢň: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Ôá÷ýôçôá ËŢřçň: "
-
-#~ msgid "Logs"
-#~ msgstr "Logs"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Óýíäĺóç óôď äéáäßęôőď (internet)"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet)"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet) áđÝôő÷ĺ."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet) ďëďęëçńţčçęĺ"
-
-#~ msgid "Connection complete."
-#~ msgstr "Ç óýíäĺóç ďëďęëçńţčçęĺ"
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Ç óýíäĺóç áđÝôő÷ĺ.\n"
-#~ "Ĺđéâĺâáéţóôĺ ôéň ńőčěßóĺéň óáň óôď ĘÝíôńď ĹëÝă÷ďő Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr "áđďóôÜëčçęáí: "
-
-#~ msgid "received: "
-#~ msgstr "ĺëŢöčçóáí: "
-
-#~ msgid "average"
-#~ msgstr "ěÝóďň üńďň"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá äďęéěÜóĺôĺ ôď đďíôßęé óáň. ÄďęéěÜóôĺ ôá đëŢęôńá ęáé ôď\n"
-#~ "ńďäÜęé ęáé âĺâáéůčĺßôĺ üôé üëá ëĺéôďőńăďýí üđůň đńÝđĺé. Áí ü÷é, ĺđéëÝîôĺ\n"
-#~ "\"Áęýńůóç\" ęáé ĺđéëÝîôĺ Üëëďí ďäçăü."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Óýíäĺóç DSL (Ţ ADSL)"
-
-#~ msgid "Choose"
-#~ msgstr "ĹđéëďăŢ"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ íá äţóĺôĺ ęáôĺőčĺßáí ôď URI ăéá đńüóâáóç óôďí ĺęôőđůôŢ ěÝóů CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Íáé, óôĺßëĺ äďęéěáóôéęŢ óĺëßäá ASCII"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Íáé, óôĺßëĺ äďęéěáóôéęŢ óĺëßäá PostScrip"
-
-#~ msgid "Yes, print both test pages"
-#~ msgstr "Íáé, óôĺßëĺ ęáé ôéň äýď äďęéěáóôéęÝň óĺëßäĺň"
-
-#~ msgid "Paper Size"
-#~ msgstr "ĚÝăĺčďň ÷áńôéďý"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "ÁđďâďëŢ ÷áńôéďý ěĺ ôď đÝńáň ôçň ĺęôýđůóçň;"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "ĹđéëďăÝň ďäçăďý Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "ĹđéëďăÝň âÜčďőň ÷ńţěáôďň"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Ĺęôýđůóç ęĺéěÝíďő óáí PostScript;"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Äéüńčůóç ęĺéěÝíďő-óęÜëáň;"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Áńéčěüň óĺëßäůí áíÜ óĺëßäĺň ĺîüäďő"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "ÁńéóôĺńÜ/äĺîéÜ đĺńéčţńéá óĺ óôéăěÝň (1/72 ôçň ßíôóáň)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "ĐÜíů/ęÜôů đĺńéčţńéá óĺ óôéăěÝň (1/72 ôçň ßíôóáň)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "ĹđéđëÝďí ĺđéëďăÝň GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "ĹđéđëÝďí ĺđéëďăÝň ęĺéěÝíďő"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Áíôßóôńďöç óĺéńÜ óĺëßäůí;"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Ôńüđďň óýíäĺóçň áđďěĺěáęńőóěÝíďő ĺęôőđůôŢ"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected.\n"
-#~ "In case of doubt, select \"Remote CUPS server\"."
-#~ msgstr ""
-#~ "Ěĺ ôçí ÷ńŢóç ĺîőđçńĺôçôŢ CUPS, äĺí ÷ńĺéÜćĺôáé íá ńőčěßóĺôĺ ĺęôőđůôÝň \n"
-#~ "ĺäţ. Ďé ĺęôőđůôÝň čá áíáăíůńéóôďýí áőôüěáôá. Áí Ý÷ĺôĺ áěöéâďëßá, "
-#~ "ĺđéëÝîôĺ\n"
-#~ "\"ĹîőđçńĺôçôŢ CUPS\"."
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "ĘÜčĺ ĺęôőđůôŢň ÷ńĺéÜćĺôáé Ýíá üíďěá (ăéá đáńÜäĺéăěá lp). Ěđďńďýí ĺđßóçň "
-#~ "íá \n"
-#~ "ďńéóôďýí Üëëĺň đáńÜěĺôńďé üđůň đĺńéăńáöŢ Ţ ç ôďđďčĺóßá. Ôé üíďěá íá \n"
-#~ "ďńßóů ăé áőôüí ôďí ĺęôőđůôŢ ęáé đţň ĺßíáé óőíäĺäĺěÝíďň ď ĺęôőđůôçň;"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "ĘÜčĺ ďőńÜ ĺęôőđůôŢ (óôçí ďđďßá óôÝëíďíôáé ďé ĺęôőđţóĺéň) ÷ńĺéÜćĺôáé\n"
-#~ "Ýíá üíďěá (óő÷íÜ lp) ęáé Ýíáí ęáôÜëďăď. Ôé üíďěá ęáé ęáôÜëďăď íá \n"
-#~ "ďńßóů ăé áőôŢí ôçí ďőńÜ ĺęôőđůôŢ ęáé đţň ĺßíáé óőíäĺäĺěÝíďň ď ĺęôőđůôçň;"
-
-#~ msgid "Name of queue"
-#~ msgstr "źíďěá ďőńÜň"
+#~ "ĹÜí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ëéăüôĺńá áđü áőôÜ,\n"
+#~ "ĺđéëÝîôĺ ôď đďóďóôü ôůí đáęÝôůí đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ.\n"
+#~ "¸íá ÷áěçëü đďóďóôü čá ĺăęáôáóôŢóĺé ěüíď ôá đéď óçěáíôéęÜ đáęÝôá.\n"
+#~ "¸íá đďóďóôü %d%% čá ĺăęáôáóôŢóĺé üóď đĺńéóóüôĺńá ăßíĺôáé."
-#~ msgid "Spool directory"
-#~ msgstr "ĘáôÜëďăďň"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Čá ěđďńÝóĺôĺ íá ęÜíĺôĺ ëĺđôďěĺńÝóôĺńç ĺđéëďăŢ óôď ĺđüěĺíď âŢěá."
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Đďóďóôü đáęÝôůí đńďň ĺăęáôÜóôáóç"
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "ĹđéëÝîôĺ ĺđßđĺäď áóöáëĺßáň"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 431df175c..148083a67 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -1,78 +1,110 @@
-#
-# MESAŘOJ DE DrakX
-# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000
+# Esperanto drakbootdisk
+# Copyright (C) 2000, 2001 Mandrakesoft
+# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-02 22:36-0500\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-22 19:15-0500\n"
"Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-3\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB aý pli"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Elektu X servilon"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X servilo"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Plur-ekrana konfiguraźo"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafika karto"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Elektu memorkapaciton de via grafika karto"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Elektu grafikan karton"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree Konfigurado"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Elektu X servilon"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kiun konfiguron de XFree vi deziras havi?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X servilo"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Elektu X servilon"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X servilo"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "ISDN-a Konfiguraźon"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kiun konfiguron de XFree vi deziras havi?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s kun 3D aparata akcelado"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -81,32 +113,17 @@ msgstr ""
"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vi povas havi 3D aparatan akceladan subtenon kun XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s kun 3D aparata akcelado"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
-"NOTU KE ĆI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -118,31 +135,58 @@ msgstr ""
"KOMPUTILON.\n"
"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
+"NOTU KE ĆI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree Konfigurado"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Elektu memorkapaciton de via grafika karto"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Elektu opciojn por servilo"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Ću vi deziras teni la ţanřojn?\n"
+"Nuna konfiguro estas:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Elektu ekranon"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Ekrano"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Akomodata"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Genera"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Malfaru"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -164,514 +208,325 @@ msgstr ""
"sinkronamplekson kiu estas preter la kapabloj de via ekrano: vi eble\n"
"difektus vian ekranon. Se vi dubas, elektu zorgeman opcion."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontala sinkronrapido (horizontal sync rate)"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikala refreţigrapido (vertical refresh rate)"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ekrano ne estas konfigurata"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafika karto ne jam konfigurita"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Vi ne jam elektas distingivojn"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Averto: provado de ći tiu grafika karto eble svenigos vian komputilon"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Provu konfiguraźon"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 koloroj (8 bitoj)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"penu ţanři iom da parametroj"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil koloroj (15 bitoj)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Eraro okazis:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil koloroj (16 bitoj)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Mi eliros post %d sekundoj"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milionoj koloroj (24 bitoj)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ću tio ći pravas?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardoj koloroj (32 bitoj)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Eraro okazis, penu ţanři iom da parametroj"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Distingivoj"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Distingivo"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Elektu distingivon kaj kolorprofundon"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafika karto: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 servilo: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Plu"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Nuligu"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Jeso"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Spertula Modalo"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Montru tuton"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Distingivoj"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Provu konfiguraźon"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavara aranřo: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Speco de muso: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Musaparato: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Ekrano: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Ekrana horizontala sinkronrapido (horizontal sync rate): %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ekrana vertikala refreţigrapido (vertical refresh rate): %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafika karto: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafika karto: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Graifka memoro: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Kolorprofuneco: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Distingivo: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 servilo: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 pelilo: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparas X-Fenestran konfiguraźon"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Kion vi deziras fari?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Ţanřu Ekranon"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ţanřu Grafika karto"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Ţanřu Servilajn opciojn"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Ţanřu distingivon"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Montru informon"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Provu denove"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ćesu"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Ću vi deziras teni la ţanřojn?\n"
-"Nuna konfiguro estas:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X Fenestro će komenco"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mi povas konfiguri vian komputilon tiel ke ři aýtomate lanćos X kiam ři\n"
"ekfunkcias. Ću vi deziras ke X aýtomate lanćos?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Bonvolu resaluti en %s-n por aktivigi la ţanřojn."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Bonvole adiaýu kaj sekve uzu Kontrol-Alt-Retropaţo (Ctrl-Alt-Backspace)."
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 koloroj (8 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil koloroj (15 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil koloroj (16 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milionoj koloroj (24 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardoj koloroj (32 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB aý pli"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Normala VGA, 640x480 će 60 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Supera VGA, 800x600 će 56 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr ""
-"8514 kongrua karto, 1024x768 će 87 hercoj (Hz) interplektita (neniu 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr ""
-"Supera VGA, 1024x768 će 87 hercoj (Hz) interplektita, 800x600 će 56 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Etendita Supera VGA, 800x600 će 60 hercoj (Hz), 640x480 će 72 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr ""
-"Neinterplektita Supera VGA, 1024x768 će 60 hercoj (Hz), 640x480 će 72 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Altfrekvenca Supera VGA, 1024x768 će 70 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1024x768 će 60 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1280x1024 će 74 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1280x1024 će 76 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ekrano kiu povas fari 1600x1200 će 70 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ekrano kiu povas fari 1600x1200 će 76 hercoj (Hz)"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Unua sektoro de starta subdisko"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Unu sektoro de drajvo (ĆefStartRikordo)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Instalado"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kie vi deziras instali la startţargilon?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub Instalado"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr ""
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr ""
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Startţargilo ćefaj opcioj"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Startţargilo por uzi"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Startţargila instalado"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Starta aparato"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompakta"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompakta"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Grafika reřimo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo antaý starti defaýltan sistemon"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Pasvorto"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Limigu komandliniajn opciojn"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "limigu"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Purigu /tmp dum ćiuj startadoj"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Preciza kvanto de memoro se bezonata (trovis %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Ebligu multoblajn profilojn"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Donu kvanton de memoro en MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Defaýlta Mastruma Sistemo?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -680,83 +535,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aý ţanři la ekzistantajn."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Aldonu"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Finata"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Ţanřu"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linukso"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Kerna bildo"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Radiko"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Alfiksu"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lega-skriba"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabelo"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Danřera"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etikedo"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Defaýlta"
@@ -789,53 +644,75 @@ msgstr "Vi devas havi interţanřan subdiskon"
msgid "This label is already used"
msgstr "Ći tiu etikedo estas jam uzata"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovis %s %s interfacojn"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Ću vi havas alian?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ću vi havas iun %s interfacon?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Jes"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Vidu hardvaran informon"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalas pelilon por %s karto %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nun vi povas provizi řiajn opciojn al modulo %s.\n"
+"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
+"Ekzemple, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modulaj opcioj:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kiun %s pelilon devus mi provi?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -852,37 +729,15 @@ msgstr ""
"por la informo ři bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
"ři ne devus kaýzi difekton."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Aýtomate esploru"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Specifu opciojn"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nun vi povas provizi řiajn opciojn al modulo %s.\n"
-"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
-"Ekzemple, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulaj opcioj:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -891,49 +746,54 @@ msgstr ""
"Ţargado de modulo %s malsukcesis.\n"
"Ću vi deziras trovi denove kun aliaj parametroj?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ći tiu pasvorto estas tro simpla"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ći tiu salutnomo estas jam aldonita"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ći tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Aldonu uzanto"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -942,32 +802,32 @@ msgstr ""
"Enigu uzanton\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Akceptu uzanto"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Vera nomo"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Salutnomo"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Ţelo"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Piktogramo"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Aýtomata-enregistrado"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -976,124 +836,104 @@ msgstr ""
"Mi povas konfiguri vian komputilon por aýtomate enregistri unu uzulon kiam\n"
"ři startas. Se vi ne deziras uzi ći tion, alklaku la `Nuligu' butonon."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Elektu la defaýltan uzulon:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanći:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Ćiuj"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Aldonu uzulon"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Akomodata"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS startas"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Ći tiu pakaźo devus esti promociata.\n"
"Ću vi certas ke vi deziras malelekti řin?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Nuligu"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bonvenon Al Rompistoj"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Malbona"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Laýnorma"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alta"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoja"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1103,7 +943,7 @@ msgstr ""
"por uzi, sed delikatega: vi devus neniam uzi ři surrete.\n"
"Ři ne havas pasvortojn."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1111,7 +951,7 @@ msgstr ""
"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankoraý\n"
"ne rekomendita."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1120,55 +960,56 @@ msgstr ""
"Ći tiu estas la normala sekureco rekomendata por komputilo kiu estos uzata\n"
"por konekti al la Interreto kiel kliento. Nun estas sekurecaj kontroloj."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Kun ći tiu sekurnivelo, uzado de ći tiu komputilo kiel servilo ebliřas.\n"
"La sekureco nun estas sufiće alta por uzi la sistemon kiel servilo kiu\n"
"akceptas konektojn de multaj klientoj."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Ni uzas aspektojn de la kvara nivelo, sed nun la komputilo estas tute\n"
"malfermita. Sekurecaj aspektoj estas će iliaj maksimumoj."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Elektu sekurnivelon?"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Elektas sekurnivelon"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Elektu opciojn por servilo"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1185,20 +1026,20 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Uzu la %c kaj %c klavoj por elekti kiun enskribon estas emfazata."
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
@@ -1206,33 +1047,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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordonoj antaux startado, aux 'c' por uzi komandan linion."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La emfazata enskribo startos auxtomate post %d sekundoj."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "mankas sufiće da spaco en /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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kie vi deziras instali la startţargilon?"
@@ -1246,17 +1087,21 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Post-instala konfigurado"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Dosiero"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Dosiero/_Eliru"
+msgstr "/Dosiero/_Foriru"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>E"
+msgstr "<stir>F"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1289,12 +1134,12 @@ msgstr "Yaboot modalo"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfiguru"
@@ -1304,7 +1149,7 @@ msgid "System mode"
msgstr "Sistema modalo"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1315,14 +1160,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Jes"
@@ -1372,7 +1219,7 @@ msgid "Screenshots will be available after install in %s"
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Franca"
@@ -1381,7 +1228,7 @@ msgstr "Franca"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
@@ -1410,11 +1257,12 @@ msgstr "Norvega"
msgid "Sweden"
msgstr "Sveda"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Itala"
@@ -1424,7 +1272,7 @@ msgstr "Itala"
msgid "Austria"
msgstr "seria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1432,8 +1280,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Bonvolu fari rezervan kopion de via dateno antaýe"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Legu zorge"
@@ -1447,11 +1295,12 @@ msgstr ""
"sufićas)\n"
"će la komenco de la disko"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Eraro"
@@ -1459,11 +1308,11 @@ msgstr "Eraro"
msgid "Wizard"
msgstr "Sorćisto"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Elektu agon"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1475,78 +1324,78 @@ msgstr ""
"Mi sugestas ke vi unue regrandecigi tiun subdiskon\n"
"(klaku sur řin, kaj poste klaku sur \"Regrandecigu\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaloj"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "2a Etendata (Ext2)"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "Dosierlokigtabelo (FAT)"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "muntado malsukcesis"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Interţanřa"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Malplena"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Alia"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Specoj de dosiersistemoj:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Kreu"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Uzu ``%s'' anstataýe"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Forigu"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Uzu ``Malmuntu'' antaýe"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1555,72 +1404,77 @@ msgstr ""
"estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Elektu agon"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "2a Etendata (Ext2)"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Ţanřu al Spertula reřimo"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ţanřu al Normala reřimo"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Malfaru"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Ću mi devus daýri malgraýe?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Ću eliru sen konservi"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Ću eliru sen skribi la subdisktabelon?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Aýtomate disponigu"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Forviţu ćion"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Plu"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Detektado de fiksdisko(j)"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Ćiuj el la subdiskoj estas uzata"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1628,35 +1482,35 @@ msgstr ""
"Por havi plu da subdiskoj, bonvole forigu unu por povi krei etendigitan\n"
"subdiskon"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Skribu subdiskotabelon"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Aýtomata muntado de demetebla medio"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Elektu dosieron"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1664,11 +1518,11 @@ msgstr ""
"La rezerva subdisktabelo ne estas la sama grandeco\n"
"Ću daýras tamen?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Averto"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1676,124 +1530,131 @@ msgstr ""
"Enţovu disketon en drajvo\n"
"Ćiuj datenoj sur tiu disketo estos perdata"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Provas savi subdisktabelon"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Montru informon"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Surmetingo"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcioj"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Regrandecigu"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Movu"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatu"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Muntu"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Aldonu al RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Aldonu al LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Malmuntu"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Forigu de RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Ţanřu RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Uzu por retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Komenca sektoro: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Surmetingo: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Prefero: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Ţanřu subdiskspecon"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kiun dosierosistemo vi deziras uzi?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kie vi deziras munti retrokonektan dosieron %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kie vi deziras munti aparato %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1801,132 +1662,139 @@ msgstr ""
"Ne povas malfiksi surmetingon ćar ći tiu subdisko estas uzata por\n"
"retrokonektado. Unue forigu la retrokonektadon."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Kalkulas FAT dosiersistemajn limojn"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Regrandecigas"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ći tiu subdisko ne estas regrandecigebla"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Ćiuj datenoj en ći tiu subdisko devus esti rezervata"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Post vi regrandecigas subdiskon %s, ćiuj datenoj en ći tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Elektu la novan grandecon"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Al kiu disko vi deziras movi?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektoro"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Al kiu sektoro vi deziras movi?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Movante"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Movas subdisko..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nova"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr ""
"Elektu ekzistantan RAID (Redundanca Aro de Malmultekostaj Diskoj) por\n"
"aldoni al"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Vi ne povas uzi ći tiun subdiskon por retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Retrokonekta dosieronomo: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Vera nomo"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Alia retrokonektado jam uzas tiun dosieron, elektu alian"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Dosiero jam ekzistas. Ću vi deziras uzi řin?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Modulaj opcioj:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "aparato"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivelo"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "grandeco de pecoj"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Zorgu: ći tiu operacio estas danřera."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Kiun specon de subdiskado?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Ći tiu pakaźo devus esti promociata.\n"
+"Ću vi certas ke vi deziras malelekti řin?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1938,7 +1806,7 @@ msgstr ""
"Aý vi uzos LILO kaj ři ne funkcios, aý vi ne uzos LILO kaj vi ne bezonas\n"
"/boot."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1950,7 +1818,7 @@ msgstr ""
"subdiskon. Se vi intencas uzi la LILO startadministranto, zorgu aldoni\n"
"/boot subdiskon."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1960,139 +1828,139 @@ msgstr ""
"Neniu startţargilo povas trakti tiun sen /boot subdisko.\n"
"Do zorgu aldoni /boot subdiskon."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La subdisktabelo de drajvo %s estos skribata al disko!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Vi bezonos restarti antaý ol la ţanřo povas efektiviři"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Post vi formatas la subdiskon %s, ćiuj datenoj en ći tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatas"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatas subdiskon %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid malsukcesis"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Distingivo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Aparato: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-a diskingolitero: %s (nur konjekto)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Speco: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nomo: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Komenco: sektoro %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Grandeco: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoroj"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "De cilindro %d al cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatita\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ne formatita\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Muntita\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID (Redundanca Aro de Malmultekostaj Diskoj) md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Retrokonekta(j) dosiero(j): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2100,27 +1968,27 @@ msgstr ""
"Subdisko startata defaýlte\n"
" (por MS-DOS starto, ne por \"lilo\")\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivelo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Grandeco de pecoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Retrokonekta dosieronomo: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2128,7 +1996,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2136,65 +2004,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Grandeco: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrio: %s cilindroj, %s kapoj, %s sektoroj\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informo: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Subdiskotabelospeco: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "će buso %d identigaźo %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcioj: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ći tiu pasvorto ests tro simpla (ři devas esti almenaý %d signoj longa)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "La pasvortoj ne egalas"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2205,36 +2073,66 @@ msgstr "Ţanřu subdiskspecon"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Aýtentikigado"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Interreto"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Salutnomo"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Salutnomo"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domajno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNA servilo"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatado de %s malsukcesis"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne scias kiel formati %s kiel speco %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "eraro dum malmunti %s: %s"
@@ -2251,68 +2149,322 @@ msgstr ""
msgid "server"
msgstr "servilo"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Surmetingoj devas komenci kun antaýa /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jam estas subdisko kun surmetingo će %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ći tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Eraro dum malfermado de %s por skribi: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Eraro okazis - neniuj validaj aparatoj estis trovata sur kiuj vi povas krei "
"novajn dosiersistemojn. Bonvolu kontroli vian ekipaźon por la kaýzo de ći "
"tiu problemo."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Vi ne havas iujn ajn subdiskojn!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Malproksima printilo"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Genera"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memoro de Karto (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatas"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Ţanřu subdiskspecon"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Ćesu"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Helpo"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Helpo"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Helpo/_Pri..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Muso"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoro de Karto (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Nuligu"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Muso"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Priskribo"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Aýtentikigado"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Elektu dosieron"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Prokura kluzaparato"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 butonoj"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detektado de fiksdisko(j)"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Vidu hardvaran informon"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Montru informon"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Konfiguru muson"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Duobla surmetingo %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Bonvole atendu"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundoj"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Legas datumbason de CUPS peliloj..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Aýtomate esploru"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2326,7 +2478,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2397,9 +2549,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2588,7 +2739,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2600,9 +2751,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2648,21 +2798,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2678,9 +2827,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2701,9 +2850,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2813,38 +2961,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2918,11 +3060,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2946,7 +3088,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2961,7 +3103,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2976,7 +3118,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2992,7 +3134,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3001,23 +3143,23 @@ msgstr ""
"Bonvolu elekti la řustan pordon. Ekzemple, la COM1-a\n"
"pordo sub MS Vindozo estas nomata ttyS0 sub GNU/Linukso."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3039,7 +3181,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3061,7 +3203,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3069,7 +3211,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3090,7 +3232,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3114,7 +3256,7 @@ msgstr ""
"al iu ajn. Ćiokaze vi povas forstreki la respondajn enskribojn. Sed\n"
"ćiokaze, vi bezonos startdiskon por starti ilin!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3130,29 +3272,28 @@ msgstr ""
"Krom se vi scias precize kion vi faras, elektu \"Unua sektoro de\n"
"drajvo (MBR)\""
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3161,7 +3302,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3187,7 +3328,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX provos serći PCI-a(j)n SCSI-a(j)n adaptilo(j)n\n"
@@ -3211,7 +3352,7 @@ msgstr ""
"de dokumentaźo de aparato, aý de la TTT-ejo de la fabrikanto\n"
"(se vi havas atingon al la reto)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3221,9 +3362,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3235,7 +3375,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3261,7 +3401,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3288,18 +3428,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3307,12 +3446,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3328,14 +3466,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3346,7 +3484,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3354,12 +3492,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3374,26 +3512,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Eraro legante dosiero %s"
@@ -3424,7 +3562,7 @@ msgstr "Vi devas havi interţanřan subdiskon"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3432,61 +3570,61 @@ msgstr ""
"\n"
"Ću vi deziras daýri tamen?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vi devas havi interţanřan subdiskon"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Uzu liberan spacon"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Ne ekzistas subdiskojn por uzi"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Uzu la Vindoza subdiskon por retrokonektado"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kiun subdiskon vi deziras uzi por meti Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Elektu la grandecojn"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Radikosubdiska grandeco en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Interţanřa subdiska grandeco en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kiun subdiskon vi deziras regrandecigi?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3495,12 +3633,15 @@ msgstr ""
"La regrandecigilo por la FAT (Dosiero-Atingo-Tablo) ne povas trakti\n"
"vian subdiskon, la sekvanta eraro okazis: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Via Vindoza subdisko estas tro fragmentigata, bonvole uzu ``defrag'' antaýe"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3522,56 +3663,56 @@ msgstr ""
"instaladon. Ankaý vi devus fari rezervan kopion de via dateno.\n"
"Kiam vi estas certa, klaku \"Jeso\"."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Kiun grandecon vi deziras teni por Vindozo?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "subdisko: %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Regrandeciřo de FAT malsukcesis: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Ne ekzistas FAT-ajn (Dosiero-Atingo-Tablo) subdiskojn por regrandecigi\n"
"aý uzi kiel retrokonektaj subdiskoj (aý ne estas sufića da spaco)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Forviţu la tutan diskon"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Forigu Vindozon"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Vi havas pli ol unu fiksdisko, sur kiu vi deziras instali Linukson?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Ćiuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Uzu fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3580,12 +3721,12 @@ msgstr ""
"Nun vi povas dispartigi %s.\n"
"Kiam vi finiřos, ne forgesu savi kun `w'."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Mi ne povas aldoni plu da subdiskoj"
@@ -3594,16 +3735,16 @@ msgstr "Mi ne povas aldoni plu da subdiskoj"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "La Dispartigsorćilo de DrakX trovis ći tiujn solvojn:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Dispartigado malsukcesis: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Startado de la reto"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Haltas de la reto"
@@ -3615,12 +3756,12 @@ msgstr ""
"Eraro okazis, sed mi ne scias kiel trakti řin bone.\n"
"Daýri je via propra risko."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duobla surmetingo %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3632,12 +3773,12 @@ msgstr ""
"Kontrolu la KDROM sur instalata komputilo per\n"
"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Neniu disketilo havebla"
@@ -3647,9 +3788,9 @@ msgstr "Neniu disketilo havebla"
msgid "Entering step `%s'\n"
msgstr "Eniras paţon `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3659,203 +3800,158 @@ msgstr ""
"instaladon. Por ći tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
"tajpu `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Instalklaso"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Bonvole, elektu unu el la sekvantaj specoj de instalado:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "La totala grandeco de la grupoj vi elektis estas proksimume %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se vi volas instali malpli ol ći tiu grandeco,\n"
-"elektu la procenton el la pakaźoj kiuj vi deziras instali.\n"
-"\n"
-"Malalta procento instalos nur la plej gravajn pakaźojn;\n"
-"100%% instalos ćiujn pakaźojn."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Vi havas spacon će via disko por nur %d%% da ći tiuj pakaźoj.\n"
-"\n"
-"Se vi deziras instali malpli ol tiom,\n"
-"elektu la procenton el la pakaźoj kiun vi deziras instali.\n"
-"Malalta procento instalos nur la plej gravajn pakaźojn;\n"
-"%d%% instalos tiom pakaźojn kiom eblajn."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Vi povos elekti ilin pli precize en la sekvanta paţo."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procento da pakaźoj por instali"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Elektado de Pakaźaj Grupoj"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Elektado de individuaj pakaźoj"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tuta grandeco: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Malbona pakaźo"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nomo: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Grandeco: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Graveco: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Vi ne povas elekti ći tiun pakaźon ćar ne estas sufiće da spaco por instali\n"
"řin."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "La sekvaj pakaźoj estos instalataj"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "La sekvaj pakaźoj estos malinstalataj"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Vi ne povas elektu/malelektu ći tiun pakaźon"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ći tiu estas deviga pakaźo, vi ne povas malelekti řin"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Vi ne povas malelekti ći tiun pakaźon. Ři estas jam instalita."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ći tiu pakaźo devus esti promociata.\n"
"Ću vi certas ke vi deziras malelekti řin?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Vi ne povas malelekti ći tiun pakaźon. Ři devus esti promociata."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalu"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Ţargu/Konservu sur disketo"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Elektado de individuaj pakaźoj"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Eliru instalprogramon"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Elektu la pakaźojn kiuj vi deziras instali"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalanta"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Taksas"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tempo restanta "
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
#, fuzzy
-msgid "Please wait, preparing installation"
+msgid "Please wait, preparing installation..."
msgstr "Preparas instaladon"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakaźoj"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalanta pakaźo %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Akceptu"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Malakceptu"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3871,17 +3967,17 @@ msgstr ""
"kiam vi finos.\n"
"Se vi ne havas řin, klaku \"Nuligu\" por eviti la instaladon de ći tiu KDROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Ću vi deziras daýri tamen?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Estis eraro ordigi pakaźojn:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Estis eraro dum instalado de pakaźoj:"
@@ -3926,11 +4022,11 @@ msgstr "Eraro okazis"
msgid "Do you really want to leave the installation?"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licenca kontrakto"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3945,7 +4041,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4051,113 +4147,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klavaro"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Bonvole, elektu vian klavaran aranřon."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Kiun instalklaso deziras vi?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalu/Řisdatigu"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Ću tiu ći estas instalado aý řisdatigado?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Rekomendata"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Spertulo"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Řisdatigu"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Elektado de individuaj pakaźoj"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muspordo"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Konfiguras PCMCIA kartojn..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Konfiguras IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "neniuj haveblaj subdiskoj"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Elektu surmetingojn"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4169,7 +4269,7 @@ msgstr ""
"\n"
"Ću vi konsentas perdi ćiujn subdiskojn?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4177,134 +4277,137 @@ msgstr ""
"DiskDrake malsukcesis řuste legi la subdisktabelon.\n"
"Daýri je via propra risko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Radikosubdisko"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Kiu estas la radikosubdisko (/) će via sistemo?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Vi bezonas restarti por la ţanřoj al la subdisktabelo efektivigi"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Ću kontrolas malbonajn blokojn?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatas subdiskojn"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreas kaj formatas dosieron %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nesufića interţanřospaco por plenumi instalado, bonvolu aldoni iom"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Serćas haveblajn pakaźojn"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Serćas haveblajn pakaźojn"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Trovadas pakaźojn por promocii"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Vi ne povas malelekti ći tiun pakaźon. Ři estas jam instalita."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Via komputilo ne havas sufiće da spaco por instalado aý promocio (%d > %d)."
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompleta (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimuma (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Rekomendata (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Ţargu de disketo"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Ţargas de disketo"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Elektado de Pakaźoj"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Konservu sur disketo"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4315,16 +4418,16 @@ msgstr ""
"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
"\"."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "KDROM etikedata \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Preparas instaladon"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4333,23 +4436,23 @@ msgstr ""
"Instalas pakaźo %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Post-instala konfigurado"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Enţovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4414,161 +4517,192 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaźoj"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Elektu spegulon de kiu havigi la pakaźojn"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaźoj"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ću via hardvara horlořo estas řustigata en GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Servilo"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Neniu printilo"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Ću vi havas alian?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Muso"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printilo"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-karto"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Sonkarto"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Forigu Vindozon"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokaj dosieroj"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Difinu pasvorton de root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Neniu pasvorto"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ći tiu pasvorto ests tro simpla (ři devas esti almenaý %d signoj longa)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Aýtentikigado"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Aýtentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Servilo"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Aýtentikiga NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Servilo"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Aýtentikiga LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS Domajno"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP Servilo"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4596,19 +4730,19 @@ msgstr ""
"Se vi deziras krei startdisketon por via sistemo, enţovu disketon en la\n"
"unua drajvo kaj klaku \"JES\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Unua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Dua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Ellasu"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4632,7 +4766,7 @@ msgstr ""
"sistemaj paneoj. Ću vi deziras krei startdisketo por via sistemo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4641,28 +4775,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bedaýrinde, neniu disketdrajvo havebla"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elektu la disketdrajvo vi deziras uzi por krei la startdisketon"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Kreas startdisketon"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparas startţargilon"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4670,11 +4804,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Ću vi deziras uzi aboot-on?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4682,16 +4816,16 @@ msgstr ""
"Eraro daýre mi instalis \"aboot\",\n"
"Ću mi devus provi perforte instali eć se tio detruas la unuan subdiskon?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalu restart-ţargilon"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalado de startţargilo malsukcesis. La sekvanta eraro okazis:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4702,25 +4836,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Enţovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Kreas aýtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4731,18 +4865,22 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Kreu aýtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4751,15 +4889,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Aýtomata"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Reludu"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Elektado de individuaj pakaźoj"
@@ -4787,418 +4925,402 @@ msgstr ""
msgid "Choose a file"
msgstr "Elektu agon"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Bonvole atendu"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informo"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Etendu Arbon"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Maletendu Arbon"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Ţanřu inter ebena kaj ordigita je grupoj"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Malbona elektaźo, provu denove\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Via elektaźo? (defaýlo estas %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Via elektaźo? (defaýlo estas %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcioj: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Ću vi deziras uzi aboot-on?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Via elektaźo? (defaýlo estas %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Ćeśa (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Germana"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak-a"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Hispana"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finna"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Franca"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvega"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pola"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusa"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sveda"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Unuiřinta Regna klavaro"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Usona klavaro"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albana"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armena (malnova)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armena (skribmaţina)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbajřana (latina)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgara"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazila (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusa"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Svisa (germana aranřo)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Svisa (franca aranřo)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Ćeśa (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Germana (neniom da mortaj klavoj)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dana"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak-a (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak-a (Norvega)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak-a (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estona"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Kartvela (\"Rusa\" aranřo)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Kartvela (\"Latina\" aranřo)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Greka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hungara"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israela"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israela (fonetika)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Irana"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islanda"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itala"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japana 106 klavoj"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korea klavaro"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinamerika"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litova AZERTY-a (malnova)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litova AZERTY-a (nova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litova \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litova \"fonetika\" QWERTY-a"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Loko"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedona"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nederlanda"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pola (qwerty aranřo)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pola (qwertz aranřo)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugala"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Kebeka)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumana (qwertz-a)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumana (qwerty-a)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusa (Yawerty-a)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovena"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaka (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaka (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbajřana (cirila)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabelo"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turka (tradicia \"F\" modelo)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turka (moderna \"Q\" modelo)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajna"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Usona klavaro (internacia)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnama \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslava (latina/cirila)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5211,7 +5333,31 @@ msgstr "Cirklaj surmetingoj %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefonnumero"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatu subdiskojn"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5252,10 +5398,6 @@ msgstr "1 butona"
msgid "Generic 2 Button Mouse"
msgstr "Nespecifa 2 Butona Muso"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Genera"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rado"
@@ -5321,39 +5463,55 @@ msgstr "neniu"
msgid "No mouse"
msgstr "Neniu Muso"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MOVU VIAN RADON!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finu"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Sekvanta ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Antaýa"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ću tio ći pravas?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informo"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Etendu Arbon"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Maletendu Arbon"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Ţanřu inter ebena kaj ordigita je grupoj"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konektu al la Interreto"
@@ -5402,7 +5560,7 @@ msgstr ""
"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanću la\n"
"aparatokonfigurilon."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Elektu la retan interfacon"
@@ -5416,7 +5574,7 @@ msgstr ""
msgid "no network card found"
msgstr "neniu retkarto trovita"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Konfiguras reto"
@@ -5432,15 +5590,15 @@ msgstr ""
"Via poţtejo devus esti plene specifita poţtejo,\n"
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Poţtejo"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "ISDN-a Konfiguraźon"
@@ -5490,7 +5648,7 @@ msgstr "ISDN-a Konfiguraźon"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Elektu vian interretprovizanton.\n"
" Se řin ne estas en la listo, elektu Nelistiřitan"
@@ -5513,14 +5671,14 @@ msgstr "La cetero de la mondo"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"La cetero de la mondo \n"
" neniom da D-Kanelo (lukontraktataj lineoj)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Kiun protokolon vi deziras uzi?"
#: ../../network/isdn.pm_.c:199
@@ -5544,7 +5702,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Se via havas ISA-an karton, la valoro sur la sekvanta ekrano devus esti "
@@ -5562,13 +5721,13 @@ msgid "Continue"
msgstr "Ću mi devus daýri?"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kiu estas via ISDN-a karto?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Mi detektis ISDN-an PCI-an Karton, sed mi ne scias la specon. Bonvole "
"elektu\n"
@@ -5589,99 +5748,99 @@ msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
msgid "Dialup options"
msgstr "Telefon-konektaj opcioj"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nomo de konekto"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonnumero"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Salutnomo"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP (Pasvorta Aýtentikigada Protokolo)"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Programeto-bazata"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Finaparato-bazata"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domajna nomo"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Unu DNS-a Servilo (nedeviga)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Du DNS-a Servilo (nedeviga)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konektu"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Malkonektu"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Konfiguru retumon"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Interreta konektaźo kaj konfiguro"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5693,12 +5852,12 @@ msgid ""
"Press OK to continue."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Reta Konfiguraźo"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5706,105 +5865,111 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Elektu la defaýltan uzulon:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Spertuloreřimo"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detektas aparatojn..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Duobla surmetingo %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "LAN Konfiguraźo"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Reta interfaco"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN Konfiguraźo"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elektu la ilon kiun vi deziras instali"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
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:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Disdividado de Interreta Konekto"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Ću vi deziras starti vian konektaźon je startado de la sistemo?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Reta Konfiguraźo"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5812,30 +5977,30 @@ msgid ""
"%s"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
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:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
#, fuzzy
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -5845,7 +6010,7 @@ msgstr ""
"Simple klaki JES por teni la konfiguron de ći tiu aparato.\n"
"Se vi modifos la subajn kampojn, vi ţanřos ći tiun konfiguron."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5855,38 +6020,43 @@ msgstr ""
"Ćiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
"(ekzemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfiguras retan aparaton %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 pelilo: %s\n"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-adreso"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Retmasko"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Aýtomata IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Kreu praţargdisketon"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5898,373 +6068,378 @@ msgstr ""
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
"Vi ankaý povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNA servilo"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Prokura kluzaparato"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfigurado de prokuraj serviloj"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP prokura servilo"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP prokura servilo"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Prokura servilo devus esti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Prokura servilo devus esti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interreta Konfigurado"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Ću vi deziras provi konekti al la interreto nun?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konfigurado de Konekto"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Bonvole plenigu aý marku la suban kampon"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ de Karto"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memoro de Karto (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "I/O (Eneligo) de Karto"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "I/O 0 (Eneligo 0) de Karto"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "I/O 1 (Eneligo 1) de Karto"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Via persona telefonnumero"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nomo de interretprovizanto (ekz-e provizanto.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefonnumero de interretprovizanto"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provizanto DNS 1 (nedeviga)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provizanto DNS 2 (nedeviga)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Elektu vian klavaron"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Diskuma modalo"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Speco de konekto"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Speco de konekto"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Konta Salutnomo (uzula nomo)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Konta Pasvorto"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "muntado malsukcesis: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Ći tiu platformo ne subtenas etendatajn subdiskojn"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Vi havas truon en via subdisktabelo sed mi ne povas uzi řin.\n"
"La sola solvo estas movi viajn ćefajn subdiskojn por situigi la truon\n"
"apud la etendataj subdiskoj."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaýris el dosiero %s malsukcesis: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Malbona rezerva dosiero"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Eraro skribante al dosiero %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "havenda"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "grava(j)"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "tre agrabla(j)"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "agrabla(j)"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "elbe"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Loka printilo"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Malproksima printilo"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Malproksimaj lpd servilo"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Reta Printilo (TCP/ingo)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Vindozo 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Printservilo"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printila Aparato URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Loka printilo"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Malproksima printilo"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Eraro skribante al dosiero %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modulo %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP de SMB servilo"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Defaýlta)"
@@ -6287,12 +6462,12 @@ msgstr ""
"ći tie; printiloj estos aýtomate dektektataj. Se vi havas dubojn,\n"
"elektu \"Malproksima CUPS servilo\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN Konfiguraźo"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Malproksima CUPS-a servilo"
@@ -6323,7 +6498,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6332,7 +6507,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Pordo"
@@ -6341,22 +6516,13 @@ msgstr "Pordo"
msgid "Automatic CUPS configuration"
msgstr "Post-instala konfigurado"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detektas aparatojn..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Provu pordojn"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6369,14 +6535,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6394,12 +6560,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6413,11 +6579,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6427,35 +6593,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Provu pordojn"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Duobla surmetingo %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6463,43 +6633,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6507,7 +6677,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6515,73 +6685,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Instalanta pakaźo %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Instalanta pakaźo %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalanta pakaźo %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Malproksimaj lpd Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6591,31 +6771,31 @@ msgstr ""
"printservilo kaj la printviconomon će tiu servilo en kiun taskoj devus\n"
"esti metata."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Malproksima poţtejo"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Malproksima poţtejo"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Malproksima poţtejo"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Vindozo 9x/NT) Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6630,35 +6810,35 @@ msgstr ""
"aldone al la opuzan nomon de la printilo vi deziras atingi kaj iun ajn\n"
"taýgan salutnomon, pasvorton, kaj laborgrupan informon."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Poţtejo de SMB servilo"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Opuza nomo"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Laborgrupo"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6682,7 +6862,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6691,7 +6871,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6699,11 +6879,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6716,28 +6896,28 @@ msgstr ""
"printvican nomon por la printilo vi deziras atingi kaj iun ajn taýgan\n"
"salutnomon kaj pasvorton."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printservilo"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Printvica Nomo"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Ing-Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6748,60 +6928,56 @@ msgstr ""
"Por printi al inga printilo, vi bezonas provizi la\n"
"poţtejon de la printilo kaj opcie la pordnumeron."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Printilaj Poţtejo"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Printilaj Poţtejo"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nomo de printilo"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Priskribo"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Loko"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6816,28 +6992,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Ću tio ći pravas?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Printilan Konekton"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Kiun specon de printilo vi havas?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6846,18 +7022,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6867,12 +7043,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6880,7 +7056,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6893,7 +7069,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6903,34 +7079,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ću vi deziras provi printado?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Provu pordojn"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6938,45 +7114,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Jes, printu ambaý de la provpařojn"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Printilo"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Laýnorma"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Printas provpařo(j)n..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Printas provpařo(j)n..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Printas provpařo(j)n..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Printas provpařo(j)n..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6992,7 +7168,7 @@ msgstr ""
"\n"
"Ću ři řuste funkcias?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7002,16 +7178,16 @@ msgstr ""
"Ći tiu eble postulas iom da tempo antaý ol la printilo komencas.\n"
"Ću ři řuste funkcias?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7020,15 +7196,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7037,49 +7213,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7089,7 +7265,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7098,30 +7274,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Malfermu"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Haltas de la reto"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Malfermu"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7129,38 +7316,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7170,51 +7357,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7222,61 +7409,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Startas vian konektaźon..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Konfiguru retumon"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7284,12 +7471,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Konfiguras reto"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7299,34 +7486,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alta"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoja"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7341,12 +7528,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7360,70 +7547,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Elektu Printilan Konekton"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Instalanta pakaźo %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Ću vi deziras konfiguri printilon?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Printilo"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7434,7 +7621,7 @@ msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli aý ţanři la ekzistantajn."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7444,139 +7631,143 @@ msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli aý ţanři la ekzistantajn."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Konfiguru retumon"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normala Modalo"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Ćesu"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Disdividado de Interreta Konekto"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printilan Konekton"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Printas provpařo(j)n..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Legas datumbason de CUPS peliloj..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7656,24 +7847,60 @@ msgstr "La pasvortoj ne egalas. Provu denove!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne povas aldoni subdiskon al _formatita_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ne povas skribi dosieron %s."
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid malsukcesis"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid malsukcesis (eble raidtools mankas)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ne estas sufićaj subdiskoj por RAID nivelo %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"vi devus uzi ći tiun nivelon zorge. Ři faras vian komputilon pli facila\n"
+"por uzi, sed delikatega: vi devus neniam uzi ři surrete.\n"
+"Ři ne havas pasvortojn."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Kun ći tiu sekurnivelo, uzado de ći tiu komputilo kiel servilo ebliřas.\n"
+"La sekureco nun estas sufiće alta por uzi la sistemon kiel servilo kiu\n"
+"akceptas konektojn de multaj klientoj."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "LAN Konfiguraźo"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcioj"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7729,7 +7956,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7796,7 +8023,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7872,7 +8099,7 @@ msgstr ""
"La pordmapservilo devas esti uzata će komputiloj kiuj agas kiel serviloj\n"
"por protokoloj kiuj uzas la RPC mekanismon."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -7969,7 +8196,7 @@ msgstr "Interreto"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Sistema modalo"
@@ -8094,6 +8321,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Konekti al la interreto"
@@ -8197,6 +8425,16 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalanta pakaźo %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr ""
+"Bonvole adiaýu kaj sekve uzu Kontrol-Alt-Retropaţo (Ctrl-Alt-Backspace)."
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Bonvolu resaluti en %s-n por aktivigi la ţanřojn."
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8205,6 +8443,159 @@ msgstr ""
"Mi ne povas legi vian subdisktabelon, ři estas tro difektita por mi :(\n"
"Mi penos daýri per blankigi difektitajn subdiskojn"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Interreta Konfigurado"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datumbazoj"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datumbazoj"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Aldonu uzanto"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Helpo"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ne konektita"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Forigu"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Elektu dosieron"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Aldonu uzanto"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Mi konfiguras..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "rekonfiguru"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Enţovu disketon en drajvo %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Neniu disketilo havebla"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8246,6 +8637,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Kreas aýtoinstalan disketon"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8254,47 +8650,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratulojn!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalu"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Aldonu uzulon"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8302,15 +8691,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8318,709 +8699,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Eraro legante dosiero %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Elektado de Pakaźoj"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Forigu Vindozon"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Elektu Printilan Konekton"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Bonvole, elektu vian klavaran aranřon."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Reta interfaco"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Detektado de fiksdisko(j)"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Salutnomo"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Modulaj opcioj:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Musaparato: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcioj"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Bonvole, provu la muson"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN Konfiguraźo"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Elektu Printilan Konekton"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaýru de disketo"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Alia"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Instalu sistemon"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Akomodata"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Helpo"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Antaýa"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Stato:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Sekvanta ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Elektu pakaźojn"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "La sekvaj pakaźoj estos instalataj"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Konservu en dosiero"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfiguraźo"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfiguraźo"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9052,7 +9496,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9061,7 +9505,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9102,7 +9546,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9130,12 +9574,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -9152,7 +9601,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9192,7 +9641,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9203,7 +9652,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9216,7 +9665,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9260,104 +9709,536 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalado de %s malsukcesis. La sekvanta eraro okazis:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Konekti al la interreto"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Spertulo"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Muso"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Malproksima printilo"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Opuza nomo"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printilo"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "ISDN-a Konfiguraźon"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Aýtentikigado"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Elektado de Pakaźoj"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Bonvole atendu"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Eliru instalprogramon"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "porto"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "ISDN-a Konfiguraźon"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "muntado malsukcesis: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Poţtejo: "
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "Interreto"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Speco:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Kluzo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "Interreto"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Stato:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Konfiguru servojn"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN Konfiguraźo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Pelilo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfaco"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokolo"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Stato:"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Konfiguru lokan reton"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Sorćisto..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Apliku"
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Provu konfiguraźon"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Konektita"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ne konektita"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konektu..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Malkonektu..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN Konfiguraźo"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptilo %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Aktiva"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Aktiva"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Interreta konektaźo kaj konfiguro"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Interreta konektaźo kaj konfiguro"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Speco de konekto"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Kluzo"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uzado: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-iso8859-3,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulonomo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Grandeco"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Startdiskokreado"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "defaýlta"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Eraro DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Kerna versio"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Řenerala"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Spertulejo"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opciaj argumentoj"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Aldonu modulon"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "devigu"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "se bezonata"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "forlasu SCSI-ajn modulojn"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "forlasu RAID-ajn modulojn"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Forprenu modulon"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Skribu"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Konstruu la diskon"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Kontrolu ke medio estas en la aparato %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Ne estas medio en aparato %s.\n"
+"Bonvole enţovu řin."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne povis forki: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ne povis řuste fermi mkbootdisk-on: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "neniu retkarto trovita"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Finata"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Preparas instaladon"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "limigu"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "limigu"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9366,121 +10247,120 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formatu subdiskojn"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Surmetingo"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Oficejo"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Ćesigu"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Printilo"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Instalu sistemon"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Elektu dosieron"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Malproksima printilo"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalu"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Eliru instalprogramon"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -9490,33 +10370,33 @@ msgid ""
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "malebligu"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "forsendu"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "rekonfiguru"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "Detektas aparatojn..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -9526,20 +10406,20 @@ msgid ""
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ebligu"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9555,21 +10435,21 @@ msgstr ""
"\n"
"Ću vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfaco %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9577,11 +10457,11 @@ msgstr ""
"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanću la\n"
"aparatokonfigurilon."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Reta interfaco"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9596,19 +10476,19 @@ msgstr ""
"\n"
"Ću vi deziras konfiguri vian Lokan Reton (LAN) kun ći tiu adaptilo?"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Bonvole elektu kiun retadaptilon estos konektata al via Loka Reto (LAN)."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9618,17 +10498,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Post-instala konfigurado"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9639,7 +10519,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9651,33 +10531,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP de SMB servilo"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ebla konflikto pri Loka-Reta adreso trovata en nuna konfiguro de %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Konfiguraźo de barilo detektata!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9685,50 +10565,50 @@ msgstr ""
"Averto. Ekzistanta konfiguraźo de barilo detektata. Vi eble devas permane\n"
"fiksi řin poste de la instalado."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Mi konfiguras..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Mi konfiguras komandodosierojn, instalas programojn, startas servilojn..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemoj instalante pakaźon %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
#, fuzzy
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Interreta konektaźo kaj konfiguro"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9738,217 +10618,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ISDN-a Konfiguraźon"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "muntado malsukcesis: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Poţtejo: "
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "Interreto"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Speco:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Kluzo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "Interreto"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Stato:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Konfiguru servojn"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Pelilo"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaco"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokolo"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Stato:"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Konfiguru lokan reton"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Sorćisto..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Apliku"
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Provu konfiguraźon"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Konektita"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ne konektita"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konektu..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Malkonektu..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptilo %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktiva"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktiva"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Interreta konektaźo kaj konfiguro"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Interreta konektaźo kaj konfiguro"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Speco de konekto"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Kluzo"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Elektas sekurnivelon"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -9958,94 +10627,130 @@ msgstr "Konekti al la interreto"
msgid "Choose the tool you want to use"
msgstr "Elektu la ilon kiun vi deziras instali"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanada (Kebeka)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Eýropo"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Franca"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islanda"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Eýropo"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seria"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Estis eraro dum instalado de pakaźoj:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10094,7 +10799,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10109,7 +10814,7 @@ msgstr "/Dosiero/_Nova"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>N"
+msgstr "<stir>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10117,7 +10822,7 @@ msgstr "/Dosiero/_Malfermu"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>M"
+msgstr "<stir>M"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10125,7 +10830,7 @@ msgstr "/Dosiero/_Savu"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>S"
+msgstr "<stir>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
@@ -10143,10 +10848,6 @@ msgstr "/_Opcioj"
msgid "/Options/Test"
msgstr "/Opcioj/Provu"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Helpo"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Helpo/_Pri..."
@@ -10210,7 +10911,7 @@ msgstr "Kalendaro"
msgid "Content of the file"
msgstr "Enhavoj de la dosiero"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10219,79 +10920,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "bonvole atendu, mi vortanalizas la dosieron: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Konfiguraźon"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domajna nomo"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "2a Etendata (Ext2)"
+msgid "Ftp Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Datumbazoj"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Servilo"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Servilo"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servilo"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printservilo"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "Servilo"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatas"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Savu Kiel..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "neniu serial_usb (seria USB) trovita\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Ću vi deziras emuli trian musbutonon?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Legas datumbason de CUPS peliloj..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Detektas aparatojn..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10335,6 +11068,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Konfiguraźo de barilo"
@@ -10679,10 +11424,6 @@ msgid "Multimedia - Sound"
msgstr "Plurmedia - Sono"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentaro"
@@ -10789,10 +11530,6 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr ""
@@ -10840,931 +11577,160 @@ msgstr "Plurmedia - KD-ROM Kreado"
msgid "Scientific Workstation"
msgstr "Laborstacio"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Ćesigu"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Finata"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Elektu la defaýltan uzulon:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Malproksima printilo"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Nun vi povas provizi řiajn opciojn al modulo %s."
+#~ msgid "Choose options for server"
+#~ msgstr "Elektu opciojn por servilo"
-#~ msgid "mount failed"
-#~ msgstr "muntado malsukcesis"
+#~ msgid "Monitor not configured"
+#~ msgstr "Ekrano ne estas konfigurata"
-#~ msgid "Low"
-#~ msgstr "Malalta"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafika karto ne jam konfigurita"
-#~ msgid "Medium"
-#~ msgstr "Meza"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Vi ne jam elektas distingivojn"
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Malmultaj plibonigoj će ći tiu sekurnivelo, la ćefa estas ke ři havas "
-#~ "pli\n"
-#~ "multajn sekurecajn avertojn kaj kontrolojn."
-
-#~ msgid "Boot mode"
-#~ msgstr "Starta modalo"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Spertulo"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linukso administras tempon en GMT aý \"Grenvića Meza Tempo\" kaj "
-#~ "tradukas řin\n"
-#~ "en lokan tempon laý la horzono vi elektis."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Konektu al la Interreto"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Malkonektu el la Interreto"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfiguru interretan konektaźon"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Al kiu disko vi deziras movi?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informo"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnoma Laborstacio"
-
-#~ msgid "authentification"
-#~ msgstr "aýtentikigado"
-
-#~ msgid "user"
-#~ msgstr "uzanto"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Bonvole, elektu la specon de via muso."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Ćesu"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Aýtomata muntado de demetebla medio"
-
-#~ msgid "Active"
-#~ msgstr "Aktiva"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Ne"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Printilo, tipo \"%s\", estas detektita će "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Loka Printila Aparato"
-
-#~ msgid "Printer Device"
-#~ msgstr "Printila Aparato"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Malproksima CUPS-a servilo"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Malproksima CUPS-a servilo"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linukso"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistema modalo"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Alia"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Bonvole, elektu vian klavaran aranřon."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Bonvolu klaki sur subdiskon"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Speco: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Malbona rezerva dosiero"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Konfiguru X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Printila Aparato"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Nuligu"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Jeso"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Malfermu"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Startas vian konektaźon..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Fermas vian konektaźon..."
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Kiel vi deziras konekti al la Interreto?"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Elektu la grandecon kiu vi deziras instali"
-
-#~ msgid "Total size: "
-#~ msgstr "Tuta grandeco: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Bonvolu atendi"
-
-#~ msgid "Total time "
-#~ msgstr "Tuta tempo "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Uzu ekzistantan konfiguron de X11 (X-fenestroj)?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Al kiu aparato estas via printilo konektata\n"
-#~ "(notu ke /dev/lp0 egalas LPT1:)?\n"
+#~ "\n"
+#~ "penu ţanři iom da parametroj"
-#~ msgid "$_"
-#~ msgstr "$_"
+#~ msgid "An error occurred:"
+#~ msgstr "Eraro okazis:"
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Averto, la retadaptilo estas jam konfigurata.\n"
-#~ "Ću vi deziras rekonfiguri řin?"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Mi eliros post %d sekundoj"
-#~ msgid "New"
-#~ msgstr "Nova"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ću tio ći pravas?"
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Malproksima printvico"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Eraro okazis, penu ţanři iom da parametroj"
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Bonvolu klaki sur subdiskon"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 servilo: %s"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigueco (%s), esti pli preciza\n"
+#~ msgid "Show all"
+#~ msgstr "Montru tuton"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (defaýlto estas %s) "
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Preparas X-Fenestran konfiguraźon"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Via elektaźo (defaýlto estas %s enigu `neniu' por elekti neniu) "
+#~ msgid "What do you want to do?"
+#~ msgstr "Kion vi deziras fari?"
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Ću vi deziras provi la konfiguraźon?"
+#~ msgid "Change Monitor"
+#~ msgstr "Ţanřu Ekranon"
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Ću vi konsentas?"
+#~ msgid "Change Graphics card"
+#~ msgstr "Ţanřu Grafika karto"
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Krom se vi scias precize alie, la kutima elekto estas \"/dev/hda\"\n"
-#~ " (unua ćefa IDE-a disko) aý \"/dev/sda\" (unua SCSI-a disko)."
+#~ msgid "Change Server options"
+#~ msgstr "Ţanřu Servilajn opciojn"
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Speco de konekto"
+#~ msgid "Change Resolution"
+#~ msgstr "Ţanřu distingivon"
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Elektu la defaýltan uzulon:"
+#~ msgid "Show information"
+#~ msgstr "Montru informon"
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Bonvole, provu la muson"
+#~ msgid "Test again"
+#~ msgstr "Provu denove"
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "Bonvole elektu vian preferatan lingvon por instalado kaj sistema uzado."
+#~ msgid "Setting security level"
+#~ msgstr "Elektas sekurnivelon"
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Elektu la aranřon de via klavaro el la listo supre"
+#~ msgid "Graphics card"
+#~ msgstr "Grafika karto"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Elektu:\n"
-#~ "\n"
-#~ " - Akomodata: Se vi sufiće konas GNU/Linukson, vi povas elektu la ćefan\n"
-#~ " uzadon por via komputilo. Vidu malantaýe por detaloj.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Spertulo: Ći tio supoza ke vi flue konas GNU/Linukson kaj deziras "
-#~ "fari\n"
-#~ " treege akomodatan instaladon. Simile kiel \"Akomodata\" instalado, "
-#~ "vi povos\n"
-#~ " elekti la uzado por via komputilo.\n"
-#~ " Sed bonvolege, NE ELEKTU ĆI TION KROM SE VI SCIAS KION VI FARAS!"
+#~ msgid "Select a graphics card"
+#~ msgstr "Elektu grafikan karton"
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "Nun vi devas elekti la uzadon por via komputilo. Jen la elektoj:\n"
-#~ "\n"
-#~ "* Laborstacio: ći tio estas la ideala opcio se vi intencas uzi vian\n"
-#~ " komputilon ćefe por ćiutaga uzado će la oficejo aý hejme.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Programado: se vi intencas uzi vian komputilon ćefe por programado,\n"
-#~ " ći tio estas bona opcio. Vi havos plenan aron de programiloj por\n"
-#~ " kompili, erarserći, formati programfontojn, kaj krei\n"
-#~ " programpakaźojn.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servilo: se vi intencas uzi ći tiun komputilon kiel servilo, ći tio\n"
-#~ " estas bona opcio. Aý dosierservilo (NFS aý SMB), printservilo\n"
-#~ " (Uniksa stilo aý Mikrosofta Vindoza stilo), aýtentikada servilo\n"
-#~ " (NIS), aý datumbaza servilo, ktp. Kiel tia, ne atendu umojn (KDE,\n"
-#~ " GNOME, ktp.) estas instalotaj."
+#~ "Averto: provado de ći tiu grafika karto eble svenigos vian komputilon"
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Nun vi povas elekti la pakaźaron kiun vi deziras instali aý promocii.\n"
-#~ "\n"
-#~ "Tiam DrakX kontrolos ću vi havas sufiće da spaco por instali ćiujn de "
-#~ "ili.\n"
-#~ "Se ne, ři informas vin pir ři. Se vi deziras antaýeniri malgraýe, ři\n"
-#~ "antaýeniros je la instalado de ćiuj de la elektitaj pakaźaroj sed lasos\n"
-#~ "fali iujn pakaźojn kiujn estas malpli interesaj. Suben de la listo vi\n"
-#~ "povas elekti la opcion \"Elektado de apartaj pakaźoj\"; ćiokaze vi devus\n"
-#~ "foliumi tra pli ol 1000 pakaźoj..."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Normala VGA, 640x480 će 60 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Se vi havas ćiujn de la KDROM-oj en la listo sube, klaku \"Jes\".\n"
-#~ "Se vi havas neniujn de ći tiuj KDROM-oj, klaku \"Nuligu\".\n"
-#~ "Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku "
-#~ "\"Jes\"."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Supera VGA, 800x600 će 56 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
#~ msgstr ""
-#~ "Nun vi povas enigi telefon-konektajn opciojn. Se vi ne estas certa kio "
-#~ "enigi,\n"
-#~ "vi povas havigi la řustan informon de via interretprovizanto."
+#~ "8514 kongrua karto, 1024x768 će 87 hercoj (Hz) interplektita (neniu "
+#~ "800x600)"
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
#~ msgstr ""
-#~ "Enigu:\n"
-#~ "\n"
-#~ " - IP-adreson: Se vi ne scias, demandu al via retadministranto.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retmaskon: \"255.255.255.0\" řenerale estas bona elektaźo. Se vi ne\n"
-#~ "estas certa, demandu al via retadministranto aý interretprovizanto.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Aýtomata IP-adreson: Se via reto uzas BOOTP-an aý DHCP-an "
-#~ "protokolon,\n"
-#~ "elektu ći tiun opcion. Se elektita, neniu valoro estas bezonata en\n"
-#~ "\"IP-adreson\". Se vi ne estas certa, demandu al via retadministranto\n"
-#~ "aý interretprovizanto.\n"
+#~ "Supera VGA, 1024x768 će 87 hercoj (Hz) interplektita, 800x600 će 56 hercoj"
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
#~ msgstr ""
-#~ "Se via reto uzas NIS, elektu \"Uzu NIS\". Se vi ne scias, demandu al "
-#~ "via\n"
-#~ "retadministranto."
+#~ "Etendita Supera VGA, 800x600 će 60 hercoj (Hz), 640x480 će 72 hercoj"
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
#~ msgstr ""
-#~ "Nun vi povas enigi telefon-konektajn opciojn. Se vi ne estas certa kio "
-#~ "enigi,\n"
-#~ "vi povas havigi la řustan informon de via interretprovizanto."
+#~ "Neinterplektita Supera VGA, 1024x768 će 60 hercoj (Hz), 640x480 će 72 "
+#~ "hercoj"
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Se vi uzos prokurajn servilojn, bonvolu konfiguri ilin nune. Se vi ne\n"
-#~ "scias ću vi uzos prokurajn servilojn, demandu al via retadministranto aý\n"
-#~ "interretprovizanto."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Altfrekvenca Supera VGA, 1024x768 će 70 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Vi povas instali kriptografian pakaźon se via interreta konekto estas "
-#~ "řuste\n"
-#~ "pretigita. Unue elektu spegulon de kie vi deziras elţuti pakaźojn kaj "
-#~ "poste\n"
-#~ "elektu la pakaźojn por instali.\n"
-#~ "\n"
-#~ "Notu ke vi devas elekti spegulon kaj kriptografiajn pakaźojn laý la "
-#~ "leřdonoj\n"
-#~ "de via lando."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Plurfrekvenca kiu povas fari 1024x768 će 60 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Nun vi povas enigi la \"root\" (radiko) pasvorto por via Linuks-"
-#~ "Mandrejka\n"
-#~ "sistemo. Vi devas enigi la pasvorton dufoje por konfirmi ke ambaý fojoj\n"
-#~ "estas identaj.\n"
-#~ "\n"
-#~ "\n"
-#~ "La \"root\"-a uzanto estas la administranto de la sistemo, kaj estas la "
-#~ "sola\n"
-#~ "uzanto permesata ţanři la sisteman konfiguraźon. Tial, elektu ći tiun\n"
-#~ "pasvorton zorge! Nepermesata uzado de la \"root\"-a uzanto povas esti\n"
-#~ "treege danřera al la sistema integreco kaj dateno, kaj al aliaj sistemoj\n"
-#~ "konektata al ři. La pasvorto devus esti miksaźo de literciferaj signoj "
-#~ "kaj\n"
-#~ "almenaý 8 signoj longa. *Neniam* surpaperigu řin. Tamen, ne elektu tro\n"
-#~ "longan aý komplikan pasvorton: vi devas povi memori řin sen tro multe da\n"
-#~ "peno."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Plurfrekvenca kiu povas fari 1280x1024 će 74 hercoj (Hz)"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Nun vi povas krei unu aý pli \"ordinara(j)\" uzanto(j), male al la\n"
-#~ "\"privilegia\" uzanto, \"root\". Vi povas krei unu aý pli uzanto(j) por\n"
-#~ "ćiu persono vi deziras permesi uzi la komputilon. Notu ke ćiu uzanto\n"
-#~ "havos viajn proprajn preferojn (grafikan medion, programajn aranřojn,\n"
-#~ "ktp.) kaj řian propran \"hejman dosierujon\", kie ći tiuj preferoj estas\n"
-#~ "konservata.\n"
-#~ "\n"
-#~ "\n"
-#~ "Antaý ćio, krei uzanton por vi mem! Eć se vi estos la sola uzulo će la\n"
-#~ "komputilo, vi ne devus konekti kiel \"root\" por ćiutaga uzado de la\n"
-#~ "sistemo: ři estas tre alta sekureca risko. Fari la sistemon neuzebla\n"
-#~ "estas oftege nur unu misklavo fora.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tial, vi devus konekti al la sistemo per ordinara uzanto vi kreos ći "
-#~ "tie,\n"
-#~ "kaj saluti kiel \"root\" nur por administraj kaj flegadaj kialoj."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Plurfrekvenca kiu povas fari 1280x1024 će 76 hercoj (Hz)"
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO kaj Grub ćefaj opcioj estas:\n"
-#~ " - Startaparato: Fiksas la nomon de la aparato (ekz-e subdisko de "
-#~ "fiksdisko)\n"
-#~ "tiu enhavas la startsektoron. Krom se vi scias specife alie, elektu\n"
-#~ "\"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Prokrastoperiodo antaý starti defaýltan sistemon: Elektas la nombron\n"
-#~ "da dekonoj de sekundo ke la startţargilo devus atendi antaý starti la\n"
-#~ "unuan sistemon. Ći tiu utilas će sistemoj kiuj tuj startas de la\n"
-#~ "fiksdisko malantaý ili ebligas la klavaron. La startţargilo ne atendas "
-#~ "se\n"
-#~ "\"delay\" (prokrastoperiodo) estas ellasita aý estas fiksita al nul.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Grafika reřimo: Ći tiu specifas la VGA tekstan reřimon por uzi dum\n"
-#~ "start. La sekvantaj valoroj estas uzeblaj:\n"
-#~ " * normala: elektu normalan 80 per 25 tekstan reřimon.\n"
-#~ " * <numero>: uzu la respondan tekstan reřimon."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Ekrano kiu povas fari 1600x1200 će 70 hercoj (Hz)"
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO estas startţargilo por Sparc: ři povas starti aý Linukson aý iun "
-#~ "ajn\n"
-#~ "mastruman sistemon ćeestanta će via komputilo. Normale, ći tiuj aliaj\n"
-#~ "mastrumaj sistemoj estas řuste detektata kaj instalada. Se tiel ne "
-#~ "estas,\n"
-#~ "vi povas aldoni enskribon mane per ći tiu ekrano. Zorgu elekti la "
-#~ "řustajn\n"
-#~ "parametrojn.\n"
-#~ "\n"
-#~ "\n"
-#~ "Eble vi ankaý ne deziras doni atingon al ći tiuj aliaj mastrumaj "
-#~ "sistemoj\n"
-#~ "al iu ajn. Ćiokaze vi povas forstreki la respondajn enskribojn. Sed\n"
-#~ "ćiokaze, vi bezonos startdiskon por starti ilin!"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Ekrano kiu povas fari 1600x1200 će 76 hercoj (Hz)"
#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
-#~ "SILO ćefaj opcioj estas:\n"
-#~ " - Instalado de Startţargilo: Indiki kie vi deziras meti la informon\n"
-#~ "bezonata por start GNU/Linukso. Krom se vi scias specife kion vi faras,\n"
-#~ "elektu \"Unua sektoro de drajvo (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Prokrastoperiodo antaý starti defaýltan sistemon: Elektas la nombron\n"
-#~ "da dekonoj de sekundo ke la startţargilo devus atendi antaý starti la\n"
-#~ "unuan sistemon. Ći tiu utilas će sistemoj kiuj tuj startas de la\n"
-#~ "fiksdisko malantaý ili ebligas la klavaron. La startţargilo ne atendas "
-#~ "se\n"
-#~ "\"delay\" (prokrastoperiodo) estas ellasita aý estas fiksita al nul."
+#~ "La totala grandeco de la grupoj vi elektis estas proksimume %d MB.\n"
#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Nun estas tempo por konfiguri la X Fenestra Sistemo, kiu estas la kerno\n"
-#~ "de la GNU/Linuksa GUI (Grafika UzulInterfaco). Por tiu celo, vi devas\n"
-#~ "konfiguri vian grafikan karton kaj ekranon. La plejparto de ći tiuj "
-#~ "paţoj\n"
-#~ "estas aýtomatitaj, tamen, do via laboro eble konsistos en konfirmi kion\n"
-#~ "estis farata kaj akcepti la aranřojn. :)\n"
-#~ "\n"
+#~ "Se vi volas instali malpli ol ći tiu grandeco,\n"
+#~ "elektu la procenton el la pakaźoj kiuj vi deziras instali.\n"
#~ "\n"
-#~ "Kiam la konfigurado estas kompleta, X lanćiřos (krom se vi demandas al\n"
-#~ "DrakX ne fari tion) pro ke vi kontrolu řin la observu se la aranřojn\n"
-#~ "taýgas por vi. Se ne, vi povas reveni kaj ţanři ilin, tiom da tempoj "
-#~ "kiom\n"
-#~ "estas necesa."
+#~ "Malalta procento instalos nur la plej gravajn pakaźojn;\n"
+#~ "100%% instalos ćiujn pakaźojn."
#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Se iu misas en la X-a konfiguraźo, uzu ći tiujn opciojn por řuste "
-#~ "konfiguri\n"
-#~ "la X Fenestran Sistemon."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Se vi preferas uzi grafikan saluton, elektu \"Jes\". Aliokaze, elektu "
-#~ "\"Ne\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Via sistemo restartos.\n"
+#~ "Vi havas spacon će via disko por nur %d%% da ći tiuj pakaźoj.\n"
#~ "\n"
-#~ "Post restartado, via nova Linuks-Mandrejka sistemo ţargiřos aýtomate. Se "
-#~ "vi\n"
-#~ "deziras starti en alian ekzistanta mastruman sistemon, bonvole legu la\n"
-#~ "pluan instrukcion."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Ćeśa (Programistoj)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovaka (Programistoj)"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Skribu /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatu ćion"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Post formatado de ćiuj subdisko,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "ćiuj datenoj sur tiuj subdisko estos perdata"
-
-#~ msgid "Reload"
-#~ msgstr "Reţargu"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Ću vi deziras krei aýtoinstalan disketon por replikado de Linukso?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL Konfiguraźo"
-
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Kun malproksima CUPS servilo, vi ne devas konfiguri iun printilon\n"
-#~ "ći tie; printiloj estos aýtomate dektektataj. Se vi havas dubojn,\n"
-#~ "elektu \"Malproksima CUPS servilo\"."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Malproksima printvico"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domajna nomo"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Neniu printilo"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "ISDN-a Konfiguraźon"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr "muntado malsukcesis: "
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Sendrapideco: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Ricevrapideco: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Speco de konekto"
+#~ "Se vi deziras instali malpli ol tiom,\n"
+#~ "elektu la procenton el la pakaźoj kiun vi deziras instali.\n"
+#~ "Malalta procento instalos nur la plej gravajn pakaźojn;\n"
+#~ "%d%% instalos tiom pakaźojn kiom eblajn."
-#~ msgid "Connecting to Internet "
-#~ msgstr "Konektas al la Interreto"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Malkonektas el la Interreto"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Malkonektado el la Interreto malsukcesis."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Malkonektado el la Interreto finis."
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Nomo de konekto"
-
-#~ msgid "sent: "
-#~ msgstr "sendita(j): "
-
-#~ msgid "received: "
-#~ msgstr "ricevita(j): "
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Defaýlta"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Mi ne povas kompreni la enhavon de la konfigurodosiero."
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptilo"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Malebligu"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Ebligu"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Konfiguru interretan konektaźon"
-
-#~ msgid "Choose"
-#~ msgstr "Elektu"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Vi povas specifi rekte la URI por atingi la printilon per CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Jes, printu Askian provpařon"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Jes, printu PostSkriban provpařon"
-
-#~ msgid "Paper Size"
-#~ msgstr "Papergrandeco"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Elźetu pařon post tasko?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint-aj pelilaj opcioj"
-
-#~ msgid "Color depth options"
-#~ msgstr "Kolorprofunecaj opcioj"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Printu tekston kiel PostScripto?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Riparu ţtuparan tekston?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Nombro de pařoj en eliga pařo"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr ""
-#~ "Dekstra/Maldrekstra marřenoj en punktoj (1/72 de colo, proksimume 1/3 mm)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr ""
-#~ "Supra/Malsupra marřenoj en punktoj (1/72 de colo, proksimume 1/3 mm)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Aldonaj GhostScript-aj opcioj"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Aldonaj Tekstaj opcioj"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inversigu ordon de pařoj"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Elektu Malproksiman Printilan Konekton"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Ćiuj printilo bezonas nomon (ekzemple lp).\n"
-#~ "Aliaj parametroj, ekzemple la priskribon de la printilo aý řian lokon\n"
-#~ "vi povas difini. Kiu nomo devus uzata por ći tiu printilo kaj kiel\n"
-#~ "ři estas konektata?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Ćiuj printvico (al kiu printajn taskojn estas direktata) bezonas nomon\n"
-#~ "(ofte lp) kaj fonan eneligan dosierujon asociata kun ři. Kiu nomo kaj\n"
-#~ "dosierujo devus uzata por ći tiu printvico?"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Vi povos elekti ilin pli precize en la sekvanta paţo."
-#~ msgid "Name of queue"
-#~ msgstr "Nomo de printvico"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procento da pakaźoj por instali"
-#~ msgid "Spool directory"
-#~ msgstr "Fona eneliga dosierujo"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Elektu sekurnivelon?"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index fb6f837b3..6c00f2078 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -1,40 +1,67 @@
-# Translation file (spanish) of Mandrake graphic install
-# Copyright (C) 1999 Mandrakesoft
-# Pablo Saratxaga <pablo@mandrakesoft.com>, 1999-2000
-# Fabian Mandelbaum <fabman@mandrakesoft.com>, 2000, 2001, 2002
-# Juan Manuel GarcĂ­a Molina <juanma_gm@wanadoo.es>, 2000-2002
-# Carlos SĂĄnchez <vcbsaorc@vc.ehu.es>, 2002
+# spanish translation of drakfloppy
+# Copyright (C) 2000, 2001 MandrakeSoft S.A.
+# Fabian Mandelbaum <fabman@mandrakesoft.com>, 2000, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-15 10:34-0300\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-22 10:38-0300\n"
"Last-Translator: Fabian Mandelbaum <fabman@mandrakesoft.com>\n"
-"Language-Team: Spanish <cooker-i18n@linux-mandrake.com>\n"
+"Language-Team: SPANISH <es@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurar los monitores independientemente"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Usar extensiĂłn Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurar sĂłlo la tarjeta \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB o mĂĄs"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Elija un servidor X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "ConfiguraciĂłn multi-monitor"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -42,41 +69,44 @@ msgstr ""
"Su sistema soporta configuraciĂłn multi-monitor.\n"
"ÂżQuĂŠ desea hacer?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Tarjeta grĂĄfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccione la cantidad de memoria de su tarjeta grĂĄfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccione una tarjeta grĂĄfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "ConfiguraciĂłn de XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Elija un servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "ÂżQuĂŠ tipo de configuraciĂłn de XFree desea tener?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configurar los monitores independientemente"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Elija un controlador X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Usar extensiĂłn Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Controlador X"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configurar sĂłlo la tarjeta \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "ÂżQuĂŠ tipo de configuraciĂłn de XFree desea tener?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s con aceleraciĂłn 3D por hardware"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +115,17 @@ msgstr ""
"Su tarjeta puede admitir aceleraciĂłn 3D pero sĂłlo con XFree %s.\n"
"XFree %s admite su tarjeta y puede tener mejor comportamiento en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Su tarjeta puede admitir aceleraciĂłn 3D por hardware con XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con aceleraciĂłn 3D por hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Su tarjeta puede admitir aceleraciĂłn 3D por hardware con XFree %s,\n"
-"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleraciĂłn 3D EXPERIMENTAL por hardware"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -121,31 +136,58 @@ msgstr ""
"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR.\n"
"XFree %s admite su tarjeta y puede tener un mejor comportamiento en 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Su tarjeta puede admitir aceleraciĂłn 3D por hardware con XFree %s,\n"
+"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalaciĂłn del controlador de la pantalla)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "ConfiguraciĂłn de XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccione la cantidad de memoria de su tarjeta grĂĄfica"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Elija las opciones para el servidor"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"ÂżConservar los cambios?\n"
+"La configuraciĂłn actual es:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Elija un monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalizada"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "GenĂŠrico"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Deshacer"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -169,513 +211,327 @@ msgstr ""
"puede daĂąar su monitor.\n"
" En caso de duda, elija una configuraciĂłn conservadora."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Frecuencia de barrido horizontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Frecuencia de barrido vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "El monitor no estĂĄ configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La tarjeta grĂĄfica todavĂ­a no estĂĄ configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "AĂşn no ha elegido las resoluciones"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "ÂżDesea probar la configuraciĂłn?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Advertencia: probar con esta tarjeta de vĂ­deo puede colgar su ordenador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Probar la configuraciĂłn"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 colores (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"intente cambiar algunos parĂĄmetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil colores (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "OcurriĂł un error:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil colores (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Saliendo en %d segundos"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millones de colores (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "ÂżEs ĂŠsta la configuraciĂłn correcta?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 billones de colores (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "OcurriĂł un error, intente cambiar algunos parĂĄmetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resoluciones"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "ResoluciĂłn"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Elija la resoluciĂłn y la profundidad de colores"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Tarjeta grĂĄfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "MĂĄs"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancelar"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Aceptar"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo experto"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostrar todo"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "ÂżDesea probar la configuraciĂłn?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluciones"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Probar la configuraciĂłn"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "DistribuciĂłn del teclado: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo de ratĂłn: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo del ratĂłn: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frecuencia horizontal del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frecuencia vertical del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Tarjeta grĂĄfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "IdentificaciĂłn de la tarjeta grĂĄfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memoria de la tarjeta grĂĄfica: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profundidad de color: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "ResoluciĂłn: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparando la configuraciĂłn de X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "ÂżQuĂŠ desea hacer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Cambiar el monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Cambiar la tarjeta grĂĄfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Cambiar las opciones del servidor X"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Cambiar la resoluciĂłn"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar informaciĂłn"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Probar de nuevo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Salir"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ÂżConservar los cambios?\n"
-"La configuraciĂłn actual es:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X al arrancar"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Puede configurar su computadora para que inicie X automĂĄticamente\n"
"al arrancar. ÂżDesea que se lance X cuando reinicie?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Abra de nuevo una sesiĂłn %s para activar los cambios"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Por favor salga de la sesiĂłn y luego pulse Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil colores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil colores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millones de colores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 billones de colores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB o mĂĄs"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estĂĄndar, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (sin 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA no-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que soporta 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que soporta 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primer sector de la particiĂłn de arranque"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primer sector del disco (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "InstalaciĂłn de SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "ÂżDĂłnde quiere instalar el cargador de arranque?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "InstalaciĂłn de LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO con menĂş de texto"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO con menĂş grĂĄfico"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrancar desde DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opciones principales del cargador de arranque"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Cargador de arranque a usar"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "InstalaciĂłn del cargador de arranque"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositivo de arranque"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (no funciona con BIOS antiguos)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacto"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modo de vĂ­deo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Demora antes de arrancar la imagen predeterminada"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "ContraseĂąa"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "ContraseĂąa (de nuevo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Restringir las opciones de la lĂ­nea de comandos"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "restringir"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Limpiar /tmp en cada inicio del equipo"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precise el tamaĂąo de la RAM si es necesario (se encontraron %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Activar perfiles mĂşltiples"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Proporcione el tamaĂąo de la RAM en MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"La opciĂłn \"Restringir las opciones de la lĂ­nea de comandos\"\n"
"no tiene sentido sin contraseĂąa"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Vuelva a intentarlo, por favor"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Las contraseĂąas no coinciden"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Mensaje de inicio"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Demora de open firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Tiempo de espera de arranque del nĂşcleo"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "ÂżHabilitar el arranque desde CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "ÂżHabilitar el arranque de OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "ÂżSO predeterminado?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -689,83 +545,83 @@ msgstr ""
"\n"
"ÂżDesde quĂŠ disco arranca?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"AquĂ­ estĂĄn las diferentes entradas.\n"
"Puede aĂąadir otras o cambiar las que ya existen."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
-msgstr "AĂąadir"
+msgstr "Agregar"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Hecho"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "ÂżQuĂŠ tipo de entrada desea aĂąadir?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Otro SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Otro SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Otro SO (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imagen"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "RaĂ­z"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "AĂąadir"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lectura/Escritura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabla"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Por defecto"
@@ -797,53 +653,77 @@ msgstr "Debe especificar una particiĂłn raĂ­z"
msgid "This label is already used"
msgstr "Esta etiqueta ya estĂĄ en uso"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s interfaces %s encontradas"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "ÂżTiene alguna otra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "ÂżTiene alguna interfaz %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "SĂ­"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Ver informaciĂłn sobre el hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando controlador para la tarjeta %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mĂłdulo %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, 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 ""
+"Ahora puede proporcionar las opciones al mĂłdulo %s.\n"
+"Note que cualquier direcciĂłn debe ingresarse con el prefijo 0x como '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"AquĂ­ deben ir las diferentes opciones para el mĂłdulo %s.\n"
+"Las opciones son de la forma \"nombre=valor nombre2=valor2 ...\".\n"
+"Por ejemplo, \"io=0x300 irq=7\""
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opciones de los mĂłdulos:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "ÂżQuĂŠ controlador de %s debo probar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -862,39 +742,15 @@ msgstr ""
"el probar el equipo puede provocar que ĂŠste se cuelgue, pero no deberĂ­a\n"
"causar ningĂşn daĂąo."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "AutodetecciĂłn"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especificar las opciones"
-#: ../../any.pm_.c:725
-#, 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 ""
-"Ahora puede proporcionar las opciones al mĂłdulo %s.\n"
-"Note que cualquier direcciĂłn debe ingresarse con el prefijo 0x como '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"AquĂ­ deben ir las diferentes opciones para el mĂłdulo %s.\n"
-"Las opciones son de la forma \"nombre=valor nombre2=valor2 ...\".\n"
-"Por ejemplo, \"io=0x300 irq=7\""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opciones de los mĂłdulos:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -903,50 +759,55 @@ msgstr ""
"Error al cargar el mĂłdulo %s.\n"
"ÂżDesea intentarlo de nuevo con otros parĂĄmetros?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "acceso a programas X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "acceso a herramientas rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "acceso a archivos administrativos"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s ya fue aĂąadido)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Esta contraseĂąa es demasiado sencilla"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Introduzca el nombre de usuario"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nombre de usuario (login) sĂłlo debe contener letras, nĂşmeros, `-' y `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Este nombre de usuario ya fue aĂąadido"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Este nombre de usuario ya fue aĂąadido"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "AĂąadir un usuario"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -955,32 +816,32 @@ msgstr ""
"Introduzca un usuario\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aceptar el usuario"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nombre y apellidos"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nombre del usuario"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icono"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Entrada automĂĄtica"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -988,92 +849,73 @@ msgstr ""
"Puede configurar su computadora para que entre automĂĄticamente\n"
"en sesiĂłn con un usuario dado al arrancar. ÂżDesea esa funcionalidad?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Elija el usuario predeterminado:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Elija el gestor de ventanas a ejecutar:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Por favor, elija el idioma a usar."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 ""
"Puede elegir otros idiomas, que estarĂĄn disponibles despuĂŠs de la instalaciĂłn"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Todo"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Permitir a todos los usuarios"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizada"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "No compartir"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Se necesita instalar el paquete %s. ÂżQuiere instalarlo?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Puede exportar usando NFS o Samba. ÂżCuĂĄl elige"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Falta el paquete obligatorio %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"ÂżDesea permitir a los usuarios exportar algunos directorios personales?\n"
-"Si lo hace, los usuarios podrĂĄn simplemente hacer clic sobre \"Compartir\" en konqueror y nautilus.\n"
+"Si lo hace, los usuarios podrĂĄn simplemente hacer clic sobre \"Compartir\" "
+"en konqueror y nautilus.\n"
"\n"
"\"Personalizar\" permite una granularidad por usuario.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Lanzar userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1081,31 +923,31 @@ msgstr ""
"La comparticiĂłn por usuario utiliza el grupo \"fileshare\". \n"
"Puede utilizar userdrake para aĂąadir un usuario a este grupo."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bienvenidos, crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "EstĂĄndar"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "MĂĄs alta"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoica"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1115,7 +957,7 @@ msgstr ""
"usar, pero tambiĂŠn mucho mĂĄs vulnerable: no debe usarse para una mĂĄquina\n"
"conectada en red con otras o a Internet. No hay contraseĂąas de acceso."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,7 +965,7 @@ msgstr ""
"Las contraseĂąas estĂĄn activadas, pero tampoco se recomienda usar este\n"
"nivel para un ordenador conectado a una red."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,7 +973,7 @@ msgstr ""
"Éste es el nivel de seguridad estándar recomendado para una máquina que se\n"
"utilizarĂĄ para conectarse a la Internet como cliente."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1139,13 +981,14 @@ msgstr ""
"Ya hay algunas restricciones, y todas las noches se corren mĂĄs "
"verificaciones automĂĄticas."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Con este nivel de seguridad, es posible utilizar el sistema como un "
"servidor.\n"
@@ -1153,35 +996,35 @@ msgstr ""
"servidor que acepte conexiones de mĂşltiples clientes. Nota: si su mĂĄquina "
"sĂłlo es un cliente en la Internet, mejor deberĂ­a elegir un nivel inferior."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Basado en el nivel anterior, pero el sistema estĂĄ completamente cerrado.\n"
"Las caracterĂ­sticas de seguridad estĂĄn al mĂĄximo."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Elegir el nivel de seguridad"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Nivel de seguridad"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Utilizar libsafe para los servidores"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Una biblioteca que le defiende ante ataques de desbordamiento de bĂşfer y "
"ataques con cadenas de formato."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1198,52 +1041,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "ÂĄBienvenido a GRUB, el selector de SO de arranque!"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use las teclas %c y %c para seleccionar una entrada."
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pulse intro para iniciar el SO elegido, pulse 'e' para editar"
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "los comandos antes de iniciar, o pulse 'c' para una linea de comandos."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Se va a iniciar la entrada resaltada en %d segundos."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "no hay espacio suficiente en /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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Escritorio"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "MenĂş inicio"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "No puede instalar el cargador de arranque en una particiĂłn %s\n"
@@ -1256,15 +1099,19 @@ msgstr "todavĂ­a no estĂĄ implementada la ayuda.\n"
msgid "Boot Style Configuration"
msgstr "ConfiguraciĂłn del estilo de arranque"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Archivo"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Archivo/_Salir"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>S"
@@ -1299,14 +1146,14 @@ msgstr "Modo de Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"En este momento estĂĄ usando %s como gestor de arranque.\n"
"Haga click sobre configurar para lanzar el asistente de configuraciĂłn."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configurar"
@@ -1316,7 +1163,7 @@ msgid "System mode"
msgstr "Modo del sistema"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar el sistema X-Window al comenzar"
#: ../../bootlook.pm_.c:148
@@ -1327,14 +1174,16 @@ msgstr "No, no deseo entrada automĂĄtica"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "SĂ­, deseo entrada automĂĄtica con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Aceptar"
@@ -1384,7 +1233,7 @@ msgstr ""
"Luego de la instalaciĂłn estarĂĄn disponibles las instantĂĄneas de pantalla en %"
"s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francia"
@@ -1392,7 +1241,7 @@ msgstr "Francia"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "BĂŠlgica"
@@ -1416,11 +1265,12 @@ msgstr "Noruega"
msgid "Sweden"
msgstr "Suecia"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holanda"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italia"
@@ -1428,7 +1278,7 @@ msgstr "Italia"
msgid "Austria"
msgstr "Austria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Estados Unidos"
@@ -1436,8 +1286,8 @@ msgstr "Estados Unidos"
msgid "Please make a backup of your data first"
msgstr "Por favor, haga primero una copia de seguridad de sus datos"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "ÂĄLea con cuidado!"
@@ -1450,11 +1300,12 @@ msgstr ""
"Si piensa usar aboot, no olvide dejar espacio libre (2048 sectores es\n"
"suficiente) al principio del disco"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Error"
@@ -1462,11 +1313,11 @@ msgstr "Error"
msgid "Wizard"
msgstr "Asistente"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Elija una acciĂłn"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1478,144 +1329,149 @@ msgstr ""
"Le sugiero que primero cambie el tamaĂąo de la misma\n"
"(para eso haga clic sobre ella, y luego sobre \"Redimensionar\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Por favor, haga clic sobre una particiĂłn"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalles"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Sistema de. archivos. con journal"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Intercambio"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "VacĂ­o"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Otros"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipos de sistemas de archivos:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crear"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Use \"%s\" en su lugar"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Borrar"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Use \"Desmontar\" primero"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Se perderĂĄn todos los datos de la particiĂłn %s despuĂŠs de cambiar su tipo"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Elija una particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Elija otra particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Salir"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Cambiar al modo experto"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Cambiar al modo normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Deshacer"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "ÂżSeguir adelante?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Salir sin grabar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "ÂżSalir del programa sin grabar la tabla de particiones?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "ÂżDesea guardar las modificaciones en /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "AsignaciĂłn automĂĄtica"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Borrar todas"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "MĂĄs"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "InformaciĂłn del disco rĂ­gido"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Todas las particiones primarias estĂĄn usadas"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "No se pueden agregar mĂĄs particiones"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1623,31 +1479,31 @@ msgstr ""
"Por favor, para tener mĂĄs particiones borre alguna para poder crear una "
"particiĂłn extendida"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Guardar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Restaurar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Rescatar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Volver a cargar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Montaje automĂĄtico de dispositivos extraĂ­bles"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Elija un archivo"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1655,11 +1511,11 @@ msgstr ""
"La tabla de particiones de respaldo no tiene\n"
"el mismo tamaĂąo. ÂżDesea continuar de todas formas?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advertencia"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1667,122 +1523,129 @@ msgstr ""
"Inserte un disquete en la unidad\n"
"Se perderĂĄn todos los datos del disquete"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Tratando de rescatar la tabla de particiones"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "InformaciĂłn detallada"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto de montaje"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opciones"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Desplazar"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatear"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "AĂąadir al RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "AĂąadir al LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Quitar del RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Quitar del LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificar el RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crear una particiĂłn nueva"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector de comienzo: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "TamaĂąo en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipo de sistema de. archivos: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punto de montaje: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "ÂżBorrar el archivo de loopback?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Cambiar el tipo de particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "ÂżQuĂŠ sistema de archivos desea?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Cambiando de ext2 a ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "ÂżDonde desea montar el archivo de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ÂżDĂłnde desea montar el dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1791,128 +1654,133 @@ msgstr ""
"se usa para un montaje en loopback.\n"
"Quite el montaje de loopback primero"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calculando los lĂ­mites del sistema de archivos FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Esta particiĂłn no es redimensionable"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
"DeberĂ­a hacer una copia de seguridad de todos los datos de esta particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Se perderĂĄn todos los datos de la particiĂłn %s tras cambiar su tamaĂąo"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Eligiendo el tamaĂąo nuevo"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "TamaĂąo nuevo en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "ÂżA quĂŠ disco desea desplazarla?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "ÂżA quĂŠ sector desea desplazarla?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Desplazando"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Desplazando una particiĂłn..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Elegir un RAID existente al que aĂąadir"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nuevo"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Elegir un LVM existente al que aĂąadir"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Âżnombre de LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Esta particiĂłn no puede usarse para el loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nombre del archivo de loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Indique el nombre de un archivo"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"El archivo ya lo utiliza otro dispositivo loopback.\n"
"Elija otro archivo, por favor"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "El archivo ya existe. ÂżDesea usarlo?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opciones de montaje"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Varios"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "tamaĂąo de los bloques"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Cuidado: esta operaciĂłn es peligrosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "ÂżQuĂŠ tipo de particionamiento?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Se necesita instalar el paquete %s. ÂżQuiere instalarlo?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1924,7 +1792,7 @@ msgstr ""
"que\n"
"no funcione), o bien no utiliza LILO (y entonces no necesita /boot)"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1936,7 +1804,7 @@ msgstr ""
"Si piensa usar el cargador de arranque LILO, tenga en cuenta que tiene\n"
"que aĂąadir una particiĂłn /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1946,129 +1814,129 @@ msgstr ""
"NingĂşn cargador de arranque es capaz de manejarlo sin una particiĂłn /boot.\n"
"AsĂ­ que tenga en cuenta que tiene que aĂąadir una particiĂłn /boot."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "ÂĄSe escribirĂĄ al disco la tabla de particiones de la unidad %s!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Necesita reiniciar el equipo para que la modificaciĂłn tenga efecto"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Se perderĂĄn todos los datos de la particiĂłn %s despuĂŠs de formatearla"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formateando"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formateando el archivo de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formateando la particiĂłn %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Ocultar archivos"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Mover los archivos a la nueva particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"El directorio %s ya tiene algunos datos\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Moviendo los archivos a la nueva particiĂłn"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copiando %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Borrando %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "la particiĂłn %s ahora se conoce como %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra DOS: %s (simplemente una adivinanza)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nombre: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Comienzo: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "TamaĂąo: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindros %d a %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formateado\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "No formateado\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2077,7 +1945,7 @@ msgstr ""
"Archivo(s) de loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2085,27 +1953,27 @@ msgstr ""
"ParticiĂłn predeterminada de arranque\n"
" (para arranque de MS-DOS, no para lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "TamaĂąo de los bloques %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos-RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nombre del archivo de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2117,7 +1985,7 @@ msgstr ""
"una particiĂłn de Controlador, probablemente\n"
"deberĂ­a dejarla como estĂĄ.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2129,64 +1997,64 @@ msgstr ""
"es para el arranque\n"
"dual de su sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "TamaĂąo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "GeometrĂ­a: %s cilindros, %s cabezas, %s sectores\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos-LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de la tabla de particiones: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "en el bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opciones: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Clave de cifrado del sistema de archivos"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Elija la clave de cifrado de su sistema de archivos"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Esta clave de cifrado es demasiado simple\n"
"(tiene que tener por lo menos una longitud de %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Las claves de cifrado no coinciden"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Clave de cifrado"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Clave de cifrado (otra vez)"
@@ -2195,35 +2063,65 @@ msgid "Change type"
msgstr "Cambiar tipo"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Por favor, haga clic sobre un medio"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "AutentificaciĂłn"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nombre del usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nombre del usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Dominio NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Buscar servidores"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formateo de %s fallĂł"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "No sĂŠ cĂłmo formatear %s en el tipo %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "fallĂł el montaje de la particiĂłn %s en el directorio %s"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck fallĂł con cĂłdigo de salida %d o seĂąal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "error desmontando %s: %s"
@@ -2240,70 +2138,323 @@ msgstr "con /usr"
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No se puede usar JFS para particiones menores de 32MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No se puede usar ReiserFS para particiones menores de 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Los puntos de montaje deben comenzar con una /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ya existe una particiĂłn con el punto de montaje %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No puede usar un Volumen LĂłgico LVM para el punto de montaje %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio deberĂ­a permanecer dentro del sistema de archivos raĂ­z"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Necesita un sistema de archivos verdadero (ext2, reiserfs) para este punto "
"de montaje\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"No puede usar un sistema de archivos cifrado para el punto de montaje %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "No hay espacio libre suficiente para la asignaciĂłn automĂĄtica"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nada para hacer"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Error al abrir %s para escribir: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"OcurriĂł un error - no se encontrĂł ningĂşn dispositivo vĂĄlido para crear los "
"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
"razĂłn de este fallo"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "ÂĄNo tiene ninguna particiĂłn!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Realizar detecciĂłn automĂĄtica"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "GenĂŠrico"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memoria (DMA) de la tarjeta"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "configuraciĂłn de la carga"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Cambiar tipo"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Salir"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/A_yuda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/A_yuda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ayuda/_Acerca..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "MĂłdulo"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoria (DMA) de la tarjeta"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancelar"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "MĂłdulo"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "DescripciĂłn"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "AutentificaciĂłn"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Elija un archivo"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositivo de pasarela de red"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botones"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "DetecciĂłn del disco rĂ­gido"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Ver informaciĂłn sobre el hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostrar informaciĂłn"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "ConfiguraciĂłn del ratĂłn"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectada en el puerto %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Espere, por favor"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segundos"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Borrando la impresora \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "AutodetecciĂłn"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
#: ../../help.pm_.c:13
@@ -2319,7 +2470,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2342,19 +2493,19 @@ msgstr ""
"aquĂ­ no podrĂĄn cambiar nada excepto su configuraciĂłn y sus archivos\n"
"propios. TendrĂĄ que crear al menos un usuario no privilegiado para Usted\n"
"mismo. Esa cuenta es donde deberĂ­a conectarse para el uso diario. Aunque es\n"
-"muy prĂĄctico ingresar como \"root\" diariamente, ÂĄtambiĂŠn puede ser muy\n"
+"muy prĂĄctico ingresar como \"root\" diariamente, ÂĄtambien puede ser muy\n"
"peligroso! El error mĂĄs leve podrĂ­a significar que su sistema deje de\n"
"funcionar. Si comete un error serio como usuario no privilegiado, sĂłlo\n"
"puede llegar a perder algo de informaciĂłn, pero no todo el sistema.\n"
"\n"
"Primero tendrĂĄ que ingresar su nombre real. Esto no es obligatorio, por\n"
-"supuesto ya que, en realidad, puede ingresar lo que desee. DrakX tomarĂĄ\n"
+"supuesto - ya que, en realidad, puede ingresar lo que desee. DrakX tomarĂĄ\n"
"entonces la primer palabra que ingresĂł y la copiarĂĄ al campo \"Nombre de\n"
"usuario\". Este es el nombre que este usuario en particular usarĂĄ para\n"
"ingresar al sistema. Lo puede cambiar. Luego tendrĂĄ que ingresar una\n"
"contraseĂąa aquĂ­. La contraseĂąa de un usuario no privilegiado (regular) no\n"
"es tan crucial como la de \"root\" desde el punto de vista de la seguridad,\n"
-"pero esto no es razĂłn alguna para obviarla - despuĂŠs de todo, son sus\n"
+"pero esto no es razĂłn alguna para obviarla - despues de todo, son sus\n"
"archivos los que estĂĄn en riesgo.\n"
"\n"
"Si hace clic sobre \"Aceptar usuario\", entonces puede agregar tantos como\n"
@@ -2404,7 +2555,7 @@ msgstr ""
"mismas son buenas para las instalaciones mĂĄs comunes. Si hace cambios, al\n"
"menos debe definir una particiĂłn raĂ­z (\"/\"). No elija una particiĂłn muy\n"
"pequeĂąa o no podrĂĄ instalar software suficiente. Si desea almacenar sus\n"
-"datos en una particiĂłn separada, tambiĂŠn puede necesitar crear una\n"
+"datos en una particiĂłn separada, tambien puede necesitar crear una\n"
"particiĂłn para \"/home\" (sĂłlo es posible si tiene mĂĄs de una particiĂłn\n"
"Linux disponible).\n"
"\n"
@@ -2419,11 +2570,11 @@ msgstr ""
"\"NĂşmero de disco rĂ­gido\" siempre es una letra que sigue a \"hd\" o a\n"
"\"sd\". Para los discos IDE:\n"
"\n"
-" * \"a\" significa \"disco rĂ­gido maestro en la controladora IDE primaria"
-"\",\n"
+" * \"a\" significa \"disco rĂ­gido maestro en la controladora IDE\n"
+"primaria\",\n"
"\n"
-" * \"b\" significa \"disco rĂ­gido esclavo en la controladora IDE primaria"
-"\",\n"
+" * \"b\" significa \"disco rĂ­gido esclavo en la controladora IDE\n"
+"primaria\",\n"
"\n"
" * \"c\" significa \"disco rĂ­gido maestro en la controladora IDE\n"
"secundaria\",\n"
@@ -2462,9 +2613,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2509,7 +2659,7 @@ msgstr ""
"pedirĂĄ que especifique los CDs que tiene (sĂłlo en modo Experto). Verifique\n"
"las etiquetas de los CDs y marque las casillas que corresponden a los que\n"
"tiene disponibles para la instalaciĂłn. Haga clic sobre \"Aceptar\" cuando\n"
-"estĂŠ listo para continuar.\n"
+"este listo para continuar.\n"
"\n"
"Los paquetes se ordenan en grupos que corresponden a un uso particular de\n"
"su mĂĄquina. Los grupos en sĂ­ mismos estĂĄn clasificados en cuatro secciones:\n"
@@ -2520,10 +2670,9 @@ msgstr ""
" * \"Desarrollo\": si la mĂĄquina se utilizarĂĄ para programaciĂłn, elija\n"
"el(los) grupo(s) deseado(s).\n"
"\n"
-" * \"Servidor\": finalmente, si se pretende usar la mĂĄquina como un "
-"servidor\n"
-"aquĂ­ puede seleccionar los servicios mĂĄs comunes que desea que se instalen\n"
-"en la misma.\n"
+" * \"Servidor\": finalmente, si se pretende usar la mĂĄquina como un\n"
+"servidor aquĂ­ puede seleccionar los servicios mĂĄs comunes que desea que se\n"
+"instalen en la misma.\n"
"\n"
" * \"Entorno grĂĄfico\": seleccione aquĂ­ su entorno grĂĄfico preferido. Si\n"
"desea tener una estaciĂłn de trabajo grĂĄfica, ÂĄseleccione al menos uno!\n"
@@ -2605,7 +2754,7 @@ msgstr ""
"se deben instalar, el proceso puede tardar un rato en completarse. En la\n"
"pantalla se muestra una estimaciĂłn del tiempo necesario para completar la\n"
"instalaciĂłn para ayudarlo a considerar si tiene tiempo suficiente par\n"
-"disfrutar una taza de cafĂŠ.\n"
+"disfrutar una taza de cafe.\n"
"\n"
"!! Si ha sido seleccionado un paquete de servidor ya sea intencionalmente o\n"
"porque era parte de un grupo completo, se le pedirĂĄ que confirme que\n"
@@ -2660,7 +2809,7 @@ msgstr ""
"conectar su computadora a la Internet o a una red de ĂĄrea local, haga clic\n"
"sobre \"Aceptar\". Se lanzarĂĄ la detecciĂłn automĂĄtica de dispositivos de\n"
"red y mĂłdems. Si esta detecciĂłn falla, quite la marca de la casilla \"Usar\n"
-"detecciĂłn automĂĄtica\" la prĂłxima vez. TambiĂŠn puede elegir no configurar\n"
+"detecciĂłn automĂĄtica\" la prĂłxima vez. Tambien puede elegir no configurar\n"
"la red, o hacerlo mĂĄs tarde; en ese caso simplemente haga clic sobre el\n"
"botĂłn \"Cancelar\".\n"
"\n"
@@ -2674,7 +2823,7 @@ msgstr ""
"\n"
"Puede consultar el capĂ­tulo de \"GuĂ­a del Usuario\" sobre las conexiones a\n"
"la Internet para detalles acerca de la configuraciĂłn, o simplemente esperar\n"
-"hasta que su sistema estĂŠ instalado y usar el programa que se describe aquĂ­\n"
+"hasta que su sistema este instalado y usar el programa que se describe aquĂ­\n"
"para configurar su conexiĂłn.\n"
"\n"
"Si desea configurar la red mĂĄs tarde, luego de la instalaciĂłn, o si ha\n"
@@ -2809,7 +2958,7 @@ msgstr ""
"La primera vez que intenta la configuraciĂłn de X Usted puede no estar muy\n"
"satisfecho con el resultado (la pantalla es muy pequeĂąa, estĂĄ corrida hacia\n"
"la izquierda o hacia la derecha...). Es por esto que, incluso si X arranca\n"
-"correctamente, DrakX le preguntarĂĄ si la configuraciĂłn le conviene. TambiĂŠn\n"
+"correctamente, DrakX le preguntarĂĄ si la configuraciĂłn le conviene. Tambien\n"
"propondrĂĄ cambiarla mostrando una lista de modos vĂĄlidos que pudo\n"
"encontrar, y le pedirĂĄ que seleccione alguno.\n"
"\n"
@@ -2832,14 +2981,14 @@ msgstr ""
"Finalmente, se le preguntarĂĄ si desea ver la interfaz grĂĄfica en el\n"
"arranque. Note que esta pregunta se le formula incluso si eligiĂł no probar\n"
"la configuraciĂłn. Obviamente, querrĂĄ responder \"No\" si su mĂĄquina va a\n"
-"actuar como un servidor, o si no tuvo ĂŠxito con la configuraciĂłn de la\n"
+"actuar como un servidor, o si no tuvo exito con la configuraciĂłn de la\n"
"pantalla."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2851,9 +3000,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2869,9 +3017,8 @@ msgstr ""
"caso que su computadora no pueda arrancar desde el CD-ROM, Usted deberĂ­a\n"
"recurrir a este paso al menos en dos situaciones:\n"
"\n"
-" * cuando instala el cargador de arranque, DrakX sobreescribirĂĄ el sector "
-"de\n"
-"arranque (MBR) de su disco principal (a menos que estĂŠ utilizando otro\n"
+" * cuando instala el cargador de arranque, DrakX sobreescribirĂĄ el sector\n"
+"de arranque (MBR) de su disco principal (a menos que este utilizando otro\n"
"administrador de arranque) de forma tal que pueda iniciar o bien Windows o\n"
"bien GNU/Linux (asumiendo que tiene Windows en su sistema). Si necesita\n"
"volver a instalar Windows, el proceso de instalaciĂłn de Microsoft\n"
@@ -2926,21 +3073,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2956,9 +3102,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Ahora necesita elegir el lugar de su disco rĂ­gido donde se instalarĂĄ su\n"
"sistema operativo Mandrake Linux. Si su disco rĂ­gido estĂĄ vacĂ­o o si un\n"
@@ -2987,41 +3133,40 @@ msgstr ""
"Dependiendo de la configuraciĂłn de su disco rĂ­gido, estĂĄn disponibles\n"
"varias opciones:\n"
"\n"
-" * \"Usar espacio libre\": esta opciĂłn simplemente llevarĂĄ a un "
-"particionado\n"
-"automĂĄtico de su(s) disco(s) vacĂ­o(s). No se le pedirĂĄn mĂĄs detalles ni se\n"
-"le formularĂĄn mĂĄs preguntas.\n"
+" * \"Usar espacio libre\": esta opciĂłn simplemente llevarĂĄ a un\n"
+"particionado automĂĄtico de su(s) disco(s) vacĂ­o(s). No se le pedirĂĄn mĂĄs\n"
+"detalles ni se le formularĂĄn mĂĄs preguntas.\n"
"\n"
" * \"Usar particiĂłn existente\": el asistente ha detectado una o mĂĄs\n"
"particiones Linux existentes en su disco rĂ­gido. Si desea utilizarlas,\n"
"elija esta opciĂłn.\n"
"\n"
-" * \"Usar el espacio libre en la particiĂłn Windows\": si MicrosoftWindows\n"
+" * \"Usar el espacio libre en la particiĂłn Windows\": si Microsoft Windows\n"
"estĂĄ instalado en su disco rĂ­gido y ocupa todo el espacio disponible en el\n"
"mismo, Usted tiene que liberar espacio para los datos de Linux. Para\n"
-"hacerlo, puede borrar su particiĂłn y datos MicrosoftWindows (vea las\n"
+"hacerlo, puede borrar su particiĂłn y datos Microsoft Windows (vea las\n"
"soluciones \"Borrar el disco completo\" o \"Modo experto\") o cambie el\n"
"tamaĂąo de su particiĂłn Windows. El cambio de tamaĂąo se puede realizar sin\n"
-"la pĂŠrdida de datos, siempre y cuando Usted ha desfragmentado con\n"
-"anterioridad la particiĂłn Windows. TambiĂŠn se recomienda hacer una copia de\n"
+"la perdida de datos, siempre y cuando Usted ha desfragmentado con\n"
+"anterioridad la particiĂłn Windows. Tambien se recomienda hacer una copia de\n"
"respaldo de sus datos.. Se recomienda esta soluciĂłn si desea utilizar tanto\n"
-"Mandrake Linux como MicrosoftWindows en la misma computadora.\n"
+"Mandrake Linux como Microsoft Windows en la misma computadora.\n"
"\n"
-" Antes de elegir esta opciĂłn, por favor comprenda que despuĂŠs de este\n"
-"procedimiento, el tamaĂąo de su particiĂłn MicrosoftWindows serĂĄ mĂĄs pequeĂąo\n"
-"que ahora. TendrĂĄ menos espacio bajo MicrosoftWindows para almacenar sus\n"
+" Antes de elegir esta opciĂłn, por favor comprenda que despues de este\n"
+"procedimiento, el tamaĂąo de su particiĂłn Microsoft Windows serĂĄ mĂĄs pequeĂąo\n"
+"que ahora. TendrĂĄ menos espacio bajo Microsoft Windows para almacenar sus\n"
"datos o instalar software nuevo.\n"
"\n"
" * \"Borrar el disco entero\": si desea borrar todos los datos y todas las\n"
"particiones presentes en su disco rĂ­gido y reemplazarlas con su nuevo\n"
"sistema Mandrake Linux, elija esta opciĂłn. Tenga cuidado con esta soluciĂłn\n"
-"ya que no podrĂĄ revertir su elecciĂłn despuĂŠs de confirmarla.\n"
+"ya que no podrĂĄ revertir su elecciĂłn despues de confirmarla.\n"
"\n"
" !! Si elige esta opciĂłn, se perderĂĄn todos los datos en su disco. !!\n"
"\n"
-" * \"Quitar Windows\": simplemente esto borrarĂĄ todo en el disco y "
-"comenzarĂĄ\n"
-"particionando todo desde cero. Se perderĂĄn todos los datos en su disco.\n"
+" * \"Quitar Windows\": simplemente esto borrarĂĄ todo en el disco y\n"
+"comenzarĂĄ particionando todo desde cero. Se perderĂĄn todos los datos en su\n"
+"disco.\n"
"\n"
" !! Si elige esta opciĂłn, se perderĂĄn todos los datos en su disco. !!\n"
"\n"
@@ -3050,9 +3195,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3074,24 +3218,22 @@ msgstr ""
"El botĂłn \"Avanzadas\" (sĂłlo en modo Experto) le muestra dos botones mĂĄs\n"
"para:\n"
"\n"
-" * \"Generar un disquete de instalaciĂłn automĂĄtica\": para crear un "
-"disquete\n"
-"de instalaciĂłn que realizarĂĄ una instalaciĂłn completa sin la asistencia de\n"
-"un operador, similar a la instalaciĂłn que ha configurado reciĂŠn.\n"
+" * \"Generar un disquete de instalaciĂłn automĂĄtica\": para crear un\n"
+"disquete de instalaciĂłn que realizarĂĄ una instalaciĂłn completa sin la\n"
+"asistencia de un operador, similar a la instalaciĂłn que ha configurado\n"
+"recien.\n"
"\n"
-" Note que hay dos opciones diferentes disponibles despuĂŠs de hacer clic\n"
+" Note que hay dos opciones diferentes disponibles despues de hacer clic\n"
"sobre el botĂłn:\n"
"\n"
-" * \"Reproducir\". Esta es una instalaciĂłn parcialmente automatizada ya "
-"que\n"
-"la etapa de particionado (y sĂłlo esta etapa) permanece interactiva.\n"
+" * \"Reproducir\" . Esta es una instalaciĂłn parcialmente automatizada ya\n"
+"que la etapa de particionado (y sĂłlo esta etapa) permanece interactiva.\n"
"\n"
-" * \"Automatizada\". InstalaciĂłn completamente automatizada: el disco "
-"rĂ­gido\n"
-"se sobreescribe por completo, y se pierden todos los datos.\n"
+" * \"Automatizada\" . InstalaciĂłn completamente automatizada: el disco\n"
+"rĂ­gido se sobreescribe por completo, y se pierden todos los datos.\n"
"\n"
" Esta caracterĂ­stica es muy Ăştil cuando se instala una cantidad grande de\n"
-"mĂĄquinas similares. Vea la secciĂłn Auto install (en inglĂŠs) en nuestro\n"
+"mĂĄquinas similares. Vea la secciĂłn Auto install (en ingles) en nuestro\n"
"sitio web.\n"
"\n"
" * \"Guardar selecciĂłn de paquetes\"(*): guarda la selecciĂłn de paquetes\n"
@@ -3136,7 +3278,7 @@ msgstr ""
"\n"
"Puede desear volver a formatear algunas particiones ya existentes para\n"
"borrar cualquier dato que pudieran contener. Si asĂ­ lo desea, por favor\n"
-"seleccione tambiĂŠn dichas particiones.\n"
+"seleccione tambien dichas particiones.\n"
"\n"
"Por favor note que no es necesario volver a formatear todas las particiones\n"
"pre-existentes. Debe volver a formatear las particiones que contienen el\n"
@@ -3144,11 +3286,11 @@ msgstr ""
"volver a formatear particiones que contienen datos que desea preservar\n"
"(tĂ­picamente \"/home\").\n"
"\n"
-"Tenga sumo cuidado cuando selecciona las particiones. DespuĂŠs de formatear,\n"
+"Tenga sumo cuidado cuando selecciona las particiones. Despues de formatear,\n"
"se borrarĂĄn todos los datos en las particiones seleccionadas y no podrĂĄ\n"
"recuperarlos en absoluto.\n"
"\n"
-"Haga clic sobre \"Aceptar\" cuando estĂŠ listo para formatear las\n"
+"Haga clic sobre \"Aceptar\" cuando este listo para formatear las\n"
"particiones.\n"
"\n"
"Haga clic sobre \"Cancelar\" si desea elegir otra particiĂłn para la\n"
@@ -3215,9 +3357,9 @@ msgid ""
"terminate the installation. To continue with the installation, click on the\n"
"\"Accept\" button."
msgstr ""
-"Antes de continuar, deberĂ­a leer cuidadosamente los tĂŠrminos de la\n"
+"Antes de continuar, deberĂ­a leer cuidadosamente los terminos de la\n"
"licencia. Los mismos cubren a toda la distribuciĂłn Mandrake Linux, y si\n"
-"Usted no estĂĄ de acuerdo con todos los tĂŠrminos en la misma, haga clic\n"
+"Usted no estĂĄ de acuerdo con todos los terminos en la misma, haga clic\n"
"sobre el botĂłn \"Rechazar\". Esto terminarĂĄ la instalaciĂłn inmediatamente.\n"
"Para continuar con la instalaciĂłn, haga clic sobre el botĂłn \"Aceptar\"."
@@ -3268,38 +3410,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3324,7 +3460,7 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Ahora necesita elegir quĂŠ particiones se utilizarĂĄn para la instalaciĂłn de\n"
+"Ahora necesita elegir que particiones se utilizarĂĄn para la instalaciĂłn de\n"
"su sistema Mandrake Linux. Si las particiones ya han sido definidas, ya sea\n"
"por una instalaciĂłn previa de GNU/Linux o con otra herramienta de\n"
"particionado, puede utilizarlas. En caso contrario se deben definir\n"
@@ -3350,27 +3486,23 @@ msgstr ""
"\n"
" * \"MĂĄs\": le da acceso a caracterĂ­sticas adicionales:\n"
"\n"
-" * \"Guardar tabla de particiones\": guarda la tabla de particiones en "
-"un\n"
-"disquete. Útil para recuperar la tabla de particiones más adelante en caso\n"
-"que sea necesario. Es altamente recomendable realizar este paso.\n"
+" * \"Guardar tabla de particiones\": guarda la tabla de particiones en\n"
+"un disquete. Útil para recuperar la tabla de particiones más adelante en\n"
+"caso que sea necesario. Es altamente recomendable realizar este paso.\n"
"\n"
-" * \"Recuperar tabla de particiones\": esta opciĂłn le permitirĂĄ "
-"restaurar\n"
-"una tabla de particiones guardada previamente en un disquete.\n"
+" * \"Recuperar tabla de particiones\": esta opciĂłn le permitirĂĄ\n"
+"restaurar una tabla de particiones guardada previamente en un disquete.\n"
"\n"
-" * \"Rescatar tabla de particiones\": si su tabla de particiones estĂĄ "
-"daĂąada\n"
-"puede intentar recuperarla utilizando esta opciĂłn. Por favor, tenga cuidado\n"
-"y recuerde que puede fallar.\n"
+" * \"Rescatar tabla de particiones\": si su tabla de particiones estĂĄ\n"
+"daĂąada puede intentar recuperarla utilizando esta opciĂłn. Por favor, tenga\n"
+"cuidado y recuerde que puede fallar.\n"
"\n"
" * \"Volver a cargar\": descarta todos los cambios y carga su tabla de\n"
"particiones inicial.\n"
"\n"
-" * \"Montaje automĂĄtico de soportes removibles\": si desmarca esta "
-"opciĂłn\n"
-"los usuarios estarĂĄn forzados a montar y desmontar manualmente los soportes\n"
-"removibles como los disquetes y los CD-ROMs.\n"
+" * \"Montaje automĂĄtico de soportes removibles\": si desmarca esta\n"
+"opciĂłn los usuarios estarĂĄn forzados a montar y desmontar manualmente los\n"
+"soportes removibles como los disquetes y los CD-ROMs.\n"
"\n"
" * \"Asistente\": use esta opciĂłn si desea utilizar un asistente para\n"
"particionar su disco rĂ­gido. Se recomienda esto si no tiene un buen\n"
@@ -3385,7 +3517,7 @@ msgstr ""
"guardarĂĄ sus cambios en el disco.\n"
"\n"
"Nota: todas las opciones son accesibles por medio del teclado. Navegue a\n"
-"travĂŠs de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
+"traves de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
"\n"
"Cuando se selecciona una particiĂłn, puede utilizar:\n"
"\n"
@@ -3440,7 +3572,7 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Se ha detectado mĂĄs de una particiĂłn MicrosoftWindows en su disco rĂ­gido.\n"
+"Se ha detectado mĂĄs de una particiĂłn Microsoft Windows en su disco rĂ­gido.\n"
"Por favor, elija aquella a la cual desea cambiarle el tamaĂąo para poder\n"
"instalar su sistema operativo Mandrake Linux nuevo.\n"
"\n"
@@ -3456,11 +3588,11 @@ msgstr ""
"\"NĂşmero de disco rĂ­gido\" siempre es una letra que sigue a \"hd\" o a\n"
"\"sd\". Para los discos IDE:\n"
"\n"
-" * \"a\" significa \"disco rĂ­gido maestro en la controladora IDE primaria"
-"\",\n"
+" * \"a\" significa \"disco rĂ­gido maestro en la controladora IDE\n"
+"primaria\",\n"
"\n"
-" * \"b\" significa \"disco rĂ­gido esclavo en la controladora IDE primaria"
-"\",\n"
+" * \"b\" significa \"disco rĂ­gido esclavo en la controladora IDE\n"
+"primaria\",\n"
"\n"
" * \"c\" significa \"disco rĂ­gido maestro en la controladora IDE\n"
"secundaria\",\n"
@@ -3493,11 +3625,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3521,7 +3653,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
"DrakX ahora necesita saber si desea realizar una instalaciĂłn por defecto\n"
-"(\"Recomendada\") o si desea tener un control mayor (\"Experto\"). TambiĂŠn\n"
+"(\"Recomendada\") o si desea tener un control mayor (\"Experto\"). Tambien\n"
"puede elegir realizar una instalaciĂłn nueva o una actualizaciĂłn de un\n"
"sistema Mandrake Linux existente:\n"
"\n"
@@ -3532,12 +3664,12 @@ msgstr ""
" * \"ActualizaciĂłn\": esta clase de instalaciĂłn le permite simplemente\n"
"actualizar los paquetes que en este momento estĂĄn instalados en su sistema\n"
"Mandrake Linux. La misma mantiene las particiones corrientes de sus discos\n"
-"asĂ­ como tambiĂŠn las configuraciones de usuarios. Todos los otros pasos de\n"
+"asĂ­ como tambien las configuraciones de usuarios. Todos los otros pasos de\n"
"instalaciĂłn permanecen disponibles con respecto a la instalaciĂłn simple;\n"
"\n"
" * \"SĂłlo actualizar paquetes\": esta clase completamente nueva le permite\n"
"actualizar un sistema Mandrake Linux existente a la vez que mantiene todas\n"
-"las configuraciones del sistema sin cambios. TambiĂŠn es posible aĂąadir\n"
+"las configuraciones del sistema sin cambios. Tambien es posible aĂąadir\n"
"paquetes nuevos a la instalaciĂłn corriente.\n"
"\n"
"Las actualizaciones deberĂ­an funcionar sin problemas para los sistemas\n"
@@ -3558,7 +3690,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3576,7 +3708,7 @@ msgstr ""
"del idioma que eligiĂł) y Usted ni siquiera verĂĄ este paso. Sin embargo,\n"
"podrĂ­a no tener un teclado que se corresponde exactamente con su idioma:\n"
"por ejemplo, si Usted es una persona hispano-parlante que estĂĄ en Argentina\n"
-"o MĂŠjico, su teclado serĂĄ un teclado Latinoamericano, pero si estĂĄ en\n"
+"o Mejico, su teclado serĂĄ un teclado Latinoamericano, pero si estĂĄ en\n"
"EspaĂąa serĂĄ uno EspaĂąol. En ambos casos, Usted tendrĂĄ que volver a este\n"
"paso de la instalaciĂłn y elegir un teclado apropiado de la lista.\n"
"\n"
@@ -3585,7 +3717,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3608,7 +3740,7 @@ msgstr ""
"aplicaciones. Por ejemplo, si albergarĂĄ a gente de Francia en su mĂĄquina,\n"
"seleccione EspaĂąol como idioma principal en la vista de ĂĄrbol y en la\n"
"secciĂłn avanzada haga clic sobre la estrella gris que corresponde a\n"
-"\"FrancĂŠs|Francia\".\n"
+"\"Frances|Francia\".\n"
"\n"
"Note que se pueden instalar mĂşltiples idiomas. Una vez que ha seleccionado\n"
"cualquier idioma adicional haga clic sobre el botĂłn \"Aceptar\" para\n"
@@ -3616,7 +3748,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3646,7 +3778,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3656,23 +3788,23 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3698,7 +3830,7 @@ msgstr ""
"administrador del sistema y es el Ăşnico autorizado a hacer actualizaciones,\n"
"agregar usuarios, cambiar la configuraciĂłn general del sistema, etc.\n"
"Resumiendo, ÂĄ\"root\" puede hacer de todo!. Es por esto que deberĂĄ elegir\n"
-"una contraseĂąa que sea difĂ­cil de adivinar DrakX le dirĂĄ si la que eligiĂł\n"
+"una contraseĂąa que sea difĂ­cil de adivinar - DrakX le dirĂĄ si la que eligiĂł\n"
"es demasiado fĂĄcil. Como puede ver, puede optar por no ingresar una\n"
"contraseĂąa, pero le recomendamos encarecidamente que ingrese una, aunque\n"
"sea sĂłlo por una razĂłn: no piense que debido a que Usted arrancĂł GNU/Linux,\n"
@@ -3708,9 +3840,9 @@ msgstr ""
"accediendo a las mismas sin el cuidado suficiente. Es por esto que es\n"
"importante que sea difĂ­cil convertirse en \"root\".\n"
"\n"
-"La contraseĂąa deberĂ­a ser una mezcla de caracteres alfanumĂŠricos y tener al\n"
+"La contraseĂąa deberĂ­a ser una mezcla de caracteres alfanumericos y tener al\n"
"menos una longitud de 8 caracteres. Nunca escriba la contraseĂąa de \"root\"\n"
-"eso hace que sea muy fĂĄcil comprometer a un sistema.\n"
+"- eso hace que sea muy fĂĄcil comprometer a un sistema.\n"
"\n"
"Sin embargo, por favor no haga la contraseĂąa muy larga o complicada debido\n"
"a que Usted debe poder recordarla sin realizar mucho esfuerzo.\n"
@@ -3733,7 +3865,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3755,7 +3887,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3763,7 +3895,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3791,20 +3923,19 @@ msgstr ""
"sector de arranque de grub/LILO de forma tal que Usted pueda arrancar\n"
"GNU/Linux u otro sistema operativo;\n"
"\n"
-" * si encuentra un sector de arranque de grub o LILO, lo reemplazarĂĄ con "
-"uno\n"
-"nuevo;\n"
+" * si encuentra un sector de arranque de grub o LILO, lo reemplazarĂĄ con\n"
+"uno nuevo;\n"
"\n"
"En caso de duda, DrakX mostrarĂĄ un diĂĄlogo con varias opciones.\n"
"\n"
" * \"Cargador de arranque a usar\": tiene tres opciones:\n"
"\n"
-" * \"LILO con menĂş grĂĄfico\": si prefiere a LILO con su interfaz "
+" * \"LILO con menĂş grĂĄfico\": si prefiere a LILO con su interfaz\n"
"grĂĄfica.\n"
"\n"
" * \"GRUB\": si prefiere a grub (menĂş de texto).\n"
"\n"
-" * \"LILO con menĂş de texto\": si prefiere a LILO con su interfaz de "
+" * \"LILO con menĂş de texto\": si prefiere a LILO con su interfaz de\n"
"texto.\n"
"\n"
" * \"Dispositivo de arranque\": en la mayorĂ­a de los casos, no cambiarĂĄ lo\n"
@@ -3814,12 +3945,12 @@ msgstr ""
"\n"
" * \"Demora antes de arrancar la imagen predeterminada\": cuando vuelve a\n"
"arrancar la computadora, esta es la demora que se garantiza al usuario para\n"
-"elegir en el menĂş del cargador de arranque, una entrada distinta a la\n"
+"elegir - en el menĂş del cargador de arranque, una entrada distinta a la\n"
"predeterminada.\n"
"\n"
"!! Tenga presente que si no elige instalar un cargador de arranque\n"
"(seleccionando \"Cancelar\"), ÂĄDebe asegurarse que tiene una forma de\n"
-"arrancar a su sistema Mandrake Linux! TambiĂŠn debe asegurarse que sabe lo\n"
+"arrancar a su sistema Mandrake Linux! Tambien debe asegurarse que sabe lo\n"
"que hace antes de cambiar cualquier opciĂłn. !!\n"
"\n"
"Haciendo clic sobre el botĂłn \"Avanzadas\" en este diĂĄlogo se le ofrecerĂĄn\n"
@@ -3837,7 +3968,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3855,14 +3986,14 @@ msgstr ""
"instalan correctamente. Si este no es el caso, puede aĂąadir una entrada a\n"
"mano en esta pantalla. Tenga cuidado de elegir los parĂĄmetros correctos.\n"
"\n"
-"TambiĂŠn puede no desear dar acceso a estos otros sistemas operativos a\n"
+"Tambien puede no desear dar acceso a estos otros sistemas operativos a\n"
"cualquiera. En ese caso, puede borrar las entradas correspondientes. Pero\n"
"entonces, ÂĄnecesitarĂĄ un disquete de arranque para poder arrancar esos\n"
"otros sistemas operativos!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3878,29 +4009,28 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3912,35 +4042,35 @@ msgstr ""
"Otros sistemas operativos pueden ofrecerle uno, pero Mandrake Linux le\n"
"ofrece tres.\n"
"\n"
-" * \"pdq\"\"print, don't queue\" (imprimir sin poner en cola), es la\n"
+" * \"pdq\" - \"print, don't queue\" (imprimir sin poner en cola), es la\n"
"elecciĂłn si Usted tiene una conexiĂłn directa a su impresora y desea evitar\n"
"el pĂĄnico de los papeles trabados, y no tiene impresora en red alguna.\n"
"ManejarĂĄ sĂłlo casos de red muy simples y es algo lento para las redes.\n"
-"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. DespuĂŠs de la\n"
+"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. Despues de la\n"
"instalaciĂłn puede cambiar sus elecciones ejecutando PrinterDrake desde el\n"
"Centro de Control Mandrake y eligiendo el modo experto.\n"
"\n"
-" * \"CUPS\"\"Common Unix Printing System\" (Sistema de ImpresiĂłn ComĂşn de\n"
-"Unix) es excelente imprimiendo en su impresora local y tambiĂŠn en la otra\n"
-"punta del planeta. Es simple y puede actuar como servidor o cliente para el\n"
-"sistema de impresiĂłn antiguo \"lpd\", por lo que es compatible con los\n"
-"sistemas anteriores. Puede hacer muchas cosas, pero la configuraciĂłn bĂĄsica\n"
-"es tan simple como la de \"pdq\". Si necesita que emule a un servidor\n"
-"\"lpd\", debe encender el demonio \"cups-lpd\". Tiene interfaces grĂĄficas\n"
-"para imprimir o elegir las opciones de la impresora.\n"
-"\n"
-" * \"lprNG\"\"line printer daemon New Generation\" (servidor de impresora "
-"de\n"
-"lĂ­neas Nueva GeneraciĂłn). Este sistema puede hacer aproximadamente las\n"
-"mismas cosas que los otros, pero imprimirĂĄ en impresoras montadas sobre una\n"
-"red Novell, debido a que soporta el protocolo IPX, y puede imprimir\n"
-"directamente a comandos del shell. Si necesita Novell o imprimir a comandos\n"
-"de sin utilizar tuberĂ­as, utilice lprNG. De no ser asĂ­, se prefiere a CUPS\n"
-"ya que es mĂĄs simple y es mejor al trabajar sobre redes."
+" * \"CUPS\" - \"Common Unix Printing System\" (Sistema de ImpresiĂłn ComĂşn\n"
+"de Unix) es excelente imprimiendo en su impresora local y tambien en la\n"
+"otra punta del planeta. Es simple y puede actuar como servidor o cliente\n"
+"para el sistema de impresiĂłn antiguo \"lpd\", por lo que es compatible con\n"
+"los sistemas anteriores. Puede hacer muchas cosas, pero la configuraciĂłn\n"
+"bĂĄsica es tan simple como la de \"pdq\". Si necesita que emule a un\n"
+"servidor \"lpd\", debe encender el demonio \"cups-lpd\". Tiene interfaces\n"
+"grĂĄficas para imprimir o elegir las opciones de la impresora.\n"
+"\n"
+" * \"lprNG\" - \"line printer daemon New Generation\" (servidor de\n"
+"impresora de lĂ­neas Nueva GeneraciĂłn). Este sistema puede hacer\n"
+"aproximadamente las mismas cosas que los otros, pero imprimirĂĄ en\n"
+"impresoras montadas sobre una red Novell, debido a que soporta el protocolo\n"
+"IPX, y puede imprimir directamente a comandos del shell. Si necesita Novell\n"
+"o imprimir a comandos de sin utilizar tuberĂ­as, utilice lprNG. De no ser\n"
+"asĂ­, se prefiere a CUPS ya que es mĂĄs simple y es mejor al trabajar sobre\n"
+"redes."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3965,11 +4095,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX ahora detecta cualquier dispositivo IDE presente en su computadora.\n"
-"TambiĂŠn buscarĂĄ una o mĂĄs tarjetas SCSI PCI en su sistema. Si se encuentra\n"
+"Tambien buscarĂĄ una o mĂĄs tarjetas SCSI PCI en su sistema. Si se encuentra\n"
"una tarjeta SCSI DrakX instalarĂĄ el controlador apropiado automĂĄticamente.\n"
"\n"
"Debido a que la detecciĂłn de hardware a veces no detectarĂĄ alguna pieza de\n"
@@ -3992,12 +4122,12 @@ msgstr ""
"\"GuĂ­a del Usuario\" (capĂ­tulo 3, secciĂłn \"Recopilando informaciĂłn acerca\n"
"de su hardware\") en busca de consejos para recopilar los parĂĄmetros\n"
"necesarios a partir de la documentaciĂłn del hardware, desde el sitio web\n"
-"del fabricante (si tiene acceso a la Internet) o desde MicrosoftWindows (si\n"
-"utilizaba este hardware con Windows en su sistema)."
+"del fabricante (si tiene acceso a la Internet) o desde Microsoft Windows\n"
+"(si utilizaba este hardware con Windows en su sistema)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4007,9 +4137,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4021,7 +4150,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -4069,13 +4198,13 @@ msgstr ""
"botones 2do y 3ro del ratĂłn que por lo general no tienen los ratones\n"
"estĂĄndar de Apple. Algunos ejemplos son los siguientes:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: esta opciĂłn se puede usar o bien para cargar los mĂłdulos\n"
-"iniciales, antes que estĂŠ disponible el dispositivo de arranque, o bien\n"
+"iniciales, antes que este disponible el dispositivo de arranque, o bien\n"
"cargar una imagen de ramdisk para una situaciĂłn de arranque de emergencia.\n"
"\n"
" * TamaĂąo de Initrd: generalmente el tamaĂąo por defecto del ramdisk es 4096\n"
@@ -4092,12 +4221,12 @@ msgstr ""
"\n"
" * Predeterminada: selecciona a esta entrada como la opciĂłn Linux por\n"
"defecto, que se puede elegir simplemente presionando [Intro] en el prompt\n"
-"de Yaboot. Esta entrada tambiĂŠn se marcarĂĄ con un \"*\", si presiona [Tab]\n"
+"de Yaboot. Esta entrada tambien se marcarĂĄ con un \"*\", si presiona [Tab]\n"
"para ver las selecciones del arranque."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4124,9 +4253,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4151,26 +4279,25 @@ msgstr ""
"entre CD, arranque OF, MacOS o Linux.\n"
"\n"
" * Demora de arranque del nĂşcleo: esta demora es similar a la demora de\n"
-"arranque de LILO. Luego de seleccionar Linux, tendrĂĄ esta demora en dĂŠcimas\n"
+"arranque de LILO. Luego de seleccionar Linux, tendrĂĄ esta demora en decimas\n"
"de segundo antes que se seleccione su descripciĂłn del nĂşcleo\n"
"predeterminada.\n"
"\n"
-" * ÂżHabilitar arranque desde el CD?: marcando esta opciĂłn Usted puede "
-"elegir\n"
-"\"C\" para el CD en el primer prompt de arranque.\n"
+" * ÂżHabilitar arranque desde el CD?: marcando esta opciĂłn Usted puede\n"
+"elegir \"C\" para el CD en el primer prompt de arranque.\n"
"\n"
" * ÂżHabilitar arranque OF?: marcando esta opciĂłn Usted puede elegir \"N\"\n"
"para Open Firmware en el primer prompt de arranque.\n"
"\n"
-" * SO predeterminado: puede seleccionar quĂŠ sistema operativo arrancarĂĄ por\n"
+" * SO predeterminado: puede seleccionar que sistema operativo arrancarĂĄ por\n"
"defecto cuando expira la demora de Open Firmware."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4178,12 +4305,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4199,7 +4325,7 @@ msgid ""
"associated with it."
msgstr ""
"AquĂ­ se le presentan varios parĂĄmetros que conciernen a su mĂĄquina.\n"
-"Dependiendo de su hardware instalado, puede o no, ver las entradas\n"
+"Dependiendo de su hardware instalado, puede - o no, ver las entradas\n"
"siguientes:\n"
"\n"
" * \"RatĂłn\": verifique la configuraciĂłn del ratĂłn y haga clic sobre el\n"
@@ -4218,10 +4344,9 @@ msgstr ""
" * \"Impresora\": al hacer clic sobre el botĂłn \"Sin impresora\" se abrirĂĄ\n"
"el asistente de configuraciĂłn de la impresora.\n"
"\n"
-" * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su "
-"sistema,\n"
-"la misma se muestra aquĂ­. Durante la instalaciĂłn no es posible modificaciĂłn\n"
-"alguna.\n"
+" * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su\n"
+"sistema, la misma se muestra aquĂ­. Durante la instalaciĂłn no es posible\n"
+"modificaciĂłn alguna.\n"
"\n"
" * \"Tarjeta de TV\": si se detecta una tarjeta de TV en su sistema, la\n"
"misma se muestra aquĂ­. Durante la instalaciĂłn no es posible modificaciĂłn\n"
@@ -4233,7 +4358,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4245,7 +4370,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4263,7 +4388,7 @@ msgstr ""
"Haga clic sobre \"Cancelar\" para cancelar esta operaciĂłn sin perder los\n"
"datos y las particiones presentes en esta unidad de disco."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4275,12 +4400,12 @@ msgstr ""
"disquete de arranque no contiene un nĂşcleo de misma versiĂłn que el soporte "
"de instalaciĂłn (haga un nuevo disquete de arranque por favor)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "TĂş tambiĂŠn debes formatear %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4305,20 +4430,20 @@ msgstr ""
"\n"
"ÂżRealmente desea instalar estos servidores?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "No se puede usar difusiĂłn sin un dominio NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inserte un disquete formateado con FAT en la disquetera %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Este disquete no estĂĄ formateado con FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4326,7 +4451,7 @@ msgstr ""
"Para utilizar esta selecciĂłn de paquetes salvada, arranque la instalaciĂłn "
"con \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Error al leer el archivo %s"
@@ -4357,7 +4482,7 @@ msgstr "Debe tener una particiĂłn de intercambio"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4365,59 +4490,59 @@ msgstr ""
"\n"
"ÂżDesea continuar de todas formas?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe tener una particiĂłn FAT montada en /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Usar el espacio libre"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "No hay espacio libre suficiente para asignar las particiones nuevas"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Usar la particiĂłn existente"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "No hay ninguna particiĂłn existente para usar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Usar la particiĂłn de Windows para loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "ÂżQuĂŠ particiĂłn desea usar para Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Elija los tamaĂąos"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "TamaĂąo de la particiĂłn raĂ­z en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "TamaĂąo de la particiĂłn de intercambio en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Usar el espacio libre de la particiĂłn Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "ÂżA quĂŠ particiĂłn desea cambiarle el tamaĂąo?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Calculando los lĂ­mites del sistema de archivos Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4426,13 +4551,16 @@ msgstr ""
"El redimensionador de tamaĂąo de la FAT no puede gestionar su particiĂłn, \n"
"ocurriĂł el error siguiente: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Su particiĂłn Windows estĂĄ muy fragmentada, por favor primero ejecute \"defrag"
"\""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4454,54 +4582,54 @@ msgstr ""
" seguridad de sus datos.\n"
"Cuando estĂŠ seguro, pulse sobre Aceptar."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "ÂżQuĂŠ tamaĂąo desea conservar para windows en la"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "particiĂłn %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FallĂł el redimensionado de la FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"No hay particiones FAT para redimensionar o para usar como loopback (o no "
"queda espacio suficiente)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Borrar el disco entero"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Quitar Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Tiene mĂĄs de un disco rĂ­gido, Âżsobre cuĂĄl desea instalar Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Se perderĂĄn TODAS las particiones y sus datos en la unidad %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionamiento de disco personalizado"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4510,11 +4638,11 @@ msgstr ""
"Ahora puede particionar %s.\n"
"Cuando haya terminado, no se olvide de guardar usando 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "No queda espacio libre suficiente en la particiĂłn de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "No se puede encontrar nada de espacio para instalar"
@@ -4523,16 +4651,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"El asistente de particionamiento de DrakX encontrĂł las siguientes soluciones:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "FallĂł el particionamiento: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Levantando la red"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Bajando la red"
@@ -4544,12 +4672,12 @@ msgstr ""
"OcurriĂł un error y no se puede gestionar de forma adecuada.\n"
"ContinĂşe bajo su propio riesgo."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto de montaje %s duplicado"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4561,12 +4689,12 @@ msgstr ""
"Compruebe el CD de instalaciĂłn en un sistema ya existente con el comando:\n"
" rpm -qpl Mandrake/RPMS/*.rpm\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Ninguna disquetera disponible"
@@ -4576,9 +4704,9 @@ msgstr "Ninguna disquetera disponible"
msgid "Entering step `%s'\n"
msgstr "Entrando en la etapa '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4587,200 +4715,154 @@ msgstr ""
"Mandrake Linux. Si eso ocurre, puede intentar una instalaciĂłn tipo texto.\n"
"Para ello, presione 'F1' cuando arranque desde el CDROM, e introduzca 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Tipo de instalaciĂłn"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Por favor, elija uno de los siguentes tipos de instalaciĂłn:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"El tamaĂąo total para los grupos que seleccionĂł es de aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si desea instalar un tamaĂąo total inferior,\n"
-"elija el porcentaje de paquetes que desea instalar.\n"
-"\n"
-"Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
-"un porcentaje de 100%% instalarĂĄ todos los paquetes seleccionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Tiene espacio en disco para sĂłlo %d%% de esos paquetes.\n"
-"\n"
-"Si desea instalar menos de esto,\n"
-"elija el porcentaje de paquetes que desea instalar.\n"
-"Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
-"un porcentaje de %d%% instalarĂĄ todos los que sea posible."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "PodrĂĄ elegirlos mĂĄs detalladamente en la etapa siguiente"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Porcentaje de paquetes a instalar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "SelecciĂłn de grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "SelecciĂłn de paquetes individuales"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "TamaĂąo total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paquete incorrecto"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nombre: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "VersiĂłn: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "TamaĂąo: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importancia: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No puede seleccionar este paquete porque no hay espacio suficiente para "
"instalarlo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Se van a instalar los siguientes paquetes"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Se van a quitar los siguientes paquetes"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "No puede seleccionar/deseleccionar este paquete"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este es un paquete obligatorio, no puede desmarcarlo"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "No puede desmarcar este paquete. Ya estĂĄ instalado"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Se debe actualizar este paquete\n"
"ÂżEstĂĄ seguro que quiere desmarcarlo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "No puede desmarcar este paquete. Debe ser actualizado"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Mostrar los paquetes seleccionados automĂĄticamente"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Cargar/Guardar en un disquete"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Actualizando la selecciĂłn de paquetes"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "InstalaciĂłn mĂ­nima"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Elija los paquetes que desea instalar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tiempo restante "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Preparando la instalaciĂłn. Espere, por favor"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquetes"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalando el paquete %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aceptar"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rechazar"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4796,17 +4878,17 @@ msgstr ""
"Si no lo posee, pulse Cancelar para cancelar la instalaciĂłn desde este CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "ÂżSeguir adelante?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Hubo un error al ordenar los paquetes:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Hubo un error al instalar los paquetes:"
@@ -4885,11 +4967,11 @@ msgstr "OcurriĂł un error"
msgid "Do you really want to leave the installation?"
msgstr "ÂżRealmente desea salir de la instalaciĂłn?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Acuerdo de licencia"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4904,7 +4986,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -5123,109 +5205,113 @@ msgstr ""
"competentes de ParĂ­s, Francia. Para cualquier pregunta relacionada con\n"
"este documento, por favor, pĂłngase en contacto con MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclado"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Seleccione la distribuciĂłn de su teclado."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "AquĂ­ tiene la lista completa de teclados disponibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "ÂżQuĂŠ tipo de instalaciĂłn desea?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "InstalaciĂłn/ActualizaciĂłn"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "ÂżEs una instalaciĂłn o una actualizaciĂłn?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomendada"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Experto"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "ActualizaciĂłn"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "SĂłlo actualizar los paquetes."
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Por favor, seleccione el tipo de su ratĂłn."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Puerto del ratĂłn"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Seleccione el puerto serie al que estĂĄ conectado el ratĂłn, por favor."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "EmulaciĂłn de los botones"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "EmulaciĂłn del botĂłn 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "EmulaciĂłn del botĂłn 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configurando tarjetas PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configurando dispositivos IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "no hay particiones disponibles"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Rastreando las particiones para encontrar los puntos de montaje"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Seleccione los puntos de montaje"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5239,7 +5325,7 @@ msgstr ""
"\n"
"ÂżEstĂĄ de acuerdo en perder todas las particiones?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5247,7 +5333,7 @@ msgstr ""
"DiskDrake no pudo leer correctamente la tabla de particiones.\n"
"ÂĄContinĂşe bajo su propio riesgo!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5255,78 +5341,81 @@ msgstr ""
"ÂĄNo hay 1MB de espacio para bootstrap! La instalaciĂłn continuarĂĄ, pero para "
"arrancar su sistema, necesitarĂĄ crear la particiĂłn bootstrap en DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "No se encontrĂł particiĂłn raĂ­z para efectuar la actualizaciĂłn"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "ParticiĂłn raĂ­z"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "ÂżCual es la particiĂłn raĂ­z (/) de su sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reiniciar el equipo para que se efectĂşe la modificaciĂłn de la tabla "
"de particiones"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Elija las particiones que desea formatear"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "ÂżVerificar el disco en busca de bloques malos?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formateando las particiones"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando y formateando el archivo %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Espacio de intercambio insuficiente para completar la instalaciĂłn, aĂąada un "
"poco mĂĄs"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Buscando los paquetes disponibles"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Buscando los paquetes disponibles"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Encontrando los paquetes a actualizar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "No puede desmarcar este paquete. Ya estĂĄ instalado"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Su sistema no tiene espacio suficiente para instalar o actualizar (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "MĂ­nima (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendada (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5336,35 +5425,35 @@ msgstr ""
"El formato es el mismo que los disquetes generados para la instalaciĂłn "
"automĂĄtica."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Cargar desde un disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Cargando desde un disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "SelecciĂłn de paquetes"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Introduzca un disquete que contenga la selecciĂłn de paquetes"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Guardar en un disquete"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "El tamaĂąo seleccionado es mayor que el disponible"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Tipo de instalaciĂłn."
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5372,19 +5461,19 @@ msgstr ""
"No ha seleccionado ningĂşn grupo de paquetes\n"
"Elija por favor la mĂ­nima instalaciĂłn que quiera."
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Con X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Con documentaciĂłn bĂĄsica (ÂĄrecomendado!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "InstalaciĂłn mĂ­nima \"en serio\" (especialmente sin urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5394,16 +5483,16 @@ msgstr ""
"Si no tiene ningĂşn CD, haga clic sobre \"Cancelar\".\n"
"Si sĂłlo le faltan algunos CDs, desmĂĄrquelos y haga clic sobre \"Aceptar\"."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetado como \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Preparando la instalaciĂłn"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5412,23 +5501,23 @@ msgstr ""
"Instalando el paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "ConfiguraciĂłn posterior a la instalaciĂłn"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Por favor, inserte el disquete de arranque en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Por favor, inserte el disquete de mĂłdulos actualizados en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5501,13 +5590,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5519,155 +5610,185 @@ msgstr ""
"\n"
"ÂżDesea instalar las actualizaciones?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Contactando con el sitio web de Mandrake Linux para obtener la lista de las "
"rĂŠplicas disponibles"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Elija un sitio de rĂŠplica del que bajar los paquetes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Contactando con el sitio de rĂŠplica para obtener la lista de los paquetes "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "ÂżCuĂĄl es su huso horario?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Reloj interno puesto a GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "SincronizaciĂłn automĂĄtica de hora (usando NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Servidor NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Sin impresora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "ÂżTiene una tarjeta de sonido ISA?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Use \"sndconfig\" luego de la instalaciĂłn para configurar su tarjeta de "
"sonido"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"No se detectĂł tarjeta de sonido. Pruebe \"harddrake\" luego de la instalaciĂłn"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resumen"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "RatĂłn"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Huso horario"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Tarjeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Tarjeta de sonido"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Tarjeta de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Archivos locales"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "ContraseĂąa de root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Sin contraseĂąa"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Esta contraseĂąa es demasiado simple\n"
"(tiene que tener por lo menos una longitud de %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "AutentificaciĂłn"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "AutentificaciĂłn LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Servidor LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "AutentificaciĂłn NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "AutentificaciĂłn LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Obtener tipografĂ­as de Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5698,19 +5819,19 @@ msgstr ""
"Si desea crear un disquete de arranque para su sistema, inserte un disquete\n"
"en la primer disquetera y presione \"Aceptar\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primera disquetera"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segunda disquetera"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5737,7 +5858,7 @@ msgstr ""
"grave del sistema. ÂżDesea crear un disquete de arranque para su sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5752,28 +5873,28 @@ msgstr ""
"fallar\n"
"porque XFS necesita un controlador muy grande)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Disculpe, pero no hay ninguna disquetera disponible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elija la disquetera que desea usar para crear el disco de arranque"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inserte un disquete en %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Creando el disquete de arranque"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparando el cargador de arranque"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5785,11 +5906,11 @@ msgstr ""
"La instalaciĂłn continuarĂĄ, pero necesitarĂĄ\n"
"utilizar BootX para arrancar su mĂĄquina."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "ÂżDesea usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5798,16 +5919,16 @@ msgstr ""
"Âżdesea forzar la instalaciĂłn incluso si ello implicara la destrucciĂłn de la "
"primera particiĂłn?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instalando cargador de arranque"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"FallĂł la instalaciĂłn del cargador de arranque. OcurriĂł el siguiente error:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5825,18 +5946,17 @@ msgstr ""
" Luego escriba: shut-down\n"
"La prĂłxima vez que arranque deberĂ­a ver el prompt del cargador de arranque."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inserte un disquete en blanco en la unidad %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Creando el disquete de instalaciĂłn automĂĄtica"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5846,7 +5966,8 @@ msgstr ""
"\n"
"ÂżRealmente desea salir ahora?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5857,7 +5978,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5869,7 +5990,7 @@ msgstr ""
"Para obtener informaciĂłn sobre correcciones disponibles para esta versiĂłn\n"
"de Mandrake Linux, consulte el archivo de erratas disponible en\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Hay informaciĂłn disponible sobre cĂłmo configurar su sistema en el capĂ­tulo "
@@ -5877,11 +5998,16 @@ msgstr ""
"configuraciĂłn tras la instalaciĂłn de la guĂ­a de usuario oficial de Mandrake "
"Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Generar un disquete de instalaciĂłn automĂĄtica"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5895,15 +6021,15 @@ msgstr ""
"\n"
"Puede preferir reproducir la instalaciĂłn.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Guardar la selecciĂłn de paquetes"
@@ -5931,44 +6057,24 @@ msgstr "falta \"consolehelper\""
msgid "Choose a file"
msgstr "Elija un archivo"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanzada"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "BĂĄsico"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Espere, por favor"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir el ĂĄrbol"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Contraer el ĂĄrbol"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Cambiar entre vista plana y ordenada por grupos"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "ElecciĂłn incorrecta, intĂŠntelo de nuevo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "ÂżSu elecciĂłn? (por defecto %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5977,31 +6083,35 @@ msgstr ""
"Entradas que tendrĂĄ que rellenar:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "ÂżSu elecciĂłn? (0/1, por defecto '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "BotĂłn `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "ÂżDesea pulsar este botĂłn?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "ÂżSu elecciĂłn? (por defecto %s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Hay muchas cosas para seleccionar (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6011,7 +6121,7 @@ msgstr ""
"editar, o pulse Intro para continuar.\n"
"ÂżSu elecciĂłn?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6020,327 +6130,327 @@ msgstr ""
"=> Aviso, una etiqueta cambiĂł:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Reenviar"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Checo (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "AlemĂĄn"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "EspaĂąol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "FinlandĂŠs"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "FrancĂŠs"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noruego"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruso"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "BritĂĄnico"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Estadounidense"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albano"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenio (antiguo)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenio (nuevo)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenio (fonĂŠtico)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "AzerbadjĂĄn (latĂ­n)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "BĂşlgaro (fonĂŠtico)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "BĂşlgaro (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "BrasileĂąo (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorruso"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suizo (germĂĄnico)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suizo (francĂŠs)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Checo (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "AlemĂĄn (sin teclas muertas)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "DanĂŠs"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruego)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Sueco)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiano (estilo \"ruso\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiano (estilo \"latĂ­n\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Griego"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "HĂşngaro"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "IsraelĂ­"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "IsraelĂ­ (fonĂŠtico)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "IranĂ­"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "IslandĂŠs"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "JaponĂŠs de 106 teclas"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Coreano"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinoamericano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (antiguo)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (nuevo)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"numĂŠrico\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fonĂŠtico\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "LetĂłn"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonio"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "HolandĂŠs"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polaco (distribuciĂłn qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polaco (distribuciĂłn qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "PortuguĂŠs"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadiense (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumano (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumano (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Esloveno"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslovaco (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslovaco (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbio (cirĂ­lico)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado tailandĂŠs"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Teclado tajik"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (modelo \"F\" tradicional)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (modelo \"Q\" moderno)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraniano"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Estadounidense (internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"numĂŠrico\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yugoslavo (latĂ­n)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Tecla Alt derecha"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Ambas teclas Shift simultĂĄneamente"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Las teclas Control y Shift simultĂĄneamente"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Tecla CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Las teclas Ctrl y Alt simultĂĄneamente"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Las teclas Alt y Shift simultĂĄneamente"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "La tecla \"MenĂş\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Tecla \"Windows\" de la izquierda"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Tecla \"Windows\" de la derecha"
@@ -6353,7 +6463,31 @@ msgstr "Montajes circulares %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Quite los volĂşmenes lĂłgicos primero\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "NĂşmero de telĂŠfono"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formateo de particiones"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6396,10 +6530,6 @@ msgstr "1 botĂłn"
msgid "Generic 2 Button Mouse"
msgstr "RatĂłn de 2 botones genĂŠrico"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "GenĂŠrico"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rueda"
@@ -6464,38 +6594,54 @@ msgstr "ninguno"
msgid "No mouse"
msgstr "Sin ratĂłn"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Pruebe su ratĂłn, por favor."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Para activar el ratĂłn,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "ÂĄMUEVA SU RUEDA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finalizar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Siguiente ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "ÂżEs correcto?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandir el ĂĄrbol"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Contraer el ĂĄrbol"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Cambiar entre vista plana y ordenada por grupos"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectar a Internet"
@@ -6542,7 +6688,7 @@ msgstr ""
"No se ha detectado ningĂşn adaptador de red ethernet en su sistema.\n"
"No se puede configurar este tipo de conexiĂłn."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Elija la interfaz de red"
@@ -6557,7 +6703,7 @@ msgstr ""
msgid "no network card found"
msgstr "no se encontrĂł ninguna tarjeta de red"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configurando la red"
@@ -6574,15 +6720,15 @@ msgstr ""
"completamente,\n"
"como \"mimaquina.milabo.micompa.com\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nombre de la mĂĄquina"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Asistente para la configuraciĂłn de la red"
@@ -6637,7 +6783,7 @@ msgstr "ConfiguraciĂłn de RDSI"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Seleccione su proveedor.\n"
" Si no estĂĄ en la lista, elija No listado"
@@ -6656,14 +6802,14 @@ msgstr "Protocolo para el resto del mundo"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocolo para el resto del mundo \n"
" sin canal D (lĂ­neas alquiladas)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "ÂżQuĂŠ protocolo desea utilizar?"
#: ../../network/isdn.pm_.c:199
@@ -6687,7 +6833,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Si tiene una tarjeta ISA, los valores de la prĂłxima pantalla deberĂ­an ser "
@@ -6704,13 +6851,13 @@ msgid "Continue"
msgstr "Continuar"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "ÂżCuĂĄl es su tarjeta RDSI?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Se ha detectado una tarjeta RDSI PCI, pero no se conoce el tipo. Por favor, "
"seleccione una tarjeta PCI en la pantalla siguiente."
@@ -6729,47 +6876,47 @@ msgstr "Seleccione el puerto serie al que estĂĄ conectado su mĂłdem."
msgid "Dialup options"
msgstr "Opciones de llamada por mĂłdem"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nombre de la conexiĂłn"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "NĂşmero de telĂŠfono"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID de conexiĂłn"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Por script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Por terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nombre de dominio"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primer servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segundo servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6777,7 +6924,7 @@ msgstr ""
"\n"
"Puede desconectarse o volver a configurar su conexiĂłn."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6785,11 +6932,11 @@ msgstr ""
"\n"
"Puede volver a configurar su conexiĂłn."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Ahora estĂĄ conectado a Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6797,32 +6944,32 @@ msgstr ""
"\n"
"Se puede conectar a Internet o volver a configurar su conexiĂłn."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Ahora no estĂĄ conectado a Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Conectar"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Desconectar"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Configurar la conexiĂłn"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "ConfiguraciĂłn y conexiĂłn a Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ahora vamos a configurar la conexiĂłn %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6841,12 +6988,12 @@ msgstr ""
"\n"
"Pulse siguiente para continuar."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "ConfiguraciĂłn de la red"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6859,9 +7006,9 @@ msgstr ""
"para\n"
"volver a configurar sus conexiones de red y a Internet.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6871,66 +7018,72 @@ msgstr ""
"Estamos a punto de configurar su conexiĂłn de red/Internet.\n"
"Si no desea usar la detecciĂłn automĂĄtica, desmarque la casilla.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Elija el perfil a configurar"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Usar detecciĂłn automĂĄtica"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modo experto"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detectando los dispositivos..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "ConexiĂłn normal por mĂłdem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectada en el puerto %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ConexiĂłn RDSI"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detectada %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ConexiĂłn ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectada en la interfaz %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "ConexiĂłn por cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detectada conexiĂłn por cable"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "ConexiĂłn a la red local"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "tarjeta(s) de red detectada(s)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Elija la conexiĂłn que desea configurar"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6940,23 +7093,23 @@ msgstr ""
"Seleccione la que quiere utilizar.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "ConexiĂłn a Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "ÂżDesea iniciar su conexiĂłn al arrancar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "ConfiguraciĂłn de la red"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "La red necesita ser reiniciada"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6967,7 +7120,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6977,7 +7130,7 @@ msgstr ""
"\n"
"Ahora se aplicarĂĄ la configuraciĂłn a su sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6985,19 +7138,19 @@ msgstr ""
"DespuĂŠs de esto, se recomienda que reinicie su entorno X\n"
"para evitar el problema del cambio del nombre de la mĂĄquina."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Ocurrieron problemas durante la configuraciĂłn.\n"
"Verifique su conexiĂłn con net_monitor o mcc. Si su conexiĂłn no funciona, "
"puede que desee volver a iniciar la configuraciĂłn"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -7007,7 +7160,7 @@ msgstr ""
"Simplemente acepte para mantener la configuraciĂłn del dispositivo.\n"
"Al modificar los campos de abajo se ignorarĂĄ esta configuraciĂłn."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7017,38 +7170,43 @@ msgstr ""
"Cada valor tiene que introducirse como una direcciĂłn IP en notaciĂłn\n"
"decimal con puntos (por ejemplo: 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configurando el dispositivo de red %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "DirecciĂłn IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "MĂĄscara de red"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "DirecciĂłn IP automĂĄtica"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciado al arranque"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Las direcciones IP deben estar en el formato 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7061,64 +7219,64 @@ msgstr ""
"como \"mimaquina.milabo.micompa.com\".TambiĂŠn puede introducir la direcciĂłn "
"IP de la pasarela si tiene una"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Pasarela de red (ej %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositivo de pasarela de red"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "ConfiguraciĂłn de los proxies"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Id tarjeta de red (Ăştil para portĂĄtiles)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "El nombre del proxy debe ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "El nombre del proxy debe ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "ConfiguraciĂłn de Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "ÂżDesea intentar conectarse a Internet ahora?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Probando su conexiĂłn..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ahora no estĂĄ conectado a Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Por motivos de seguridad, ahora serĂĄ desconectado."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -7126,111 +7284,116 @@ msgstr ""
"El sistema no parece estar conectado al Internet.\n"
"Intente volver a configurar su conexiĂłn."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "ConfiguraciĂłn de la conexiĂłn"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Por favor, complete o verifique el campo de abajo"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ de la tarjeta"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memoria (DMA) de la tarjeta"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "E/S de la tarjeta"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "E/S_0 de la tarjeta"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "E/S_1 de la tarjeta"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Su nĂşmero de telĂŠfono personal"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nombre del proveedor (ej proveedor.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "NĂşmero de telĂŠfono del proveedor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 del proveedor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 del proveedor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Elija su paĂ­s"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modo de marcaciĂłn"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Velocidad de la conexiĂłn"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Demora de la conexiĂłn (en seg)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Usuario de la cuenta (nombre de usuario)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "ContraseĂąa de la cuenta"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "mount fallĂł: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "La particiĂłn extendida no estĂĄ disponible en esta plataforma"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Tiene un hueco en la tabla de particiones, pero no se puede usar.\n"
"La Ăşnica soluciĂłn es desplazar sus particiones primarias para que el hueco "
"estĂŠ despuĂŠs de las particiones extendidas"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "FallĂł la restauraciĂłn a partir del archivo %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Archivo de respaldo incorrecto"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Error al escribir en el archivo %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7241,187 +7404,187 @@ msgstr ""
"Esto significa que escribir cualquier cosa en el disco terminarĂĄ produciendo "
"basura al azar"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "necesario"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "importante"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "muy bueno"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bueno"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "quizĂĄs"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
"CUPS - Common Unix Printing System (Sistema de impresiĂłn comĂşn de Unix)"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR de nueva generaciĂłn"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon (Demonio de impresora de lĂ­neas)"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue (Imprimir, no encolar)"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impresora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Impresora en un servidor CUPS remoto"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Impresora en un servidor lpd remoto"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impresora de red (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impresora en un servidor SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Impresora en un servidor NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Introduzca el URI del dispositivo de impresiĂłn"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Filtrar el trabajo en un comando"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Modelo desconocido"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Impresoras locales"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Impresoras remotas"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " en el puerto paralelo \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", impresora USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dispositivo multifunciĂłn en puerto paralelo \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", dispositivo multi-funciĂłn en USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositivo multifunciĂłn en HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", dispositivo multifunciĂłn"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", imprimiendo en %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr " en servidor LDP \"%s\", impresora \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", puerto \"%s\""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr " en servidor Windows \"%s\", compartida como \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "en servidor Novell \"%s\", impresora \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", usando comando %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Impresora \"en crudo\" (sin controlador)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(en %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(en esta mĂĄquina)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "En servidor CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Por defecto)"
@@ -7443,11 +7606,11 @@ msgstr ""
"AquĂ­ no tiene que configurar las impresoras en los servidores CUPS remotos; "
"las mismas se detectarĂĄn automĂĄticamente."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "ConfiguraciĂłn de CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Especificar servidor CUPS"
@@ -7491,7 +7654,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Las direcciones IP deberĂ­an parecerse a 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "ÂĄEl nĂşmero de puerto debe ser un nĂşmero entero!"
@@ -7499,7 +7662,7 @@ msgstr "ÂĄEl nĂşmero de puerto debe ser un nĂşmero entero!"
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Puerto"
@@ -7507,20 +7670,12 @@ msgstr "Puerto"
msgid "Automatic CUPS configuration"
msgstr "ConfiguraciĂłn automĂĄtica de CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Detectando dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probar puertos"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "AĂąadir una impresora nueva"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7542,13 +7697,13 @@ msgstr ""
"darle acceso a los controladores de todas las impresoras disponibles, "
"opciones del controlador y tipos de conexiĂłn de impresoras."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7582,11 +7737,11 @@ msgstr ""
"impresiĂłn en una impresora remota si printerdrake no la lista "
"automĂĄticamente."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "DetecciĂłn automĂĄtica de impresoras"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7610,11 +7765,11 @@ msgstr ""
"de impresiĂłn, ...), seleccione \"Impresora\" en la secciĂłn de \"Hardware\" "
"del Centro de control de Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "AutodetecciĂłn de impresoras."
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7630,33 +7785,37 @@ msgstr ""
"\n"
"ÂżSeguro que desea detectar automĂĄticamente sus impresoras?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Realizar detecciĂłn automĂĄtica"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Configurar la impresora manualmente"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Probar puertos"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detectada %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Impresora en puerto paralelo \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Impresora USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7668,11 +7827,11 @@ msgstr ""
"(Puertos paralelos: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
"1ÂŞ impresora USB: /dev/usb/lp0, 2ÂŞ impresora USB: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Debe introducir un dispositivo un un nombre de archivo"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7680,7 +7839,7 @@ msgstr ""
"ÂĄNo se encontrarĂł ninguna impresora local!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7688,7 +7847,7 @@ msgstr ""
"Las impresoras en red sĂłlo se pueden instalar tras la inslaciĂłn. Seleccione "
"\"Hardware\" y luego \"Impresora\" en el Centro de control de Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7696,7 +7855,7 @@ msgstr ""
"Para instalar impresoras en red, haga clic en \"Cancelar\", cambie al \"Modo "
"experto\", y haga clic en \"AĂąadir una nueva impresora\" de nuevo."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7705,7 +7864,7 @@ msgstr ""
"quiere configurar, introduzca en la lĂ­nea de entrada un nombre de "
"dispositivo/nombre de archivo en la lĂ­nea de entrada"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7714,7 +7873,7 @@ msgstr ""
"favor, seleccione la impresora que quiere configurar o introduzca un nombre "
"de dispositivo/nombre de archivo en la lĂ­nea de entrada"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7726,7 +7885,7 @@ msgstr ""
"detectĂł correctamente o si prefiere una configuraciĂłn personalizada, active "
"la \"ConfiguraciĂłn manual\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7739,7 +7898,7 @@ msgstr ""
"detectĂł correctamente o si prefiere una configuraciĂłn personalizada, active "
"la \"ConfiguraciĂłn manual\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7747,11 +7906,11 @@ msgstr ""
"Por favor, elija el puerto donde estĂĄ conectada su impresora o ingrese el "
"nombre de un dispositivo o archivo en la lĂ­nea de entrada"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Por favor, elija el puerto al que estĂĄ conectado su impresora."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7759,52 +7918,65 @@ msgstr ""
"(Puertos paralelo: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
"1er impresora USB: /dev/usb/lp0, 2da impresora USB: /dev/usb/lp1, ...) "
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "ÂĄDebe elegir/ingresar una impresora o un dispositivo!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "ConfiguraciĂłn manual"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"ÂżEs su impresora un dispositivo multifunciĂłn de HP (OfficeJet, PSC, "
"PhotoSmart LaserJet 1100/1200/1220/3200/3300 con escĂĄner)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instalando el paquete HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Verificando el dispositivo y configurando HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instalando el paquete SANE..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalando paquetes..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Escaneando en su dispositivo multifunciĂłn de HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Escaneando en su dispositivo multifunciĂłn de HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Haciendo que el puerto de impresora estĂŠ disponible para CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Leyendo base de datos de impresoras ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opciones de la impresora remota lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7812,27 +7984,27 @@ msgstr ""
"Para utilizar impresora LPD remota, necesita proporcionar el nombre de host "
"del servidor de impresiĂłn y el nombre de la impresora en ese servidor."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Nombre de host del servidor remoto"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Nombre de la impresora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "ÂĄFalta el nombre del host remoto!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "ÂĄFalta el nombre de la impresora remota!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opciones de la impresora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7846,35 +8018,35 @@ msgstr ""
"cualquier otra informaciĂłn del nombre de usuario, contraseĂąa y grupo de "
"trabajo que haga falta."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "MĂĄquina del servidor SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nombre del recurso compartido"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grupo de trabajo"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "ÂĄDebe indicar el nombre o la direcciĂłn IP del servidor!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "ÂĄNo se encuentra el nombre del recurso compartido de Samba!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "ÂĄADVERTENCIA DE SEGURIDAD!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7897,40 +8069,57 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
-"EstĂĄ a punto de configurar la impresiĂłn a una cuenta Windows con contraseĂąa. Debido a una falla en la arquitectura del cliente Samba la contraseĂąa se pone como texto plano en la lĂ­nea de comandos del cliente Samba que se usa para transmitir el trabajo de impresiĂłn al servidor Windows. Por lo tanto, es posible que cada usuario de esta mĂĄquina vea la clave en pantalla ejecutando \"ps auxwww\".\n"
+"EstĂĄ a punto de configurar la impresiĂłn a una cuenta Windows con contraseĂąa. "
+"Debido a una falla en la arquitectura del cliente Samba la contraseĂąa se "
+"pone como texto plano en la lĂ­nea de comandos del cliente Samba que se usa "
+"para transmitir el trabajo de impresiĂłn al servidor Windows. Por lo tanto, "
+"es posible que cada usuario de esta mĂĄquina vea la clave en pantalla "
+"ejecutando \"ps auxwww\".\n"
"\n"
-"Recomendamos utilizar alguna de las alternativas siguientes (en todos los casos tiene que asegurarse que sĂłlo las mĂĄquinas de su red local tienen acceso al servidor Windows, por ejemplo utilizando un cortafuegos):\n"
+"Recomendamos utilizar alguna de las alternativas siguientes (en todos los "
+"casos tiene que asegurarse que sĂłlo las mĂĄquinas de su red local tienen "
+"acceso al servidor Windows, por ejemplo utilizando un cortafuegos):\n"
"\n"
-"Usar una cuenta sin contraseĂąa en su servidor Windows, por ej. la cuenta \"GUEST\" o una cuenta especial dedicada a la impresiĂłn. No quite la protecciĂłn con contraseĂąa de una cuenta personal o de la cuenta del administrador.\n"
+"Usar una cuenta sin contraseĂąa en su servidor Windows, por ej. la cuenta "
+"\"GUEST\" o una cuenta especial dedicada a la impresiĂłn. No quite la "
+"protecciĂłn con contraseĂąa de una cuenta personal o de la cuenta del "
+"administrador.\n"
"\n"
-"Configure a su servidor Windows para que la impresiĂłn estĂŠ disponible bajo el protocolo LPD y configure la impresiĂłn desde esta mĂĄquina bajo el tipo de conexiĂłn \"%s\" en PrinterDrake.\n"
+"Configure a su servidor Windows para que la impresiĂłn estĂŠ disponible bajo "
+"el protocolo LPD y configure la impresiĂłn desde esta mĂĄquina bajo el tipo de "
+"conexiĂłn \"%s\" en PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
"protocol and set up printing from this machine with the \"%s\" connection "
"type in Printerdrake.\n"
"\n"
-msgstr "Configure a su servidor Windows para que la impresiĂłn estĂŠ disponible bajo el protocolo IPP y configure la impresiĂłn desde esta mĂĄquina bajo el tipo de conexiĂłn \"%s\" en PrinterDrake.\n\n"
+msgstr ""
+"Configure a su servidor Windows para que la impresiĂłn estĂŠ disponible bajo "
+"el protocolo IPP y configure la impresiĂłn desde esta mĂĄquina bajo el tipo de "
+"conexiĂłn \"%s\" en PrinterDrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"Conecte su impresora a un servidor Linux y permita que su(s) mĂĄquina(s) Windows se conecten al mismo como un cliente.\n"
+"Conecte su impresora a un servidor Linux y permita que su(s) mĂĄquina(s) "
+"Windows se conecten al mismo como un cliente.\n"
"\n"
"ÂżRealmente desea continuar configurando esta impresora como lo estĂĄ haciendo?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opciones de la impresora NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7942,27 +8131,27 @@ msgstr ""
"de la mĂĄquina en TCP/IP) asĂ­ como el nombre de la cola de impresiĂłn que "
"desea usar y el nombre de usuario y la contraseĂąa apropiados."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de impresiĂłn"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nombre de la cola de impresiĂłn"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "ÂĄNo se encuentra el nombre del servidor NCP!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "ÂĄNo se encuentra la cola del servidor NCP!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Opciones de la impresora por socket/TCP"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7974,19 +8163,19 @@ msgstr ""
"servidores HP JetDirect el nĂşmero de puerto por lo general es 9100, en otros "
"servidores puede variar. Consulte el manual de su hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Nombre de host de la impresora"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "ÂĄNo se encuentra el nombre de la mĂĄquina de la impresora!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI del dispositivo de impresiĂłn"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7996,11 +8185,11 @@ msgstr ""
"debe cumplir con las especificaciones Foomatic o CUPS. Recuerde que no todos "
"los sistemas de impresiĂłn admiten URIs."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "ÂĄDebe introducir un URI vĂĄlido!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8009,27 +8198,23 @@ msgstr ""
"quĂŠ rellenar los campos DescripciĂłn ni UbicaciĂłn. Son comentarios para los "
"usuarios."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nombre de la impresora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "DescripciĂłn"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "UbicaciĂłn"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Preparando base de datos de impresoras ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "El modelo de su impresora"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8056,24 +8241,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "El modelo es correcto"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Seleccionar el modelo manualmente"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "SelecciĂłn del modelo de impresora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "ÂżQuĂŠ modelo de impresora tiene?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -8088,7 +8273,7 @@ msgstr ""
"si el cursor estĂĄ sobre un modelo equivocado o si estĂĄ en \"Impresora en "
"crudo\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8096,11 +8281,11 @@ msgstr ""
"Si no se lista su impresora, elija una compatible (vea el manual de la "
"misma) o una simliar."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "ConfiguraciĂłn de impresora de windows OKI"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8117,11 +8302,11 @@ msgstr ""
"impresora no funcionarĂĄ. El controlador ignorarĂĄ la configuraciĂłn del tipo "
"de conexiĂłn."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "ConfiguraciĂłn de impresora de inyecciĂłn de tinta Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8133,7 +8318,7 @@ msgstr ""
"de impresiĂłn. Por favor, conecte su impresora a un puerto local o "
"configĂşrelo en la mĂĄquina a la que estĂĄ conectada."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8156,7 +8341,7 @@ msgstr ""
"pĂĄginas alineadas con la cabeza de impresiĂłn \"lexmarkmaintain\" y ajuste la "
"configuraciĂłn de la alineaciĂłn de la cabeza con este programa."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8173,22 +8358,22 @@ msgstr ""
"configurados correctamente. Note que una calidad de impresiĂłn o resoluciĂłn "
"extremadamente alta puede ser bastante lenta."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "ÂĄLa opciĂłn %s debe ser un nĂşmero entero!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "ÂĄLa opciĂłn %s debe ser un nĂşmero!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "ÂĄLa opciĂłn %s estĂĄ fuera de rango"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8197,11 +8382,11 @@ msgstr ""
"ÂżQuiere configurar esta impresora (\"%s\")\n"
"como la impresora predeterminada?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "PĂĄginas de prueba"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8213,39 +8398,39 @@ msgstr ""
"incluso en impresoras lĂĄser con muy poca memoria puede que no salga. En la "
"mayorĂ­a de los casos, basta con imprimir la pĂĄgina de prueba estĂĄndar."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "No hay pĂĄginas de prueba"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Imprimir"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "PĂĄgina de prueba estĂĄndar"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "PĂĄgina de prueba alternativa (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "PĂĄgina de prueba alternativa (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "PĂĄgina de prueba de foto"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "No imprimir ninguna pĂĄgina de prueba"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Imprimir la(s) pĂĄgina(s) de prueba..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8260,7 +8445,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8268,15 +8453,15 @@ msgstr ""
"La(s) pĂĄgina(s) de prueba se enviaron al demonio de impresiĂłn.\n"
"Puede que pase algo de tiempo antes de que comience la impresiĂłn.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "ÂżFuncionĂł adecuadamente?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Impresora en crudo"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8290,7 +8475,7 @@ msgstr ""
"permiten seleccionar la impresora y modificar las opciones de configuraciĂłn "
"fĂĄcilmente.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8301,8 +8486,8 @@ msgstr ""
"nombre del archivo porque el archivo a imprimir lo proporciona la "
"aplicaciĂłn.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8316,11 +8501,11 @@ msgstr ""
"configuraciones deseadas a la lĂ­nea de comando, por ejemplo \"%s <archivo>"
"\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Para obtener una lista con las opciones disponibles para la impresora actual "
@@ -8328,7 +8513,7 @@ msgstr ""
"de opciones\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8336,7 +8521,7 @@ msgstr ""
"AquĂ­ tiene una lista de las opciones disponibles para la impresora actual:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8345,8 +8530,8 @@ msgstr ""
"Para imprimir un archivo desde la lĂ­nea de comando (ventana de terminal) use "
"el comando \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8357,7 +8542,7 @@ msgstr ""
"del archivo porque el nombre del archivo a imprimir lo proporciona la "
"aplicaciĂłn.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8365,7 +8550,7 @@ msgstr ""
"Para obtener una lista de las opciones disponibles para la impresora actual, "
"haga clic en el botĂłn \"Imprimir lista de opciones\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8374,7 +8559,7 @@ msgstr ""
"Para imprimir un archivo desde la lĂ­nea de comando (ventana de terminal) use "
"el comando \"%s <archivo>\" o \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8390,7 +8575,7 @@ msgstr ""
"detiene todos los trabajos de impresiĂłn inmediatamente cuando hace clic en "
"ĂŠl. Esto es Ăştil, por ejemplo, para atascos de papel.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8403,38 +8588,49 @@ msgstr ""
"configuraciĂłn para un trabajo de impresiĂłn particular. Simplemente aĂąada las "
"opciones deseadas a la lĂ­nea de comando, por ejemplo \"%s <archivo>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Cerrar"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Imprimiendo/Escaneando en \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Imprimiendo/Escaneando en \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Imprimiendo/Escaneando en \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Imprimiendo en la impresora \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Cerrar"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Imprimir lista de opciones"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8448,38 +8644,30 @@ msgstr ""
"\n"
"No use \"scannerdrake\" para este dispositivo."
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Su dispositivo multifunciĂłn HP se configurĂł automĂĄticamente para ser capaz "
-"de escanear. Ahora puede escanear desde la lĂ­nea comandos con \"ptal-hp %s "
-"scan ...\". No se soporta aĂşn el escaneo por medio de un interfaz grĂĄfico e "
-"desde el GIMP para su dispositivo. EncontrarĂĄ mĂĄs informaciĂłn en el archivo "
-"de su sistema \"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\". Si tiene una HP "
-"LaserJet 1100 o 1200 puede escanear cuando tenga la opciĂłn del escĂĄner "
-"instalada.\n"
-"No use \"scannerdrake\" para este dispositivo."
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Leyendo los datos de la impresora ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Transferir configuraciĂłn de la impresora"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8495,7 +8683,7 @@ msgstr ""
"transfieren.\n"
"Debido a las siguientes razones no todas las colas se pueden transferir:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8503,7 +8691,7 @@ msgstr ""
"CUPS no soporta impresoras en servidores Novell o impresoras que envĂ­an los "
"datos en un comando formado libremente.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8511,11 +8699,11 @@ msgstr ""
"PDQ sĂłlo soporta impresoras locales, impresoras LPD remotas, e impresoras "
"Socket/TCP.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD y LPRng no soportan impresoras IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8523,7 +8711,7 @@ msgstr ""
"AdemĂĄs, las colas no creadas con este programa o con \"foomatic-configure\" "
"no se pueden transferir."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8533,7 +8721,7 @@ msgstr ""
"Tampoco se pueden transferir las impresoras configuradas con los archivos "
"PPD provistos por sus fabricantes o con controladores CUPS nativos."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8543,15 +8731,15 @@ msgstr ""
"Marque las impresoras que desea transferir y haga clic \n"
"sobre \"Transferir\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "No transferir impresoras"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Transferir"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8562,13 +8750,13 @@ msgstr ""
"Haga clic sobre \"Transferir\" para sobre-escribirla.\n"
"TambiĂŠn puede ingresar un nombre nuevo o saltear esta impresora."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nombre de la impresora sĂłlo deberĂ­a contener letras, nĂşmeros y el guiĂłn "
"bajo"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8577,16 +8765,16 @@ msgstr ""
"La impresora \"%s\" ya existe,\n"
"Âżrealmente desea sobre-escribir la configuraciĂłn de la misma?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nuevo nombre de la impresora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Transfiriendo %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8595,29 +8783,29 @@ msgstr ""
"Ha transferido su impresora por defecto anterior (\"%s\"), ÂżDeberĂ­a ser "
"tambiĂŠn la impresora por defecto bajo el nuevo sistema de impresiĂłn %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Refrescando datos de impresora ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "ConfiguraciĂłn de una impresora remota"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Iniciando la red ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Configurar la red ahora"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Funcionalidad de red no configurada"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8629,11 +8817,11 @@ msgstr ""
"configuraciĂłn de red, no podrĂĄ utilizar la impresoara que estĂĄ configurando "
"ahora. ÂżCĂłmo desea proceder?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Continuar sin configurar la red"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8649,7 +8837,7 @@ msgstr ""
"impresora, tambiĂŠn utilizando el Centro de Control de Mandrake, secciĂłn "
"\"Hardware\"/\"Impresora\"."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8659,24 +8847,24 @@ msgstr ""
"verifique su configuraciĂłn y su hardware. Luego, intente configurar su "
"impresora remota de nuevo."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Reiniciando el sistema de impresiĂłn ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "Alta"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "Paranoica"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalando un sistema de impresiĂłn en el nivel de seguridad %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8701,11 +8889,11 @@ msgstr ""
"\n"
"ÂżSeguro que desea configurar la impresiĂłn para esta mĂĄquina?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Iniciar el sistema de impresiĂłn al arrancar"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8728,63 +8916,63 @@ msgstr ""
"ÂżDesea volver a activar el inicio automĂĄtico de la impresiĂłn cuando el "
"sistema se vuelva a encender?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Verificando software instalado..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Quitando LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Quitando LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Seleccione sistema de impresiĂłn (spooler)"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "ÂżQuĂŠ sistema de impresiĂłn (spooler) desea usar?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "ConfiguraciĂłn la impresora \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instalando Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opciones de impresiĂłn"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Preparando PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Configurando las aplicaciones..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "ÂżDesea configurar la impresiĂłn?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Sistema de impresiĂłn: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8796,7 +8984,7 @@ msgstr ""
"acerca de la misma o para hacer que una impresora en un servidor CUPS remoto "
"estĂŠ disponible para Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8806,30 +8994,34 @@ msgstr ""
"ellas para modificarla, para configurarla como predeterminada, o para "
"obtener informaciĂłn sobre la misma."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Refrescar la lista de impresoras (para visualizar todas las impresoras CUPS "
"remotas)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Cambiar el sistema de impresiĂłn"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Modo normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Salir"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "ÂżDesea configurar otra impresora?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Modificar configuraciĂłn de la impresora"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8838,69 +9030,69 @@ msgstr ""
"Impresora %s\n"
"ÂżQuĂŠ desea modificar de esta impresora?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "ÂĄHacerlo!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tipo de conexiĂłn de la impresora"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Nombre de la impresora, descripciĂłn, ubicaciĂłn"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Fabricante de la impresora, modelo, controlador"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Fabricante de la impresora, modelo"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Poner esta impresora como predeterminada"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Agregar esta impresora a Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Quitar esta impresora de Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Imprimir la(s) pĂĄgina(s) de prueba"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Se sabe cĂłmo usar esta impresora"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Borrar impresora"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Borrando la impresora antigua \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Impresora predeterminada"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "La impresora \"%s\" ahora es la impresora predeterminada."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Agregando impresora a Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
@@ -8908,16 +9100,16 @@ msgstr ""
"La impresora \"%s\" se agregĂł satisfactoriamente a Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "No se pudo agregar la impresora \"%s\" a Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Quitando la impresora de Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
@@ -8925,19 +9117,19 @@ msgstr ""
"La impresora \"%s\" se quitĂł satisfactoriamnete de Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "No se pudo quitar la impresora \"%s\" de Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ÂżSeguro que quiere borrar la impresora \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Borrando la impresora \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -9022,24 +9214,61 @@ msgstr "Las contraseĂąas no coinciden. ÂĄIntĂŠntelo de nuevo!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "No se puede aĂąadir una particiĂłn al RAID md%d _ya formateado_"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "No se puede escribir el archivo %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "FallĂł mkraid"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "FallĂł mkraid (ÂżquizĂĄs no estĂŠn las herramientas de raid (raidtools)?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hay suficientes particiones para un RAID de nivel %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Este nivel se debe usar con mucho cuidado. Hace su sistema mĂĄs simple de\n"
+"usar, pero tambiĂŠn mucho mĂĄs vulnerable: no debe usarse para una mĂĄquina\n"
+"conectada en red con otras o a Internet. No hay contraseĂąas de acceso."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Con este nivel de seguridad, es posible utilizar el sistema como un "
+"servidor.\n"
+"La seguridad es lo suficientemente alta como para usar el sistema como un\n"
+"servidor que acepte conexiones de mĂşltiples clientes. Nota: si su mĂĄquina "
+"sĂłlo es un cliente en la Internet, mejor deberĂ­a elegir un nivel inferior."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Opciones avanzadas"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opciones"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9100,7 +9329,7 @@ msgstr ""
"HardDrake lanza una prueba del hardware, y opcionalmente configura\n"
"el hardware nuevo/cambiado."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9179,7 +9408,7 @@ msgstr ""
"El servidor virtual de Linux (LVS) se usa para construir servidores de alto\n"
"rendimiento y alta disponibilidad."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9259,7 +9488,7 @@ msgstr ""
"actĂşan\n"
"como servidores para protocolos que usan el mecanismo RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9359,7 +9588,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Compartir archivos"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistema"
@@ -9490,6 +9719,7 @@ msgstr ""
"desarrollo de CĂłdigo Abierto"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Centro de control de Mandrake"
@@ -9615,6 +9845,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instalando paquetes..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Por favor salga de la sesiĂłn y luego pulse Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Abra de nuevo una sesiĂłn %s para activar los cambios"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9623,6 +9862,161 @@ msgstr ""
"No se puede leer su tabla de particiones, estĂĄ demasiado deteriorada :-(\n"
"Se intentarĂĄ ir poniendo en blanco las particiones malas"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Transferir configuraciĂłn de la impresora"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Servidor de base de datos"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Servidor de base de datos"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "AĂąadir un usuario"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Ayuda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "ÂĄNo se detectĂł tarjeta de TV!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "No conectado"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Borrar"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Seleccionar todas."
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "AĂąadir un usuario"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Configurando..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "reconfigurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Por favor, inserte el disquete de arranque en la unidad %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Ninguna disquetera disponible"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "ÂĄError!"
@@ -9675,6 +10069,11 @@ msgstr ""
"Por favor, elija para cada paso si desea que se repita como su instalaciĂłn, "
"o el mismo serĂĄ manual"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Creando el disquete de instalaciĂłn automĂĄtica"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9688,12 +10087,12 @@ msgstr ""
"Los parĂĄmetros de la instalaciĂłn automĂĄticas estĂĄn disponibles en las "
"secciones de la izquierda"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "ÂĄFelicidades!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9701,28 +10100,19 @@ msgstr ""
"El disquete ha sido generado satisfactoriamente.\n"
"Ahora puede repetir su instalaciĂłn."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "InstalaciĂłn automĂĄtica"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "AĂąadir un elemento"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Borrar el Ăşltimo elemento"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9732,7 +10122,7 @@ msgstr ""
" Reporte de DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9744,19 +10134,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9768,63 +10146,87 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "progreso total"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Respaldar archivos del sistema..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Respaldar archivos del disco rĂ­gido..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Respaldar archivos de usuario..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Progreso de respaldo del disco rĂ­gido..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Respaldar otros archivos..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"Lista de archivos envĂ­ada por FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) Problema en la conexiĂłn FTP. No fue posible enviar sus archivos de copia "
"de seguridad por FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Error durante el envĂ­o de correo. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "SelecciĂłn de archivos."
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Seleccione los archivos o directorios y haga clic sobre 'Agregar'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9832,26 +10234,26 @@ msgstr ""
"\n"
"Por favor, verifique todas las opciones que necesita.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Estas opciones pueden respaldar y restaurar todos los archivos en el "
"directorio /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Respaldar archivos del sistema. (directorio /etc)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Usar repaldo incremental (no reemplazar respaldos antiguos)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "No incluir archivos crĂ­ticos (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9859,85 +10261,79 @@ msgstr ""
"Con esta opciĂłn podrĂĄ restaurar cualquier versiĂłn de su\n"
"directorio /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Por favor, marque a todos los usuarios que desa incluir en la copia de "
"respaldo"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "No incluir el cache del navegador"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Usar respaldos incrementales (no reemplazar respaldos antiguos)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Quitar los seleccionados."
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Usar conexiĂłn FTP para realizar copia de respaldo"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Por favor, ingrese el nombre o la IP del host"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Por favor, ingrese el directorio en este host para\n"
" guardar la copia de respaldo."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Por favor, ingrese su nombre de usuario (login)"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Por favor, ingrese su contraseĂąa"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Recordar esta contraseĂąa"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "ConexiĂłn FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "ConexiĂłn segura"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Usar CD/DVDROM para la copia de respaldo"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Por favor, elija el espacio de su CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Por favor, verifique que estĂĄ utilizando un soporte CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Por favor, verifique si desea borrar su CDRW primero"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9945,7 +10341,7 @@ msgstr ""
"Por favor verifique si desea hacer que su\n"
" CD arranque."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9953,17 +10349,22 @@ msgstr ""
"Por favor, ingrese el nombre del dispositivo de\n"
" su grabadora de CD, ej: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Usar cinta para realizar respaldo"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
"Por favor, ingrese el nombre del dispositivo a utilizar para el respaldo"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Por favor, verifique si desea borrar su CDRW primero"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9971,51 +10372,57 @@ msgstr ""
"Por favor, ingrese el tamaĂąo mĂĄximo\n"
" permitido para Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Por favor, ingrese el directorio a guardar:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Usar cuota para archivos de respaldo"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Red"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Disco rĂ­gido / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "Cada hora."
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "Cada dĂ­a."
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "Cada semana."
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "Cada mes."
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Usar servidor"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10023,7 +10430,7 @@ msgstr ""
"Por favor, elija el intervalo de\n"
" tiempo entre cada copia de respaldo"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -10031,72 +10438,68 @@ msgstr ""
"Por favor, elija el soporte\n"
"para la copia de respaldo."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Usar el disco rĂ­gido con servidor"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Usar FTP con servidor"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+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 ""
"Por favor, asegĂşrese que el servidor cron estĂĄ incluĂ­do entre sus servicios."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Enviar reporte por correo-e luego de cada respaldo a :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "QuĂŠ"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "DĂłnde"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "CuĂĄndo"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "MĂĄs opciones"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "ConfiguraciĂłn de Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Por favor, elija dĂłnde desea realizar la copia de respaldo"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "en disco rĂ­gido"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "a travĂŠs de la red"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Por favor, elija quĂŠ desea respaldar"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Respaldar el sistema"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Respaldar usuarios"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Seleccionar manualmente el usuario"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -10104,7 +10507,7 @@ msgstr ""
"\n"
"Fuentes de respaldo: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -10112,7 +10515,7 @@ msgstr ""
"\n"
"- Archivos del sistema:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -10120,7 +10523,7 @@ msgstr ""
"\n"
"- Archivos de usuario:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -10128,7 +10531,7 @@ msgstr ""
"\n"
"- Otros archivos:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -10137,16 +10540,45 @@ msgstr ""
"\n"
"- Guardar en el disco en la ruta : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositivo del ratĂłn: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Guardar por FTP en el host : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Guardar por FTP en el host : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10155,7 +10587,7 @@ msgstr ""
"\t\t nombre de usuario: %s\n"
"\t\t en ruta: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -10163,19 +10595,19 @@ msgstr ""
"\n"
"- Opciones:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNo incluir archivos del sistema\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tRespaldar usando tar y bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tRespaldar usando tar y gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10184,28 +10616,42 @@ msgstr ""
"\n"
"- Servidor (%s) incluye :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Disco rĂ­gido.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Red por FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Red por SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Red por FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Red por FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Sin configuraciĂłn, por favor haga clic sobre el Asistente o Avanzado.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10213,7 +10659,7 @@ msgstr ""
"Lista de datos a restaurar:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10221,135 +10667,138 @@ msgstr ""
"Lista de datos corruptos:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Por favor, desmarque o quĂ­telo la prĂłxima vez."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Los archivos de respaldo estĂĄn corruptos"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Todos los datos seleccionados han sido "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Recuperados satisfactoriamente en %s"
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " ConfiguraciĂłn de la restauraciĂłn"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Se pueden restaurar los otros archivos."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista de usuarios a restaurar (sĂłlo importa la fecha mĂĄs reciente por "
"usuario)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Respaldar los archivos del sistema anteriores a:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Por favor, elija la fecha para restaurar"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Usar el disco rĂ­gido para copia de respaldo"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Por favor, ingrese el directorio a guardar:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "ConexiĂłn FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "ConexiĂłn segura"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Restaurar desde el disco rĂ­gido."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
"Por favor, ingrese el directorio donde se almacenan las copias de respaldo"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Elija otro soporte desde el cual restaurar"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Otros soportes"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Restaurar archivos del sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Restaurar usuarios"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Restaurar otros"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "seleccione la ruta para restaurar (en vez de /)"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Realizar respaldo nuevo antes de restaurar (sĂłlo para respaldos "
"incrementales)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Borrar directorios de los usuarios antes de restaurar."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Restaurar todas las copias de respaldo"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "RestauraciĂłn personalizada"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Ayuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Guardar"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Realizar copia de respaldo"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Siguiente"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10357,7 +10806,7 @@ msgstr ""
"Por favor, realize la copia de respaldo antes de restaurarla...\n"
" o verifique que la ruta para almacenar es correcta."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10367,31 +10816,35 @@ msgstr ""
" su correo-e de reporte no se enviĂł\n"
" Por favor, configure a sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista de paquetes a instalar"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Se van a instalar los siguientes paquetes"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Error enviando el archivo por FTP.\n"
" Por favor, corrija su configuraciĂłn de FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Por favor, seleccione los datos a restaurar..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Por favor, seleccione el soporte para la copia de respaldo..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Por favor, elija los datos a respaldar..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10399,77 +10852,77 @@ msgstr ""
"No se econtrĂł el archivo de configuraciĂłn,\n"
" por favor haga clic sobre Asistente o Avanzado."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "En desarrollo ... por favor, espere."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Respaldar archivos del sistema"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Respaldar archivos de usuarios"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Respaldar otros archivos"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Progreso total"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "EnvĂ­o de archivos por FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Enviando archivos..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Lista de datos a incluir en el CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Por favor, ingrese la velocidad de la grabadora de CDs"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
"Por favor, ingrese el nombre del dispositivo de su grabadora de CDs (ej: "
"0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Por favor, verifique si desea hacer que su CD arranque."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Respaldar Ahora desde archivo de configuraciĂłn"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Ver configuraciĂłn del respaldo"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "ConfiguraciĂłn del Asistente"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "ConfiguraciĂłn avanzada"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Respaldar Ahora"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10529,7 +10982,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10543,7 +10996,7 @@ msgstr ""
" que configurar myhostname o mydomain en /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10620,7 +11073,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10670,13 +11123,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft por DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -10706,7 +11164,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10800,7 +11258,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10818,7 +11276,7 @@ msgstr ""
"antes de enviarlo al servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10840,7 +11298,7 @@ msgstr ""
"Es importante ser cuidadoso y no modificar los archivos de\n"
"datos de respaldo a mano.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10920,99 +11378,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "FallĂł la instalaciĂłn de %s. OcurriĂł el siguiente error:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Herramientas para la consola"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "en disco rĂ­gido"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "RatĂłn"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impresora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nombre del recurso compartido"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Asistente para la configuraciĂłn de la red"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "AutentificaciĂłn"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "SelecciĂłn de paquetes"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Espere, por favor"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post-desinstalaciĂłn"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "puerto"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Luego de la instalaciĂłn estarĂĄn disponibles las instantĂĄneas de pantalla en %"
+"s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "ConfiguraciĂłn de la red (%d adaptadores)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Borrar perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil a borrar:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nuevo perfil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nombre del perfil a crear (el perfil nuevo se crea como copia del actual):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nombre de la mĂĄquina: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Acceso a Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Pasarela:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interfaz:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Estado:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Por favor, espere"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configurar el acceso a Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "ConfiguraciĂłn de la red local"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Controlador"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfaz"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocolo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Estado"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configurar la red de ĂĄrea local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Haga clic aquĂ­ para lanzar el asistente ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Asistente..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Aplicar"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Espere, por favor... Aplicando la configuraciĂłn"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Conectado"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "No conectado"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Desconectar..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"AtenciĂłn, se ha detectado otra conexiĂłn con la Internet, tal vez estĂĄ usando "
+"su red"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"No tiene configurada ninguna interfaz.\n"
+"Configure la primera haciendo clic sobre 'Configurar'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "ConfiguraciĂłn LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocolo de arranque"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciado al arranque"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "cliente DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "activar ahora"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "desactivar ahora"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"TodavĂ­a no se ha configurado esta interfaz.\n"
+"Lance el asistente de configuraciĂłn en la ventana principal"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"No tiene ninguna conexiĂłn a Internet.\n"
+"Primero debe crear una haciendo clic sobre 'Configurar'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "ConfiguraciĂłn de la conexiĂłn a Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "ConfiguraciĂłn de la conexiĂłn a Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipo de conexiĂłn: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "ParĂĄmetros"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Pasarela"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Tarjeta ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uso: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nombre del mĂłdulo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "TamaĂąo"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Creado de disquetes que arrancan"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "predeterminado"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Error de DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versiĂłn del nĂşcleo"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "General"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Área experta"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "argumentos opcionales para mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Agregar un mĂłdulo"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forzar"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "si es necesario"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omitir mĂłdulos scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omitir mĂłdulos raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Quitar un mĂłdulo"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Salida"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Crear el disquete"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "AsegĂşrese que hay un soporte para el dispositivo %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"No hay soporte alguno para el dispositivo %s.\n"
+"Por favor, inserte uno."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "No se puede hacer fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"No se puede cerrar mkbootdisk adecuadamente: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Buscar tipografĂ­as instaladas"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Desmarcar las tipografĂ­as instaladas"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "analizar todas las tipografĂ­as"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "no se encontraron tipografĂ­as"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "hecho"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "no se pueden encontrar tipografĂ­as en las particiones montadas"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Volver a seleccionar tipografĂ­as correctas"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "no se pueden encontrar tipografĂ­as.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Buscar tipografĂ­as en la lista de instaladas"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copiar tipografĂ­as"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "InstalaciĂłn de tipografĂ­as True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "por favor, espere mientras corre ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "InstalaciĂłn de True Type realizada"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "ConversiĂłn de tipografĂ­as"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "Construyendo Type1"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Referenciando a Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ConversiĂłn de tipografĂ­as TTF"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "ConversiĂłn de tipografĂ­as PFM"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Suprimir archivos temporales"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Reiniciar XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Suprimir archivos de tipografĂ­as"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "Reiniciar XFS"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11027,108 +11918,108 @@ msgstr ""
"-Puede instalar las tipografĂ­as usando la manera normal. En casos raros,\n"
"puede ser que tipografĂ­as \"falsas\" congelen a su servidor X."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "ImportaciĂłn de tipografĂ­as"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Obtener tipografĂ­as de Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Desinstalar tipografĂ­as"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Opciones avanzadas"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Lista de tipografĂ­as"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Elija las aplicaciones que soportarĂĄn las tipografĂ­as:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Impresoras genĂŠricas"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
"Seleccione el archivo o directorio de tipografĂ­as y haga clic sobre 'Agregar'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Instalar lista"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "haga clic aquĂ­ si estĂĄ seguro."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "aquĂ­ si no lo estĂĄ."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Deseleccionar todas."
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Seleccionar todas."
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Quitar lista"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Pruebas iniciales"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Copiar tipografĂ­as en su sistema"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instalar y convertir tipografĂ­as"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post-instalaciĂłn"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Quitar tipografĂ­as de su sistema"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post-desinstalaciĂłn"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Compartir la conexiĂłn a Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ activada ahora"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11140,31 +12031,31 @@ msgstr ""
"\n"
"ÂżQuĂŠ desea hacer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "desactivar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "rechazar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Desactivando los servidores..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ inactiva."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ desactivada"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11176,19 +12067,19 @@ msgstr ""
"\n"
"ÂżQuĂŠ desea hacer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "activar"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Activando los servidores..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ activa."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11204,21 +12095,21 @@ msgstr ""
"Aviso: necesita un adaptador de red dedicado para configurar una red de ĂĄrea "
"local (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfaz %s (usando el mĂłdulo %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfaz %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "ÂĄNo hay ningĂşn adaptador de red en su sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11226,11 +12117,11 @@ msgstr ""
"No se ha detectado ningĂşn adaptador de red en su sistema. Por favor, ejecute "
"la herramienta de configuraciĂłn del hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interfaz de red"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11245,7 +12136,7 @@ msgstr ""
"\n"
"Se va a configurar su red de ĂĄrea local con ese adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11253,11 +12144,11 @@ msgstr ""
"Por favor, elija quĂŠ adaptador de red estarĂĄ conectado a su red de ĂĄrea "
"local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Interfaz de red ya configurada"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11272,15 +12163,15 @@ msgstr ""
"\n"
"Puede hacerlo manualmente pero necesita saber lo que estĂĄ haciendo."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Volver a configurar automĂĄticamente"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Mostrar la configuraciĂłn corriente de la interfaz"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11297,7 +12188,7 @@ msgstr ""
"Atributo IP: %s\n"
"Controlador: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11317,34 +12208,34 @@ msgstr ""
"un servidor DHCP por Ud.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Red Local Clase C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP de (este) servidor DHCP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Volver a configurar la interfaz y el servidor DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "La red local no finalizĂł con `.0', saliendo."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ÂĄSe encontrĂł un conflicto potencial de direcciones LAN en la configuraciĂłn "
"de %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "ÂĄSe detectĂł la configuraciĂłn del cortafuegos!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11352,21 +12243,21 @@ msgstr ""
"ÂĄAtenciĂłn! Se ha detectado la configuraciĂłn del cortafuegos existente. Puede "
"que necesite algĂşn ajuste manual tras la instalaciĂłn."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configurando los scripts, instalando el software, iniciando los servidores..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas al instalar el paquete %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11376,23 +12267,23 @@ msgstr ""
"Ahora puede compartir su conexiĂłn a Internet con otros ordenadores de su red "
"de ĂĄrea local, usando la configuraciĂłn automĂĄtica de la red (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuraciĂłn ya se ha hecho, pero ahora estĂĄ desactivada."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuraciĂłn ya se ha hecho, y ahora estĂĄ activada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No se ha configurado la conexiĂłn compartida a Internet."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "ConfiguraciĂłn de la conexiĂłn compartida a Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11407,215 +12298,6 @@ msgstr ""
"\n"
"Haga click sobre Configurar para lanzar el asistente de configuraciĂłn."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ConfiguraciĂłn de la red (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Borrar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a borrar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuevo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nombre del perfil a crear (el perfil nuevo se crea como copia del actual):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nombre de la mĂĄquina: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acceso a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Pasarela:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfaz:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Por favor, espere"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar el acceso a Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "ConfiguraciĂłn de la red local"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Controlador"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaz"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Estado"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar la red de ĂĄrea local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Haga clic aquĂ­ para lanzar el asistente ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Asistente..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplicar"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Espere, por favor... Aplicando la configuraciĂłn"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Conectado"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "No conectado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconectar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"AtenciĂłn, se ha detectado otra conexiĂłn con la Internet, tal vez estĂĄ usando "
-"su red"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"No tiene configurada ninguna interfaz.\n"
-"Configure la primera haciendo clic sobre 'Configurar'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "ConfiguraciĂłn LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo de arranque"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado al arranque"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "activar ahora"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "desactivar ahora"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"TodavĂ­a no se ha configurado esta interfaz.\n"
-"Lance el asistente de configuraciĂłn en la ventana principal"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"No tiene ninguna conexiĂłn a Internet.\n"
-"Primero debe crear una haciendo clic sobre 'Configurar'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "ConfiguraciĂłn de la conexiĂłn a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "ConfiguraciĂłn de la conexiĂłn a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de conexiĂłn: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "ParĂĄmetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Pasarela"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Tarjeta ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Definiendo el nivel de seguridad"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centro de control"
@@ -11624,63 +12306,85 @@ msgstr "Centro de control"
msgid "Choose the tool you want to use"
msgstr "Elija la herramienta que desea usar"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "CanadĂĄ (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "EEUU (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "EEUU (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "EEUU (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "China (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "JapĂłn (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "JapĂłn (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Europa del este"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francia"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlanda"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Europa del oeste"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nueva Zelanda"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "SudĂĄfrica"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11688,27 +12392,44 @@ msgstr ""
"Por favor,\n"
"teclee su norma de tv y paĂ­s"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Norma de TV:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Área:"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Buscando canales de TV, en progreso ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Buscando canales de TV"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Hubo un error al instalar los paquetes:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "ÂĄNo se detectĂł tarjeta de TV!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11719,7 +12440,8 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"No se detectĂł tarjeta de TV en su mĂĄquina. Por favor, verifique que tiene conectada correctamente una tarjeta de vĂ­deo/TV soportada por Linux.\n"
+"No se detectĂł tarjeta de TV en su mĂĄquina. Por favor, verifique que tiene "
+"conectada correctamente una tarjeta de vĂ­deo/TV soportada por Linux.\n"
"\n"
"\n"
"Puede visitar nuestra base de datos de hardware en:\n"
@@ -11760,7 +12482,7 @@ msgstr "ÂĄÂĄÂĄ No se puede iniciar la actualizaciĂłn en vivo !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Se ha realizado el cambio, pero no se harĂĄ efectivo hasta que salga"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11794,7 +12516,7 @@ msgstr "<control>G"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Archivo/Guardar _como"
+msgstr "/Archivo/Guardar _Como"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11808,13 +12530,9 @@ msgstr "/_Opciones"
msgid "/Options/Test"
msgstr "/Opciones/Prueba"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ayuda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Ayuda/_Acerca de..."
+msgstr "/Ayuda/_Acerca..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11872,7 +12590,7 @@ msgstr "Calendario"
msgid "Content of the file"
msgstr "Contenido del archivo"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Alerta por correo/SMS"
@@ -11881,11 +12599,11 @@ msgstr "Alerta por correo/SMS"
msgid "please wait, parsing file: %s"
msgstr "por favor, espere, analizando el archivo: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "ConfiguraciĂłn de alerta por correo/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11895,65 +12613,97 @@ msgstr ""
"\n"
"AquĂ­ podrĂĄ configurar su sistema de alerta.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nombre de dominio"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Servidor de correo Postfix, servidor de noticias Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servicios"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de impresiĂłn"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "configuraciĂłn de servicios"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"RecibirĂĄ una alerta si se detiene la ejecuciĂłn de uno de los servicios "
"seleccionados"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "configuraciĂłn de la carga"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "RecibirĂĄ una alerta si la carga es mayor que este valor"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "configuraciĂłn de alerta"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Configura la forma en que el sistema le alertarĂĄ"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Guardar como..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Seleccione el tipo de su ratĂłn, por favor."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no se encontrĂł ningĂşn usb_serie\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "ÂżEmular el tercer botĂłn?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Leyendo los datos de la impresora ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Detectando dispositivos..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -12000,7 +12750,20 @@ msgid ""
"applications menu."
msgstr ""
"Su escĂĄner %s ha sido configurado.\n"
-"Ahora puede escanear documentos usando \"XSane\" en el menĂş Multimedios/GrĂĄficos."
+"Ahora puede escanear documentos usando \"XSane\" en el menĂş Multimedios/"
+"GrĂĄficos."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -12410,10 +13173,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedios - Sonido"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitarios"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "DocumentaciĂłn"
@@ -12518,10 +13277,6 @@ msgstr ""
"tin...) y para navegar por la Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivado, emuladores, monitoreo"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanzas personales"
@@ -12568,3 +13323,268 @@ msgstr "Multimedios - GrabaciĂłn de CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "EstaciĂłn de trabajo CientĂ­fica"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck fallĂł con cĂłdigo de salida %d o seĂąal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "IdentificaciĂłn de la tarjeta grĂĄfica: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Elija las opciones para el servidor"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "El monitor no estĂĄ configurado"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "La tarjeta grĂĄfica todavĂ­a no estĂĄ configurada"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "AĂşn no ha elegido las resoluciones"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "intente cambiar algunos parĂĄmetros"
+
+#~ msgid "An error occurred:"
+#~ msgstr "OcurriĂł un error:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Saliendo en %d segundos"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "ÂżEs ĂŠsta la configuraciĂłn correcta?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "OcurriĂł un error, intente cambiar algunos parĂĄmetros"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servidor XFree86: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Mostrar todo"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Preparando la configuraciĂłn de X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "ÂżQuĂŠ desea hacer?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Cambiar el monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Cambiar la tarjeta grĂĄfica"
+
+#~ msgid "Change Server options"
+#~ msgstr "Cambiar las opciones del servidor X"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Cambiar la resoluciĂłn"
+
+#~ msgid "Show information"
+#~ msgstr "Mostrar informaciĂłn"
+
+#~ msgid "Test again"
+#~ msgstr "Probar de nuevo"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Su dispositivo multifunciĂłn HP se configurĂł automĂĄticamente para ser "
+#~ "capaz de escanear. Ahora puede escanear desde la lĂ­nea comandos con "
+#~ "\"ptal-hp %s scan ...\". No se soporta aĂşn el escaneo por medio de un "
+#~ "interfaz grĂĄfico e desde el GIMP para su dispositivo. EncontrarĂĄ mĂĄs "
+#~ "informaciĂłn en el archivo de su sistema \"/usr/share/doc/hpoj-0.8/ptal-hp-"
+#~ "scan.html\". Si tiene una HP LaserJet 1100 o 1200 puede escanear cuando "
+#~ "tenga la opciĂłn del escĂĄner instalada.\n"
+#~ "No use \"scannerdrake\" para este dispositivo."
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Usar el disco rĂ­gido con servidor"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Usar FTP con servidor"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista de paquetes a instalar"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Definiendo el nivel de seguridad"
+
+#~ msgid "Graphics card"
+#~ msgstr "Tarjeta grĂĄfica"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccione una tarjeta grĂĄfica"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Elija un controlador X"
+
+#~ msgid "X driver"
+#~ msgstr "Controlador X"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Advertencia: probar con esta tarjeta de vĂ­deo puede colgar su ordenador"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA estĂĄndar, 640x480 a 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (sin 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA no-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor que soporta 1600x1200 a 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor que soporta 1600x1200 a 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr ""
+#~ "El tamaĂąo total para los grupos que seleccionĂł es de aproximadamente %d "
+#~ "MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Si desea instalar un tamaĂąo total inferior,\n"
+#~ "elija el porcentaje de paquetes que desea instalar.\n"
+#~ "\n"
+#~ "Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
+#~ "un porcentaje de 100%% instalarĂĄ todos los paquetes seleccionados."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Tiene espacio en disco para sĂłlo %d%% de esos paquetes.\n"
+#~ "\n"
+#~ "Si desea instalar menos de esto,\n"
+#~ "elija el porcentaje de paquetes que desea instalar.\n"
+#~ "Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
+#~ "un porcentaje de %d%% instalarĂĄ todos los que sea posible."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "PodrĂĄ elegirlos mĂĄs detalladamente en la etapa siguiente"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Porcentaje de paquetes a instalar"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Elegir el nivel de seguridad"
+
+#~ msgid "hide expert mode"
+#~ msgstr "ocultar modo experto"
+
+#~ msgid "show expert mode"
+#~ msgstr "mostrar modo experto"
+
+#~ msgid ""
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
+#~ msgstr ""
+#~ "Si '%s' es un preifĂŠrico removible,\n"
+#~ " verifique que tiene un soporte insertado."
+
+#~ msgid ""
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
+#~ msgstr ""
+#~ "ÂĄADVERTENCIA! Esto formaterĂĄ a '%s'.\n"
+#~ "Se borrarĂĄn todos los datos en el perifĂŠrico '%s'.\n"
+#~ "Si desea continuar, presione Aceptar. "
+
+#~ msgid "unknown"
+#~ msgstr "desconocido"
+
+#~ msgid "Select a module or write his name:"
+#~ msgstr "Seleccione un mĂłdulo o escriba su nombre:"
+
+#~ msgid "Category"
+#~ msgstr "CategorĂ­a"
+
+#~ msgid "preload module"
+#~ msgstr "pre-cargar mĂłdulo"
+
+#~ msgid "click on a category"
+#~ msgstr "haga clic sobre una categorĂ­a"
+
+#~ msgid "Remove"
+#~ msgstr "Remover"
+
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "Herramienta para crear disquetes que arrancan"
+
+#~ msgid "Show expert mode"
+#~ msgstr "Mostrar modo experto"
+
+#~ msgid "modules"
+#~ msgstr "mĂłdulos"
+
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr ""
+#~ "Generador de disquetes de arranque. TodavĂ­a en etapa experimental.\n"
+
+#~ msgid "experts only"
+#~ msgstr "sĂłlo expertos"
+
+#~ msgid "/File/_Preferences"
+#~ msgstr "/Archivo/_Preferencias"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index d088213a6..04456509a 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 1999-10-28 19:54+0200\n"
"Last-Translator: Riho Kurg <rx@linux.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -13,25 +13,56 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Seadista kőik monitorid sőltumatult"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Kasuta Xinerama laiendusi"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Seadista ainult kaart \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB vői rohkem"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Valige X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
#
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Mitme monitori seadistamine"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,43 +70,44 @@ msgstr ""
"Süsteemis on vőimalik kasutada mitut monitori.\n"
"Mida Te soovite teha?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Graafikakaart"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Valige graafikamälu suurus"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Valige graafikakaart"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree sätted"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Valige X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Millise XFree konfiguratsiooni soovite kasutada?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Seadista kőik monitorid sőltumatult"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Valige X server"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Kasuta Xinerama laiendusi"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Seadista ainult kaart \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Millise XFree konfiguratsiooni soovite kasutada?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s koos 3D graafikakiirendi toega"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -84,32 +116,17 @@ msgstr ""
"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
"XFree %s toetab Teie videokaarti ja vőib omada paremat 2D tuge."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Teie kaardi 3D graafikakiirendit toetab XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s koos 3D graafikakiirendi toega"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
-"SEE ON AGA EKSPERIMENTAALNE JA VŐIB OLLA EBASTABIILNE."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -120,31 +137,58 @@ msgstr ""
"SEE ON AGA EKSPERIMENTAALNE JA VŐIB OLLA EBASTABIILNE.\n"
"Teie kaarti toetab ka XFree %s, millel on ehk parem 2D tugi."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
+"SEE ON AGA EKSPERIMENTAALNE JA VŐIB OLLA EBASTABIILNE."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree sätted"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Valige graafikamälu suurus"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Valige X server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Säilita muutused?\n"
+"Olemasolevad sätted:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Valige monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Isetehtud"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Tavaline"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Tagasi"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -164,514 +208,325 @@ msgstr ""
"suurem kui Teie monitor vőimaldab. Vastasel juhul vőib Teie monitor hävida.\n"
"Kui kahtlete, valige pigem väiksem väärtus."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Realaotussagedus"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Ekraaniuuendussagedus"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor ei ole seadistatud"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Graafikakaart ei ole veel seatud"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Kuvatihedus ei ole veel seatud"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Hoiatus: testimine vőib Teie arvuti peatada"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Proovime seadistusi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 värvi (8 bitti)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"proovige mőnd parameetrit muuta"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tuhat värvi (15 bitti)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tekkis mingi viga:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tuhat värvi (16 bitti)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Jätkub %d sekundi pärast"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljonit värvi (24 bitti)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Kas see on őige?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljardit värvi (32 bitti)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tekkis mingi viga, proovige mőnd parameetrit muuta"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Kuvatihedused"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Kuvatihedus"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Valige kuvatihedus ja värvisügavus"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Graafikakaart: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Veel.."
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Katkesta"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertresiim"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Näita kőike"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Kas soovite seadistusi proovida?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Kuvatihedused"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Proovime seadistusi"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klaviatuuriasetus: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Hiire tüüp: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Hiire port: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Realaotussagedus: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ekraanisagedus: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Graafikakaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Graafikakaart: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Videomälu: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Värvisügavus: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Kuvatihedus: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 juhtprogramm: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Valmistume X-i seadistamiseks"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Mida Te soovite teha?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Muuda monitori"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Muuda graafikakaardi"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Muuda serveri parameetreid"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Muuda kuvatihedust"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Näita lisainfot"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Proovi veel"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Välju"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Säilita muutused?\n"
-"Olemasolevad sätted:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X stardib nüüd"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Teie arvutis on vőimalik käivitada X juba alglaadimisel.\n"
"Kas soovite nii teha?"
-# c-format
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Muudatuste aktiveerimiseks käivitage %s uuesti"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Palun väljuge ja vajutage siis Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 värvi (8 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tuhat värvi (15 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tuhat värvi (16 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljonit värvi (24 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardit värvi (32 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB vői rohkem"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA, 640x400 sagedusel 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "SVGA, 800x600 sagedusel 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-ühilduv, 1024x768, 87 Hz vahelejätuga "
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "SVGA, 1024x768, 87 Hz vahelejätuga, 800x600, 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "SVGA, 800x600 sagedusel 60 Hz, 640x480 sagedusel 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA, 1024x768 sagedusel 60 Hz, 800x600 sagedusel 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Kőrgsageduslik SVGA, 1024x768, 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Partitsiooni algusesse"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Ketta algusesse (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO installimine"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kuhu soovite alglaaduri installida"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub installimine"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO tekstiresiimis"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO graafikaresiimis"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Laadimine DOS/Windowsist (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Alglaaduri peasätted"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Eelistatav alglaadur"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Alglaaduri peasätted"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Alglaadimisseade"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ei tööta vanema BIOSi korral)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktne"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktne"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Graafikamood"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Salasőna"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Salasőna (uuesti)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Piira käsurea suvandeid"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "piiratud"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Puhasta /tmp igal laadimisel"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Kui vaja, täpsusta RAM suurust (leitud %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Vőimalda mitut profiili"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Anna mälu suurus megabaitides"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Säte ``Piira käsurea suvandeid'' on ilma salasőnata mittekasutatav"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Palun proovige veel"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Salasőnad ei klapi"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Initsialiseerimisteade"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware viivitus"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Ajapiirang kerneli laadimisel"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "CD-lt laadimine lubatud?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "OF laadimine lubatud?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Vaikimisi OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -680,84 +535,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te vőite neid lisada ning olemasolevaid muuta."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Lisa"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Tehtud"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Modifitseeri RAIDi"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Millisele sektorile soovite seda tősta?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Muu OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Muu OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Muu OS (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Laadefail"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Juur"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Lisada"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Ebaturvaline"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Tähis"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Vaikimisi"
@@ -790,53 +645,75 @@ msgstr "Teil peab olema saaleala"
msgid "This label is already used"
msgstr "Selline tähis on juba kasutusel"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Leiti %s %s liidest"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "On Teil veel kaarte?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Kas Teil on ikka mőni %s liides?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Jah"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Info riistvara kohta"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installime juhtprogrammil %s kaardile %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(moodul %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nüüd vőite moodulile %s parameetreid määrata.\n"
+"Parameetrid on vormingus \"nimi=väärtus nimi2=väärtus2 ...\".\n"
+"Näiteks: \"io=0x300 irq=7\""
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Mooduli parameetrid:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Millist %s juhtprogrammi peaksime proovima?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -852,37 +729,15 @@ msgstr ""
"määratleda vői lasta juhtprogrammil ise Teie arvutit kompida? Vőib juhtuda,\n"
"et see viib arvuti segadusse kuid ei tohiks mingit jäävat kahju teha."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Proovida niisama"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Määrake parameetrid"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nüüd vőite moodulile %s parameetreid määrata.\n"
-"Parameetrid on vormingus \"nimi=väärtus nimi2=väärtus2 ...\".\n"
-"Näiteks: \"io=0x300 irq=7\""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Mooduli parameetrid:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -891,49 +746,54 @@ msgstr ""
"Moodule %s laadimine ei őnnestunud.\n"
"Kas soovite proovida parameetreid muuta?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Salasőna on liiga lihtne"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Palun andke kasutajatunnus"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Kasutajatunnus tohib sisaldada ainult väikesi tähti, numbreid, - ja _"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "See kasutajatunnus on juba lisatud"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Lisa kasutaja"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -942,32 +802,32 @@ msgstr ""
"Sisesta kasutaja\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Kasutaja őige"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Pärisnimi"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Kasutajatunnus"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Käsurida"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Vaikimisi sisenemine"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -976,121 +836,101 @@ msgstr ""
"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
"Kui Te seda ei soovi, valige <Katkesta>"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Valige uus vaikimisi kasutaja :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Valige palun käivitatav aknahaldur:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Palun valige kasutatav keel"
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 "Teisi keeli saab valida pärast installimist"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Kőik"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Tavakasutaja"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Isetehtud"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS käivitatakse"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Valige paketid mida soovite installida"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Katkesta"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Tere tulemast, kräkkerid"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Vähene"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Tavahiir"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Kőrge"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Kőrge"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoiline"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1100,14 +940,14 @@ msgstr ""
"haavatavaks: ligipääsupiirangute puudumise tőttu ei peaks arvutit ühendama\n"
"ei teiste arvutitega ega ka mitte Internetti."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasőnad on nüüd kasutusel, kuid vőrku ühendamine ei ole siiski soovitav."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1115,57 +955,58 @@ msgid ""
msgstr ""
"See on sobilik turvatase arvutile, mis ühendatakse Internetti kui klient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr "Sellel turvatasemel vőib süsteemi kasutada Internetis ka serverina."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Süsteem on täielikult suletud. Vőrgust kasutamine on vőimalik ainult\n"
"spetsiaalselt loodud juurdepääsuteid kasutades."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Valige turvatase"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Turvataseme seadmine"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Valige X server"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1190,52 +1031,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kasutage valiku tegemiseks %c ja %c klahve"
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "suvandeid enne laadimist ja 'c' veel enam."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Valik laetakse automaatselt %d sekundi jooksul"
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "/boot on liiga täis"
#. -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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Töölaud"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Startmenüü"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kuhu soovite alglaaduri installida"
@@ -1248,15 +1089,19 @@ msgstr "selle kohta (veel) abi ei saa.\n"
msgid "Boot Style Configuration"
msgstr "Alglaaduri stiil"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fail"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fail/_Välju"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1293,7 +1138,7 @@ msgstr "Alglaadimismood"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Internetiühenduse jagamise Abimees!\n"
@@ -1302,8 +1147,8 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Seadista"
@@ -1313,7 +1158,7 @@ msgid "System mode"
msgstr "Töömood"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Käivita X-Windows alglaadimisel"
#: ../../bootlook.pm_.c:148
@@ -1325,14 +1170,16 @@ msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1381,7 +1228,7 @@ msgstr "Partitsioone ei saa enam lisada"
msgid "Screenshots will be available after install in %s"
msgstr "Teisi keeli saab valida pärast installimist"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Prantsusmaa"
@@ -1389,7 +1236,7 @@ msgstr "Prantsusmaa"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgia"
@@ -1417,11 +1264,12 @@ msgstr "Norra"
msgid "Sweden"
msgstr "Vaata"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Itaalia"
@@ -1431,7 +1279,7 @@ msgstr "Itaalia"
msgid "Austria"
msgstr "seerial"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1439,8 +1287,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Palun tehke oma andmetest enne tagavarakoopia"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lugege hoolega!"
@@ -1453,11 +1301,12 @@ msgstr ""
"Kui soovite kasutada aboot-i, jätke palun ketta algusesse vähemalt 2048 \n"
"sektorit vaba ruumi"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Viga"
@@ -1465,11 +1314,11 @@ msgstr "Viga"
msgid "Wizard"
msgstr "Abimees"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Valige tegevus"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1481,149 +1330,154 @@ msgstr ""
"Soovitame teil esmalt selle suurust muuta\n"
"(klikkige ja siis valige \"Muuda\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Palun valige partitsioon"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Üksikasjad"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "ühendamine ebaőnnestus"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Saaleala"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tühi"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Muu"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Failisüsteemi tüübid: "
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Tekita"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tüüp"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Kasutage pigem ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Kustuta"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Kasutage enne \"Ühenda lahti\""
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s tüübi muutmisel hävivad kőik seal olnud andmed"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Valige tegevus"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Tavakasutaja > Ekspert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Ekspert > Tavakasutaja"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Tagasi"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Jätkate ikkagi?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Lőpeta ilma salvestamata"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Lőpetate ilma partitsioonitabelit salvestamata?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Paiguta ise"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Kustuta kőik"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Veel.."
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Meili informatsioon"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Kőik primaarsed partitsioonid on kasutusel"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Partitsioone ei saa enam lisada"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1631,35 +1485,35 @@ msgstr ""
"Et saada rohkem partitsioone, kustutage palun üks, et luua laiendatud "
"partitsioon"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Kirjuta partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "CD/flopi/.. autoühendamine"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Valige fail"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1667,11 +1521,11 @@ msgstr ""
"Tabeli tagavarakoopia ei ole sama suurusega\n"
"Soovite jätkata?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Hoiatus"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1679,124 +1533,131 @@ msgstr ""
"Pange tühi flopi masinasse\n"
"Kőik andmed sellel hävivad"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Proovin päästa partitsioonitabelit"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Meili informatsioon"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ühenduspunkt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Eelistused"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Muuda suurust"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Liiguta"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Vorminda"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ühenda"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Lisa RAIDi"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Lisa LVMi"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ühenda lahti"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Eemalda RAIDist"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Eemalda LVMist"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifitseeri RAIDi"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Kasuta loopback-ina"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Algsektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Failisüsteemi tüüp: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Ühenduspunkt:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Eelistus: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Muuda partitsiooni tüüp"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Mis failisüsteemi soovite kasutada?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kuhu soovite loopback-faili %s ühendada?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kuhu soovite seadme %s ühendada?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1804,128 +1665,133 @@ msgstr ""
"Seda ühenduspunkti ei saa eemaldada, kuna partitsioon on kasutusel.\n"
"loopback-ina. Eemaldage enne loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Arvutan FAT failisüsteemi piire"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Muudan suurust"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "See partitsioon ei ole muudetav"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Selle partitsiooni andmetest vőiks olla tagavarakoopia"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s suuruse muutmisel hävivad sellel kőik andmed"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Valige uus suurus"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Millisele kettale soovite seda ümber paigutada?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Millisele sektorile soovite seda ümber paigutada?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Paigutan ümber"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Liigutan partitsiooni..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Vali olemasolev RAID, millele lisada"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "uus"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Vali olemasolev LVM, millele lisada"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM nimi?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Seda partitsiooni ei saa loopback-ina kasutada"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "loopback faili nimi:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Pärisnimi"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "See fail on juba loopback-ina kasutusel, valige mőni muu"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Fail on juba olemas. Kas kasutan seda?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Mooduli parameetrid:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "seade"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "tase"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ühiku suurus"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Vaadake ette: see vőib olla ohtlik."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Mis tüüpi partitsioonid teete?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Valige paketid mida soovite installida"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1937,7 +1803,7 @@ msgstr ""
"Kui kasutate LILO-t, ei tööta see sel moel, kui aga ei kasuta, ei ole Teile "
"ka /boot vajalik"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1948,7 +1814,7 @@ msgstr ""
"füüsiliselt tagapool 1024-t silindrit ja Teil ei ole /boot partitsiooni.\n"
"Kui plaanite kasutada LILO alglaadurit, lisage kindlasti /boot partitsioon"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1958,137 +1824,137 @@ msgstr ""
"Ilma /boot partitsioonita ei ole vőimalik sellist süsteemi laadida.\n"
"Lisage kindlasti /boot partitsioon!"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ketta %s partitsioonitabel salvestatakse!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Muudatuste jőustamiseks vajate alglaadimist"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s vormindamisel hävivad sellel kőik andmed"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Vormindan"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Vormindan partitsiooni %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid ebaőnnestus"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Kuvatihedus: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Seade: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS kettatähis: %s (arvatavasti)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tüüp: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nimi: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Algus: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Suurus: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorit"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindrid %d kuni %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Vormindatud\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Vormindamata\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Ühendatud\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "loopback fail(id): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2096,27 +1962,27 @@ msgstr ""
"Partitsioonilt toimub alglaadimine\n"
" (MS-DOS-i, mitte lilo jaoks)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Tase %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Ühiku suurus %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-kettad %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "loopback faili nimi: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2128,7 +1994,7 @@ msgstr ""
"juhtpartitsiooniga, parem oleks\n"
"seda mitte puutuda.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2141,64 +2007,64 @@ msgstr ""
"vőimaldab mitme operratsioonisüsteemi\n"
"laadimist.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Suurus: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geomeetria: %s silindrit, %s pead, %s sektorit\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-kettad %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitsioonitabeli tüüp: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "siinil %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Eelistused: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Failisüsteemi tüüp: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Salasőna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Salasőnad ei klapi"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2209,36 +2075,66 @@ msgstr "Muuda partitsiooni tüüp"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Palun valige partitsioon"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentimisviis"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Kasutajatunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Kasutajatunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domeen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Nimeserver"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s vormindamine seadmel %s ebaőnnestus"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ei oska seadet %s vormindada tüüpi %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "viga %s lahti ühendamisel: %s"
@@ -2255,68 +2151,322 @@ msgstr ""
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS ei ole kasutatav alla 16MB partisioonidel"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS ei ole kasutatav alla 32MB partisioonidel"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Ühenduspunktid peavad algama kaldkriipsuga (/)"
# c-format
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ühenduspunktile %s on juba üks partitsioon määratud\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Te ei saa ühenduspunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "See kataloog peab jääma kokku juurfailisüsteemiga"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "See ühenduspunkt vajab tőelist (ext2, reiserfs) failisüsteemi\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Te ei saa ühenduspunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Ei ole piisavalt ruumi automaatpaigutuseks"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Seadme %s avamine kirjutamiseks ebaőnnestus: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Tekkis viga: failisüsteemi loomiseks ei leitud ühtki seadet. Palun\n"
"kontrollige oma riistvara."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Teil ei ole ühtki partitsiooni!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Kasuta automaattuvastust"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Tavaline"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kaardi mälu (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "vormindatakse"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Muuda partitsiooni tüüp"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Välju"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Abi"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Abi"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Abi/_Misvärk"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Hiir"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kaardi mälu (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Katkesta"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Hiir"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Kirjeldus"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentimisviis"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Valige fail"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Lüüsipoolne seade"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 nuppu"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Kővaketta leidmine"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Info riistvara kohta"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Näita lisainfot"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Hiire seadmine"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "leiti port %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Palun oodake"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundit"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Loetakse CUPS juhtprogramme"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Proovida niisama"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2330,7 +2480,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2432,9 +2582,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2624,7 +2773,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2636,9 +2785,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2685,21 +2833,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2715,9 +2862,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Olete jőudnud punkti, kus peate otsustama, kuhu täpselt Mandrake Linux oma\n"
"kővakettal paigaldada. Kui kővaketas on tühi vői kui mőni muu \n"
@@ -2782,9 +2929,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2919,38 +3065,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3114,11 +3254,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3166,7 +3306,7 @@ msgstr ""
" süsteemi, mis sobiks nagu valatult Teie täpsete ootustega.\n"
" Aga palun, palun: ÄRGE VALIGE SEDA, KUI TE TÄPSELT EI TEA, MIDA TEETE!"
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3181,7 +3321,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3196,7 +3336,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3212,7 +3352,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3221,23 +3361,23 @@ msgstr ""
"Palun valige őige port. Näiteks MS Windows-i COM1 kannab GNU/Linuxis\n"
"nime ttyS0."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3259,7 +3399,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3281,7 +3421,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3289,7 +3429,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3310,7 +3450,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3329,7 +3469,7 @@ msgstr ""
"ka alglaadur. Kui Teil aga ei ole őnne, tuleb parameetrid seada\n"
"käsitsi. Olge sel juhul hoolas valima őiged."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3343,29 +3483,28 @@ msgstr ""
"Valige \"Kővaketta esimene sektor (MBR)\", kui ei tea täpselt, mida\n"
"teha."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3374,7 +3513,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3400,7 +3539,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"Esmalt otsib DrakX PCI siini SCSI liideseid. Kui neid leitakse, ja \n"
@@ -3427,7 +3566,7 @@ msgstr ""
"Ka samas masinas olev Windows oskab vahel SCSI kohta kasulikku \n"
"informatsiooni anda."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3438,9 +3577,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3452,7 +3590,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3547,7 +3685,7 @@ msgstr ""
"with a '*', if you\n"
"press TAB to see the boot selections."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3575,9 +3713,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3629,10 +3766,10 @@ msgstr ""
"Firmware \n"
"Delay expires."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3640,12 +3777,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3661,7 +3797,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3672,7 +3808,7 @@ msgstr ""
"Ettevaatust, kőik sellel leiduvad andmed hävitatakse ja ei ole enam\n"
"taastatavad."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3691,7 +3827,7 @@ msgstr ""
"\n"
"Katkestamiseks valige \"Katkesta\"."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3699,12 +3835,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3719,20 +3855,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Üldlevi kasutamine on ilma NIS domeenita vőimatu"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Pane FAT formaadis flopi seadmesse %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "See flopi ei ole FAT formaadis"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3740,7 +3876,7 @@ msgstr ""
"Et kasutada seda paketivalikut, alustage installimist käsureaga \"linux "
"defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Viga faili %s lugemisel"
@@ -3770,7 +3906,7 @@ msgstr "Teil peab olema saaleala"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3778,60 +3914,60 @@ msgstr ""
"\n"
"Jätkate ikkagi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Teil peab olema saaleala"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Kasuta vaba ruumi"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Kasuta olemasolevat partitsiooni"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Kasutatavat partitsiooni ei leitud"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Kasuta Windowsi partitsiooni loopback-ina"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Millisele partitsioonile soovite installida Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Valige suurused"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Juurpartitsiooni suurus (MB): "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Saaleala suurus (MB): "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Kasuta vaba ruumi Windowsi partitsioonil"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Mis partitsiooni soovite muuta?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Arvutan Windowsi failisüsteemi piire"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3840,12 +3976,15 @@ msgstr ""
"FAT partitsiooni suurust ei őnnestu muuta, \n"
"ilmnes selline viga: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Teie Windowsi partitsioon on fragmenteerunud, palun kasutada 'defrag'-i"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3864,52 +4003,52 @@ msgstr ""
"scandisk-i, defrag-i ja tehke tagavarakoopia.\n"
"Kui olete oma otsuses kindel, vajutage OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Kui palju ruumi jätate Windowsi jaoks?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "Partitsioon %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Suuruse muutmine ebaőnnestus: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr "Sobivat FAT partitsiooni ei leitud (ei ole piisavalt ruumi)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Tühjenda kogu ketas"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Eemalda Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Teil on rohkem kui üks kővaketas, millisele neis installite Linuxi?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Kettal %s hävivad KŐIK partitsioonid ja andmed"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Partitsioneerin ise"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Kasuta fdisk-i"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3918,11 +4057,11 @@ msgstr ""
"Nüüd saate partitsioneerida %s kővaketta\n"
"Kui olete valmis, salvestage käsuga 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Teil ei ole piisavalt vaba ruumi Windowsi partitsioonil"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Installimiseks ei ole üldse ruumi"
@@ -3930,16 +4069,16 @@ msgstr "Installimiseks ei ole üldse ruumi"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX kettajagamise abimees leidis sellised lahendused:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ketta jagamine ebaőnnestus: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Käivitame vőrguliidesed"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Seiskame vőrguliidesed"
@@ -3951,12 +4090,12 @@ msgstr ""
"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
"Jätkake omal vastutusel."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Ühenduspunkt %s on määratud topelt"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3967,12 +4106,12 @@ msgstr ""
"Teie CD-lugeja vői CD on ilmselt vigane.\n"
"Paketifaile CD-l saate kontrollida käsuga \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "See ongi %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
@@ -3982,9 +4121,9 @@ msgstr "Flopiseade ei ole kättesaadav"
msgid "Entering step `%s'\n"
msgstr "Järgmine samm: '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3993,198 +4132,156 @@ msgstr ""
"Kui nii juhtub, proovige palun tekstipőhjalist paigaldust. Selleks \n"
"vajutaga laadimisel F1 ja sisestage 'text'"
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installi klass"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Palun valige üks järgnevatest paigaldusklassidest"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Teie poolt valitud gruppide kogusuurus on umbes %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Kui soovite installida sellest vähem, valige vastav protsent.\n"
-"\n"
-"Madalama protsendi puhul installitakse vaid kőige tähtsamad paketid;\n"
-"100%% tähendab kőige valitud pakettide installimist."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, fuzzy, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Teil on kettal ruumi vaid %d%% pakettide jaoks.\n"
-"\n"
-"Kui soovite sellest vähem, valige väiksem protsent ja installimisele\n"
-"kuuluvad vaid olulisemad paketid."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Täpsemalt saate valida järgmisel sammul"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Installitavate pakettide protsent"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Valik paketthaaval"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Suurus kokku: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Vigane pakett"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versioon: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Suurus: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Tähtsus: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Seda paketti ei saa valida, kettaruumi ei ole paigalsuseks piisavalt"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Installimiseks on valitud järgmised paketid"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Eemaldamiseks on valitud järgmised paketid"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Seda paketti ei saa (mitte) valida"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "See pakett on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "See pakett on juba installitud"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Selle paketi peaks uuendame\n"
"Olete kindel, et Te ei vali seda?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Näita automaatselt valitud pakette"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installimine"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Salvesta flopile"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Salvest paketivalik"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Eemaldamine"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Valige paketid installimiseks"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installin"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Oletan"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Aega jäänud "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Palun oodake, valmistun installimiseks"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketti"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Paketi %s installimine"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Nőus"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Keeldun"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4198,17 +4295,17 @@ msgstr ""
"Palun sisestage CD pealdisega \"%s\" lugejasse ja vajutage <OK>.\n"
"Kui teil säherdust ei ole, vajutage <Katkesta>"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Ikkagi edasi?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Pakettide tellimisel tekkis viga:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Pakettide installimisel tekkis viga:"
@@ -4281,11 +4378,11 @@ msgstr "Tekkis mingi viga"
msgid "Do you really want to leave the installation?"
msgstr "Kas soovite vőrguühendust taaskäivitada?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lőppkasutaja litsentsileping"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4300,7 +4397,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4420,7 +4517,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4525,113 +4622,117 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klaviatuur"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Palun valige klaviatuuriasetus"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Vőimalike klaviatuuride täielik nimekiri"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Millist installi klassi Te soovite"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installimine/Uuendus"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "On see installimine vői taastamine?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Soovituslik"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Uuendus"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Salvest paketivalik"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Palun valige hiire tüüp"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Hiire port"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Millisesse seerialporti on Teie hiir ühendatud?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Nuppude teesklemine"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Teeskle 2 hiirenupp"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Teeskle 3 hiirenuppu"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kaartide seadmine..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE seadistamine"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ei leia partitsioone"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Otsin partitsioonidelt ühenduspunkte"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Valige ühenduspunktid"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4642,7 +4743,7 @@ msgstr ""
"(Viga oli selline: %s)\n"
"Kas olete nőus partitsioonide kaotamisega?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4650,138 +4751,141 @@ msgstr ""
"DiskDrake ei saanud partitsioonitabeli lugemisega hakkama.\n"
"Jätkate omal vastutusel!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Juurpartitsiooni ei leitud"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Juurpartitsioon"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Millisel partitsioonil hoiate juurkataloogi (/)?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Partitsioonitabeli säilitamiseks vajate alglaadimist"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Blokkide kontroll?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Vormindan partitsioone"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Loon ja vormindan faili %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Saaleala on installimiseks liiga väike, palun lisage"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Otsin kättesaadavaid pakette"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Otsin kättesaadavaid pakette"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Otsin uuendatavaid pakette"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "See pakett on juba installitud"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr "Teie kővakettal ei ole piisavalt vaba ruumi (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Täielik (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimaalne (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Soovitatav (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Taasta flopilt"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Taasta flopilt"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Salvesta flopile"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Valige pakett installimiseks"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Oodake"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4791,16 +4895,16 @@ msgstr ""
"Kui Teil ei ole ühtki neist, klikkige <Katkesta>.\n"
"Kui puuduvad mőned CD-d, märkige vaid olemasolevad ja siis <OK>."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD pealdisega \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Valmistun installimiseks"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4809,23 +4913,23 @@ msgstr ""
"Paketi %s installimine\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Paigaldusjärgsed sätted"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4891,166 +4995,197 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Millises ajavöötmes asute?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS server:"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "CUPS printserver"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Printerit ei ole"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "On Teil veel kaarte?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kokkuvőte"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Hiir"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Ajavööde"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Helikaart"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kaart"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Kasuta NIS-i"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Eemalda Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Kohalik printer"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Juurkasutaja salasőna"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Salasőna puudub"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Salasőna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS autentimine"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domeen"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentimisviis"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Gnome tööjaam"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS server:"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5078,19 +5213,19 @@ msgstr ""
"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
"\"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Esimene flopiseade"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Teine flopiseade"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Jäta vahele"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5114,7 +5249,7 @@ msgstr ""
"ka Jumal!\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5123,28 +5258,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vali flopiseade, mida kasutad alglaadimisketta tegemiseks"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Loome alglaadimisketta"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5152,11 +5287,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5164,16 +5299,16 @@ msgstr ""
"Viga aboot-i installimisel, \n"
"kas forseerida, riskides esimese partitsiooni hävinguga?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Alglaaduri installimine ebaőnnestus. Tekkis järgnev viga:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5190,18 +5325,17 @@ msgstr ""
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Loon kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5211,7 +5345,8 @@ msgstr ""
"\n"
"Olete kindel, et väljute programmist?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5222,7 +5357,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5236,17 +5371,21 @@ msgstr ""
"Mandrake Linux koduleheküljelt \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Abi süsteemi edasiseks konfigureerimiseks saab eelkőige dokumendist\n"
"\"Official Mandrake Linux User's Guide\""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Loo kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5259,15 +5398,15 @@ msgstr ""
"\n"
"Vőite valida ka lihtsalt installi kordamise.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automaatne"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Korda"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Salvest paketivalik"
@@ -5294,421 +5433,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Valige tegevus"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Edasijőudnud"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Palun oodake"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ava puu"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sule puu"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Sorteeritud vői sorteerimata"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Halb valik, proovige palun uuesti\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Eelistused: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "T¨ehhi (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "DVORAK"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Hispaania"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Soome"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Prantsuse"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norra"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Poola"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Vene"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Rootsi"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Briti"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iraani"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeenia (vanem)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeenia (trükimasin)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Aserbaidţaani (ladina)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaaria"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiilia (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Valgevene"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Đveitsi (Saksa asetus)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Đveitsi (Prantsuse asetus)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tđehhi (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Saksa (ilma sammuta)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Taani"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "DVORAK (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "DVORAK (Norra)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "DVORAK (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruusia (vene)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruusia (ladina)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Kreeka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungari"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroaadi"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Iisraeli"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Iisraeli foneetiline"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraani"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandi"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itaalia"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Jaapani 106 klahviga"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korea"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Ladina-Ameerika"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Leedu AZERTY (vanem)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Leedu AZERTY (uuem)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Leedu numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Leedu foneetiline QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Asukoht"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedoonia"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandi"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poola (QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poola (QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Sloveenia"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaki (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaki (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Aserbaidţaani (kirillitsa)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabel"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Türgi (\"F\" mudel)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Türgi (\"Q\" mudel)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US (rahvusvaheline)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnami numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavia (koos kirillitsaga)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5721,7 +5844,31 @@ msgstr "Ringühendus %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Eemalda enne kettarühmad (logical volumes)\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Sissehelistamiskeskuse number"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Vormindamine"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5762,10 +5909,6 @@ msgstr "1 nupp"
msgid "Generic 2 Button Mouse"
msgstr "Lihtsalt 2-nupuline hiir"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Tavaline"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Ratas"
@@ -5830,38 +5973,54 @@ msgstr "ei soovi"
msgid "No mouse"
msgstr "Hiirt ei ole"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Palun testige hiirt"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Hiire aktiveerimiseks"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "KEERUTAGE RATTAKEST!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Lőpeta"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Järgmine ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Eelmine"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Kas see on sobiv?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Ava puu"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sule puu"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Sorteeritud vői sorteerimata"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Loo internetiühendus"
@@ -5908,7 +6067,7 @@ msgstr ""
"Ühtki vőrgukaarti ei őnnestunud tuvastada\n"
"Seega ei saa ka sellist ühendust seadistada."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Valige vőrguliides"
@@ -5922,7 +6081,7 @@ msgstr ""
msgid "no network card found"
msgstr "vőrgukaarti ei leitud"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Vőrguseadistused"
@@ -5938,15 +6097,15 @@ msgstr ""
"Masina nimi peab olema esitatud täiskujul,\n"
"nagu ``minumasin.minufirma.ee''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Masinanimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Vőrgu sätete abimees"
@@ -5996,7 +6155,7 @@ msgstr "ISDN sätted"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Vali oma teenusepakkuja.\n"
" Kui see ei ole nimekirjas, vali Tundmatu"
@@ -6019,14 +6178,14 @@ msgstr "Ülejäänud maailm"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Ülejäänud maailm \n"
" ilma D-kanalita"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Mis protokolli soovite kasutada?"
#: ../../network/isdn.pm_.c:199
@@ -6050,7 +6209,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Kui Teil on ISA kaart, siis peaks järgmised väärtused olema őiged.\n"
@@ -6067,13 +6227,13 @@ msgid "Continue"
msgstr "Jätka"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Milline on Teie ISDN kaart?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Leidsin küll PCI ISDN kaardi, kui selle tüüp on tundmatu. Palun valige üks "
"PCI kaart järgmisel sammul."
@@ -6090,47 +6250,47 @@ msgstr "Millisesse seerialporti on Teie modem ühendatud?"
msgid "Dialup options"
msgstr "DialUp parameetrid"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Ühenduse nimi"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Sissehelistamiskeskuse number"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Kasutajakonto"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skriptipőhine"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminalipőhine"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domeeninimi"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Esimene nimeserver (soovituslik)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Teine nimeserver (soovituslik)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6138,7 +6298,7 @@ msgstr ""
"\n"
"Saate ühenduse katkestada vői uuesti seadistada."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6146,11 +6306,11 @@ msgstr ""
"\n"
"Saate seadistada ühenduse uuesti."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Hetkel olete Internetiga ühendatud."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6158,37 +6318,37 @@ msgstr ""
"\n"
"Saate ühenduda Internetti vői seadistada ühendus uuesti."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Hetkel ei ole Te Internetti ühendatud."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Ühendatud"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Lahuta..."
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Seadista TV-kaabli ühendus"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetiühenduse seadistamine"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Saate ühenduse katkestada vői uuesti seadistada."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6202,12 +6362,12 @@ msgstr ""
"\n"
"Saate ühenduse katkestada vői uuesti seadistada."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Vőrgu sätted"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6218,9 +6378,9 @@ msgstr ""
"Kui soovite neid seadistusi säilitada, valige OK, muidu katkestage ja saate "
"seadistada uuesti.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6230,93 +6390,99 @@ msgstr ""
"Nüüd hakkame internetiühendust seadistama.\n"
"Kui Te ei soovi automaatset tuvastamist siis jätke see märkimata.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Valige profiil, mida seadistada"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Kasuta automaattuvastust"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ekspertresiim"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Otsin printerit..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Tavaline modemiühendus"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "leiti port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN ühendus"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "tuvastati %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "LAN ühendus"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "leiti liidesel %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kaabliühendus"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Kaabliühendus"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN ühendus"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "vőrgukaart(i) leiti üles"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Valige kasutatav vahend"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
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:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Internetiühenduse jagamine"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Kas soovite luua ühenduse juba alglaadimisel?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Vőrgusätted"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6324,7 +6490,7 @@ msgid ""
"%s"
msgstr "Kas soovite vőrguühendust taaskäivitada?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6334,7 +6500,7 @@ msgstr ""
"\n"
"Sätted salvestatakse nüüd.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6342,16 +6508,16 @@ msgstr ""
"Soovitame taaskäivitada ka X keskkonna, et vältida vőimalikke\n"
"masinanime muutmisest tingitud probleeme."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6359,7 +6525,7 @@ msgstr ""
"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
"Valige lihtsalt OK, et sätteid mitte muuta."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6369,38 +6535,43 @@ msgstr ""
"Kőik read tuleb sisestada IP-aadressi kujul\n"
"(Näiteks 12.34.56.78)"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Seadistame vőrgukaardi %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (juhtprogramm %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-aadress"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Vőrgu mask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automaatne IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Käivitub laadimisel"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6412,64 +6583,64 @@ msgstr ""
"nagu ``minumasin.minufirma.ee''.\n"
"Kui Teil on vaikimisi lüüs, siis sisestage ka selle IP-aadress"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Nimeserver"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Lüüsipoolne seade"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Vahendajate sätted"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP vahendaja"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP vahendaja"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Vahendaja peab olema kujul ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Interneti sätted"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Kas soovite oma internetiühendust proovida?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testime Teie ühendust..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Süsteem on nüüd Internetti ühendatud"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Turvakaalutlusel katkestan nüüd ühenduse."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6477,114 +6648,119 @@ msgstr ""
"Paistab, et süsteem ei ole Internetti ühendatud.\n"
"Palun seadistage ühendus uuesti."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Internetiühenduse sätted"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Palun täida allpool olev väli"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kaardi IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kaardi mälu (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kaardi IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kaardi IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kaardi IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Teie telefoninumber"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Teenusepakkuja tunnus (näiteks minuisp.ee)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Sissehelistamiskeskuse number"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 (vőib jätta tühjaks)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 (vőib jätta tühjaks)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Klaviatuuri valik"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Valimisviis"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Ühenduse tüüp: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Ühenduse tüüp: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Kasutajatunnus"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Salasőna"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ühendamine ebaőnnestus: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Sellel platformil ei saa laiendatud partitsiooni luua"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Partitsioonitabelis on miskipärast tühi koht, aga see ei ole kasutatav.\n"
"Ainuke lahendus on nihutada primaarset partitsiooni, et auk satuks "
"laiendatud partitsioonide kőrvale"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Taastamine failist %s ebaőnnestus: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Viga faili %s kirjutamisel"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6594,193 +6770,193 @@ msgstr ""
"Andmete pidevuse kontroll ebaőnnestus. \n"
"See tähendab, et kettale kirjutamisel tekivad jamad"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "vajalik"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "tähtis"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "väga kena"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "kena"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "vőib olla"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Kohalik printer"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Vőrguprinter"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "CUPS printserver"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "lpd printserver"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Vőrguprinter (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Printserver:"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printeri seadme URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Kohalik printer"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Vőrguprinter"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Viga faili %s kirjutamisel"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(moodul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS serveri IP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Vaikimisi)"
@@ -6803,12 +6979,12 @@ msgstr ""
"printereid seadistada, need leitakse automaatselt.\n"
"Kui kahtlete, valige \"CUPS printserver\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN sätted"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "CUPS printserver"
@@ -6839,7 +7015,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Pordi number peab olema ikkagi number"
@@ -6848,7 +7024,7 @@ msgstr "Pordi number peab olema ikkagi number"
msgid "CUPS server IP"
msgstr "CUPS serveri IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -6857,22 +7033,13 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Alglaaduri stiil"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Otsin printerit..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Proovin porte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6885,14 +7052,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6910,12 +7077,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6929,11 +7096,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6943,35 +7110,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Kasuta automaattuvastust"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Proovin porte"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "tuvastati %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6979,43 +7150,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7023,7 +7194,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7031,73 +7202,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Seadistused"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Paketi %s installimine"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Vőrguprinteri sätted"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7107,31 +7288,31 @@ msgstr ""
"printserveri nime ja prindijärjekorra nime, mida soovite\n"
"serveril kasutada."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) printeri sätted"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7144,35 +7325,35 @@ msgstr ""
"printserveri IP-aadressi, samuti ka serveri poolt jagatava printeri\n"
"nime ning serveri poolt aktsepteeritud kasutajatunnuse, salasőna ja töögrupi"
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB serveri nimi"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB serveri IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Jagatav printer"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Töögrupp"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7196,7 +7377,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7205,7 +7386,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7213,11 +7394,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare printeri sätted"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7229,28 +7410,28 @@ msgstr ""
"nime (NB! See vőib olla erinev tema TCP/IP nimest!) samuti nagu ka\n"
"prindijärjekorra nime serveril ning kasutajatunnuse ja salasőna"
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printserver:"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Prindijärjekorra nimi:"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Pistikprinteri sätted"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7261,60 +7442,56 @@ msgstr ""
"Sisestage palun printeri masinanimi ja vőimaluse\n"
"korral pordi number"
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Kirjeldus"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Asukoht"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7329,28 +7506,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Kas see on sobiv?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Printeri ühendusviis"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Mis tüüpi printer see on?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7359,18 +7536,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7380,12 +7557,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7393,7 +7570,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7406,7 +7583,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7416,34 +7593,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Proovin porte"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7451,45 +7628,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Jah, trüki mőlemad testleheküljed"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Printer"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Standardtööriistad"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7505,7 +7682,7 @@ msgstr ""
"\n"
"Kas tulemust on juba näha?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7518,16 +7695,16 @@ msgstr ""
"\n"
"Kas tulemust on juba näha?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7536,15 +7713,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7553,49 +7730,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7605,7 +7782,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7614,31 +7791,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Hiir"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Seiskame vőrguliidesed"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Seiskame vőrguliidesed"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Hiir"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Otse ühendatud printeri sätted"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7646,38 +7834,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7687,51 +7875,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7739,62 +7927,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Printeri nimi tohib sisaldada vaid tähti, numbreid ja alakriipsu"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Sea printer"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Testime Teie ühendust..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Vőrgusätted"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor ei ole seadistatud"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7802,12 +7990,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Vőrguseadistused"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7817,34 +8005,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Kőrge"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoiline"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7859,12 +8047,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7878,69 +8066,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Vali printeri ühendusviis"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Printeri sätted"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Otse ühendatud printeri sätted"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Printeri sätted"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Kas soovite printerit seadistada?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7951,7 +8139,7 @@ msgstr ""
"Kirjeldatud on järgnevad prindijärjekorrad.\n"
"Te vőite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7961,139 +8149,143 @@ msgstr ""
"Kirjeldatud on järgnevad prindijärjekorrad.\n"
"Te vőite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Vőrgusätted"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Tavakasutus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Välju"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Internetiühenduse jagamine"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printeri ühendusviis"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Vőrguprinter"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Kas soovite vőrguühendust taaskäivitada?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Loetakse CUPS juhtprogramme"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8177,24 +8369,57 @@ msgstr "Salasőnad ei klapi"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Juba vormindatud RAID-ile (md%d) ei saa partitsiooni lisada"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ei saa kirjutada faili %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid ebaőnnestus"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ebaőnnestus (puudub 'raidtools'?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei ole piisavalt partitsiooni RAID-%d jaoks\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Seda tase muudab küll süsteemi lihtsalt kasutatavaks, kui väga\n"
+"haavatavaks: ligipääsupiirangute puudumise tőttu ei peaks arvutit ühendama\n"
+"ei teiste arvutitega ega ka mitte Internetti."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr "Sellel turvatasemel vőib süsteemi kasutada Internetis ka serverina."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "ISDN sätted"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Eelistused"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8248,7 +8473,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8310,7 +8535,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8380,7 +8605,7 @@ msgstr ""
"portmapper haldab RPC ühendusi, mida kasutavad NFS ja NIS. Neil \n"
"serveritel on see hädavajalik."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8473,7 +8698,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Töömood"
@@ -8596,6 +8821,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Juhtimiskeskus"
@@ -8700,6 +8926,16 @@ msgstr ""
msgid "Installing packages..."
msgstr "Paketi %s installimine"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Palun väljuge ja vajutage siis Ctrl-Alt-BackSpace"
+
+# c-format
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Muudatuste aktiveerimiseks käivitage %s uuesti"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8708,6 +8944,162 @@ msgstr ""
"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
"Proovin loetamatud kirjed puhastada"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Interneti sätted"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Server, Andmebaasid"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Server, Andmebaasid"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS server:"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS server:"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Loo alglaadimisflopi"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Lisa kasutaja"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Abi"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ei ole ühendatud"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Kustuta"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Valige fail"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Lisa kasutaja"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Seadista..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "seadista uuesti"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Pane flopi seadmesse %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Flopiseade ei ole kättesaadav"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8749,6 +9141,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Loon kiirpaigaldusflopi"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8757,47 +9154,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Őnnitleme!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Installimine"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Tavakasutaja"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Vormindan loopback faili %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8805,15 +9195,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8821,711 +9203,774 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Viga faili %s lugemisel"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Paketigruppide valik"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Eemalda prindijärjekord"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Eemalda Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Salasőna puudub"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN ühendus"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Vali printeri ühendusviis"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Palun valige klaviatuuriasetus"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Palun valige paketid installimiseks"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Vőrgu mask:"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tüüp"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Kas optimiseerime kővaketast?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Kas optimiseerime kővaketast?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Oodake"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Mooduli parameetrid:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr "Vőrgu mask:"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Hiire port: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Eelistused"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Palun testige hiirt"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN ühendus"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Vali printeri ühendusviis"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Muu"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Süsteemi installimine"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Isetehtud"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Abi"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Eelmine"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Olek:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Tekst"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Pakettide valik"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Installimiseks on valitud järgmised paketid"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Salvesta faili"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN sätted"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "ISDN sätted"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9557,7 +10002,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9566,7 +10011,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9607,7 +10052,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9635,12 +10080,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -9657,7 +10107,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9697,7 +10147,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9708,7 +10158,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9721,7 +10171,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9765,105 +10215,537 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s installimine ebaőnnestus. Tekkis järgnev viga:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsooliprogrammid"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Juhtimiskeskus"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "kohustuslik"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Hiir"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Vőrguprinter"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Jagatav printer"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Gnome tööjaam"
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Kasuta diskdrake-i"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Vőrgu sätete abimees"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Tegevused"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakett"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Palun oodake"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Välju programmist"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Port"
+
+#: ../../standalone/drakbug_.c:123
+#, fuzzy
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Seadistan uuesti abimehega..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Teisi keeli saab valida pärast installimist"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Vőrgusätted (%d liidest)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Kustuta profiil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profiil kustutamiseks:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Uus profiil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Masinanimi: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetiühendus"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tüüp: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Vaikelüüs:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Liides:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Olek:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Seadiste internetiühendus..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN sätted"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Juhtprogramm"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Liides"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokoll"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Olek:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Seadista kohtvőrk (LAN) ..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Abimees..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Rakenda"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Palun oodake... Rakendan seadistusi"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Ühendatud"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ei ole ühendatud"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Ühenda..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Lahuta..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN sätted"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Vőrgukaart %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Laadimisprotokoll"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Käivitub laadimisel"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Aktiivne"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Aktiivne"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetiühenduse seadistamine"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetiühenduse seadistamine"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Ühenduse tüüp: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameetrid"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Vaikelüüs"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Vőrgukaart"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Module name"
+msgstr "Mooduli parameetrid:"
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Size"
+msgstr "Suurus: %s"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#, fuzzy
+msgid "drakfloppy"
+msgstr "Taasta flopilt"
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Alglaadimise stiil"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "tavaline"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:126
+#, fuzzy
+msgid "kernel version"
+msgstr "Interneti tööjaam"
+
+#: ../../standalone/drakfloppy_.c:132
+#, fuzzy
+msgid "General"
+msgstr "Tavaline"
+
+#: ../../standalone/drakfloppy_.c:137
+#, fuzzy
+msgid "Expert Area"
+msgstr "Ekspertresiim"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+#, fuzzy
+msgid "Add a module"
+msgstr "Tavakasutaja"
+
+#: ../../standalone/drakfloppy_.c:161
+#, fuzzy
+msgid "force"
+msgstr "Veel.."
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "kasutades moodulit"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:200
+#, fuzzy
+msgid "Remove a module"
+msgstr "Viimane leht enne"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, fuzzy, c-format
+msgid "Unable to fork: %s"
+msgstr "Keela vőrguühendus"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s ei leitud"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Tehtud"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Vorminda flopi"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Valmistun installimiseks"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "piiratud"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "piiratud"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9872,123 +10754,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Vormindamine"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "RPM-ide eemaldamine"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "ISDN sätted"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Ühenduspunkt"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Kontor"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Katkesta"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Printer"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Süsteemi installimine"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Valige fail"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Vőrguprinter"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Initsialiseerimisteade"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Teie süsteemis ei ole vőrgukaarti!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Installimine"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Teie süsteemis ei ole vőrgukaarti!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Välju programmist"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetiühenduse jagamine"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetiühenduse jagamine töötab"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10000,31 +10881,31 @@ msgstr ""
"\n"
"Mida Te soovite teha?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "keela"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "tühista"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "seadista uuesti"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Peaten serverid..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetiühendust nüüd enam ei jagata"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetiühendust hetkel ei jagata"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10036,19 +10917,19 @@ msgstr ""
"\n"
"Mida Te soovite teha?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "luba"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Käivitan serverid..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetiühenduse jagamine nüüd töötab"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10062,21 +10943,21 @@ msgstr ""
"\n"
"Märkus: kohtvőrgu (LAN) jaoks on vajalik eraldi vőrgukaardi olemasolu."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Liides %s (kasutab moodulit %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Liides %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Teie süsteemis ei ole vőrgukaarti!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10084,11 +10965,11 @@ msgstr ""
"Ühtki vőrgukaarti ei ole hetkel seadistatud. Palun kasutage selleks "
"riistvara sätteseadjat."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Vőrguliides"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10103,7 +10984,7 @@ msgstr ""
"\n"
"Kohtvőrgu sätted seotakse selle liidesga."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10111,12 +10992,12 @@ msgstr ""
"Palun valige millist vőrguliidest soovite kasutada kohtvőrgu\n"
"jaoks."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor ei ole seadistatud"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10126,17 +11007,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Alglaaduri stiil"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interneti sätted"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10147,7 +11028,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10159,34 +11040,34 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS serveri IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Vőimalik kohtvőrgu aadressi konflikt %s konfiguratsioonis!\n"
#
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Leitud tulemüüri sätted!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10194,20 +11075,20 @@ msgstr ""
"Hoiatus! Leiti olemasolevad tulemüüri sätted. Tőenäoliselt peaksite need "
"hiljem üle vaatame."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Seadistan..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Häälestan skriptid, installin tarkvara, käivitan serverid..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Probleemid paketi %s installimisel"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10217,24 +11098,24 @@ msgstr ""
"Nüüd saate internetiühendust jagada teistele kohtvőrgu arvutitele, kasutades "
"neil automaatset konfigureerimist (DHCP)"
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Internetiühenduse jagamine on juba seadistatud aga hetkel keelatud."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"Internetiühenduse jagamine on juba seadistatud ja see on praegu aktiivne."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetiühenduse jagamist ei ole kunagi seadistatud"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Interneti jagamise seadistamine"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10249,209 +11130,6 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Vőrgusätted (%d liidest)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Kustuta profiil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profiil kustutamiseks:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Uus profiil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Masinanimi: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetiühendus"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tüüp: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Vaikelüüs:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Liides:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Olek:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Seadiste internetiühendus..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN sätted"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Juhtprogramm"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Liides"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Olek:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Seadista kohtvőrk (LAN) ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Abimees..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Rakenda"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Palun oodake... Rakendan seadistusi"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Ühendatud"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ei ole ühendatud"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Ühenda..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Lahuta..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN sätted"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Vőrgukaart %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Laadimisprotokoll"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Käivitub laadimisel"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktiivne"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktiivne"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetiühenduse seadistamine"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetiühenduse seadistamine"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Ühenduse tüüp: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameetrid"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Vaikelüüs"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Vőrgukaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Turvataseme seadmine"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Juhtimiskeskus"
@@ -10460,94 +11138,130 @@ msgstr "Juhtimiskeskus"
msgid "Choose the tool you want to use"
msgstr "Valige kasutatav vahend"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanada (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Euroopa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Prantsusmaa"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandi"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Euroopa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seerial"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Pakettide installimisel tekkis viga:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10591,7 +11305,7 @@ msgstr "Ei saa kiiruuendust alustada !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
#, fuzzy
msgid "logdrake"
msgstr "DrakNet"
@@ -10640,10 +11354,6 @@ msgstr "/_Eelistused"
msgid "/Options/Test"
msgstr "/Eelistused/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Abi"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Abi/_Misvärk"
@@ -10708,7 +11418,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10717,81 +11427,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "LAN sätted"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache ja Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "varjutatud"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domeeninimi"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "ext2"
+msgid "Ftp Server"
+msgstr "NIS server:"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Server, Andmebaasid"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS server:"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS server:"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "seade"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printserver:"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "huvitav"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "vormindatakse"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Seadistused"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Salvesta kui..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "ei leitud: serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Teeskleme keskmist hiirenuppu?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Loetakse CUPS juhtprogramme"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Otsin printerit..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10835,6 +11575,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -11228,10 +11980,6 @@ msgid "Multimedia - Sound"
msgstr "Multimeedia - Heli"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utiliidid"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentatsioon"
@@ -11335,10 +12083,6 @@ msgid ""
msgstr "Komplekt programme meili ja uudiste lugemiseks ning veebi brausimiseks"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiveerimine, emuleerimine, monitoorimine"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Isiklikud finantsid"
@@ -11385,25 +12129,159 @@ msgstr "Multimeedia - CD kirjutamine"
msgid "Scientific Workstation"
msgstr "Teadustööjaam"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Katkesta"
+#~ msgid "Choose options for server"
+#~ msgstr "Valige X server"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor ei ole seadistatud"
-#~ msgid "None"
-#~ msgstr "Ei soovi"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Graafikakaart ei ole veel seatud"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Valige uus vaikimisi kasutaja :"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Kuvatihedus ei ole veel seatud"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Vőrguprinter"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "proovige mőnd parameetrit muuta"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Tekkis mingi viga:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Jätkub %d sekundi pärast"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Kas see on őige?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Tekkis mingi viga, proovige mőnd parameetrit muuta"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Näita kőike"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Valmistume X-i seadistamiseks"
-#~ msgid "You may now provide its options to module %s."
+#~ msgid "What do you want to do?"
+#~ msgstr "Mida Te soovite teha?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Muuda monitori"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Muuda graafikakaardi"
+
+#~ msgid "Change Server options"
+#~ msgstr "Muuda serveri parameetreid"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Muuda kuvatihedust"
+
+#~ msgid "Show information"
+#~ msgstr "Näita lisainfot"
+
+#~ msgid "Test again"
+#~ msgstr "Proovi veel"
+
+#~ msgid "Setting security level"
+#~ msgstr "Turvataseme seadmine"
+
+#~ msgid "Graphics card"
+#~ msgstr "Graafikakaart"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Valige graafikakaart"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Hoiatus: testimine vőib Teie arvuti peatada"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA, 640x400 sagedusel 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 800x600 sagedusel 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-ühilduv, 1024x768, 87 Hz vahelejätuga "
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 1024x768, 87 Hz vahelejätuga, 800x600, 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "SVGA, 800x600 sagedusel 60 Hz, 640x480 sagedusel 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA, 1024x768 sagedusel 60 Hz, 800x600 sagedusel 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Kőrgsageduslik SVGA, 1024x768, 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Mitmesageduslik, 1280x1024 sagedusel 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Mitmesageduslik, 1280x1024 sagedusel 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Mitmesageduslik, 1280x1024 sagedusel 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Teie poolt valitud gruppide kogusuurus on umbes %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Kui soovite installida sellest vähem, valige vastav protsent.\n"
+#~ "\n"
+#~ "Madalama protsendi puhul installitakse vaid kőige tähtsamad paketid;\n"
+#~ "100%% tähendab kőige valitud pakettide installimist."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Täpsemalt saate valida järgmisel sammul"
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Installitavate pakettide protsent"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Valige turvatase"
+
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Täielik (%d MB)"
+
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Minimaalne (%d MB)"
+
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Soovitatav (%d MB)"
+
+#~ msgid "Utilities"
+#~ msgstr "Utiliidid"
+
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr "Arhiveerimine, emuleerimine, monitoorimine"
+
+#~ msgid "None"
+#~ msgstr "Ei soovi"
+
+#~ msgid "You may now provide options to module %s."
#~ msgstr "Nüüd vőite moodulile %s parameetreid määrata"
#~ msgid "mount failed"
@@ -11420,14 +12298,6 @@ msgstr "Teadustööjaam"
#~ "more security warnings and checks."
#~ msgstr "Turvataset on parandatud, lisatud on hoiatusi ja piiranguid."
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimeedia"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ekspert"
-
#~ msgid ""
#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
#~ "local time according to the time zone you selected."
@@ -11444,47 +12314,9 @@ msgstr "Teadustööjaam"
#~ msgid "Configure network connection (LAN or Internet)"
#~ msgstr "Seadista vőrguühendus (kohtvőrk vői Internet)"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Millisele kettale soovite seda ümber paigutada?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Palun valige paketid installimiseks"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome tööjaam"
-
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Kasutaja:"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Palun valige hiire tüüp"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Välju"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "CD/flopi/.. autoühendamine"
-
#~ msgid "Active"
#~ msgstr "Aktiivne"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Ei"
-
#~ msgid "A printer, model \"%s\", has been detected on "
#~ msgstr "Leiti printer, nimega \"%s\" "
@@ -11494,70 +12326,6 @@ msgstr "Teadustööjaam"
#~ msgid "Printer Device"
#~ msgstr "Printeri seade"
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "CUPS printserver"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "CUPS printserver"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Töömood"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Muu"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Palun valige klaviatuuriasetus"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Palun valige partitsioon"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tüüp: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Kőlbmatu tagavarakoopia"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Seadista X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Printeri seade"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Katkesta"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "OK"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Hiir"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "tuut"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Testime Teie ühendust..."
-
#~ msgid "Closing your connection..."
#~ msgstr "Sulgeme nüüd ühenduse..."
@@ -11609,17 +12377,6 @@ msgstr "Teadustööjaam"
#~ msgid "New"
#~ msgstr "Uus"
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Eemalda"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Palun valige partitsioon"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Mitmeselt mőistetav (%s), palun täpsustage\n"
@@ -11648,26 +12405,6 @@ msgstr "Teadustööjaam"
#~ msgid "I'm about to restart the network device %s. Do you agree?"
#~ msgstr "Kas olete valmis vőrguliidese %s taaskäivitamiseks?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Tavaline valik on \"/dev/hda\" (esimese IDE kanali master), kui Te ei\n"
-#~ "tea täpselt, et tahate teisiti teha."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Ühenduse tüüp: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Valige uus vaikimisi kasutaja :"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Palun testige hiirt"
-
#~ msgid ""
#~ "Please choose your preferred language for installation and system usage."
#~ msgstr "Valige keel süsteemi installimiseks ja kasutamiseks."
@@ -12541,57 +13278,9 @@ msgstr "Teadustööjaam"
#~ msgid "Remote queue"
#~ msgstr "Prindijärjekorra nimi"
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Prindijärjekorra nimi"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domeeninimi"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Printerit ei ole"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Vőrgusätted"
-
#~ msgid "Profile "
#~ msgstr "Profiil "
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Ühenduse tüüp: "
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Loo internetiühendus"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Katkesta internetiühendus"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Katkesta internetiühendus"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Katkesta internetiühendus"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Ühenduse nimi"
-
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "rämps"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Vaikimisi"
-
#~ msgid "NetWare"
#~ msgstr "NetWare"
@@ -12607,10 +13296,6 @@ msgstr "Teadustööjaam"
#~ msgid "Disable network"
#~ msgstr "Keela vőrguühendus"
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Keela vőrguühendus"
-
#~ msgid ""
#~ "You can now test your mouse. Use buttons and wheel to verify\n"
#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
@@ -12623,10 +13308,6 @@ msgstr "Teadustööjaam"
#~ msgid "DSL (or ADSL) connection"
#~ msgstr "DSL (vői ADSL) ühendus"
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Hiir"
-
#~ msgid "You can specify directly the URI to access the printer with CUPS."
#~ msgstr "Vőite anda ette ka URI, mille järgi CUPS printeri leiab."
@@ -12669,9 +13350,6 @@ msgstr "Teadustööjaam"
#~ msgid "Extra Text options"
#~ msgstr "Lisa teksti parameetrid"
-#~ msgid "Reverse page order"
-#~ msgstr "Viimane leht enne"
-
#~ msgid "Select Remote Printer Connection"
#~ msgstr "Vali vőrguprinteri ühendusviis"
@@ -12708,20 +13386,12 @@ msgstr "Teadustööjaam"
#~ msgid "Enable"
#~ msgstr "Luba"
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "LAN sätted"
-
#~ msgid "Provider dns 1"
#~ msgstr "Teenusepakkuja DNS 1"
#~ msgid "Provider dns 2"
#~ msgstr "Teenuspakkuja DNS 2"
-#, fuzzy
-#~ msgid "fsck failed: "
-#~ msgstr "ühendamine ebaőnnestus: "
-
#~ msgid ""
#~ "To enable a more secure system, you should select \"Use shadow file\" "
#~ "and\n"
@@ -12745,25 +13415,15 @@ msgstr "Teadustööjaam"
#~ msgid "How do you want to connect to the Internet?"
#~ msgstr "Kuidas soovite luua internetiühendust?"
-#~ msgid "Configure..."
-#~ msgstr "Seadista..."
-
#~ msgid "Selected size %d%s"
#~ msgstr "Valitud suurus %d%s"
#~ msgid "Opening your connection..."
#~ msgstr "Testime Teie ühendust..."
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Seadistused: Lisa asukoht"
-
#~ msgid "This startup script try to load your modules for your usb mouse."
#~ msgstr "See skript proovib seadistada USB hiirt"
-#~ msgid "Boot style configuration"
-#~ msgstr "Alglaadimise stiil"
-
#~ msgid ""
#~ "Now that your Internet connection is configured,\n"
#~ "your computer can be configured to share its Internet connection.\n"
@@ -12787,9 +13447,6 @@ msgstr "Teadustööjaam"
#~ msgid "Configure LILO/GRUB"
#~ msgstr "LILO/GRUB seadistamine"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Loo alglaadimisflopi"
-
#~ msgid "Choice"
#~ msgstr "Valik"
@@ -12919,9 +13576,6 @@ msgstr "Teadustööjaam"
#~ msgid "not connected"
#~ msgstr "ei ole ühendatud"
-#~ msgid "Actions"
-#~ msgstr "Tegevused"
-
#~ msgid "Scientific applications"
#~ msgstr "Teadusrakendused"
@@ -12937,9 +13591,6 @@ msgstr "Teadustööjaam"
#~ msgid "Second DNS Server"
#~ msgstr "Teine nimeserver:"
-#~ msgid "using module"
-#~ msgstr "kasutades moodulit"
-
#~ msgid "Development, Database"
#~ msgstr "Arendus, Andmebaasid"
@@ -12996,9 +13647,6 @@ msgstr "Teadustööjaam"
#~ "Kohtvőrk on juba seadistatud.\n"
#~ "Kas soovite:"
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Seadistan uuesti abimehega..."
-
#~ msgid "Graphics Manipulation"
#~ msgstr "Graafikaprogrammid"
@@ -13051,18 +13699,12 @@ msgstr "Teadustööjaam"
#~ msgid "Confirm Password"
#~ msgstr "Salasőna uuesti"
-#~ msgid "default"
-#~ msgstr "tavaline"
-
#~ msgid "What is your system used for?"
#~ msgstr "Milline on Teie süsteemi kasutusala?"
#~ msgid "Select the size you want to install"
#~ msgstr "Valige paigalduse maht"
-#~ msgid "Use diskdrake"
-#~ msgstr "Kasuta diskdrake-i"
-
#~ msgid "Customized"
#~ msgstr "Isetehtud"
@@ -13092,9 +13734,6 @@ msgstr "Teadustööjaam"
#~ msgid "Search"
#~ msgstr "Otsi"
-#~ msgid "Package"
-#~ msgstr "Pakett"
-
#~ msgid "Tree"
#~ msgstr "Puu"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index a3cc4183d..c377124d8 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -1,13 +1,12 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999, 2002 Mandrakesoft
-# Kim Enkovaara <kim.enkovaara@iki.fi>, 1999, 2000
-# Matias Griese <mahagr@utu.fi>, 2001, 2002
+# drakfloppy Finnish Translation.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Matias Griese <mahagr@utu.fi>, 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-20 22:55EET\n"
+"Project-Id-Version: drakfloppy VERSION\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-12-17 23:18EET\n"
"Last-Translator: Matias Griese <mahagr@utu.fi>\n"
"Language-Team: Finnish\n"
"MIME-Version: 1.0\n"
@@ -15,24 +14,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Aseta kaikki näytöt erikseen"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kt"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Käytä Xinerama-laajennusta"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kt"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mt"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mt"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mt"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mt"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mt"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mt"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mt tai enemmän"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Valitse X-palvelin"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-palvelin"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Monen näytön asettaminen"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,43 +70,44 @@ msgstr ""
"Järjestelmäsi tukee monen näytön laitteistokokoonpanoa.\n"
"Mitä haluat tehdä?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Näytönohjain"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Valitse näytönohjaimen muistin määrä"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Valitse näytönohjain"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFreen asentaminen"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Valitse X-palvelin"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Mitä versiota XFree-serveristä haluat käyttää?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-palvelin"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Aseta kaikki näytöt erikseen"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Valitse X-palvelin"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Käytä Xinerama-laajennusta"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X-palvelin"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Mitä versiota XFree-serveristä haluat käyttää?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s laitteistokiihdytetyllä 3D-tuella"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,33 +117,18 @@ msgstr ""
"ssa.\n"
"Korttisi on tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s laitteistokiihdytetyllä 3D-tuella"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
-"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s KOKEELLISELLA laitteistokiihdytetyllä 3D-tuella"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +140,58 @@ msgstr ""
"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI.Korttisi on "
"tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
+"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (näytönohjaimen ajurin asennus)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFreen asentaminen"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Valitse näytönohjaimen muistin määrä"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Valitse optioita palvelimelle"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Säilytä muutokset?\n"
+"Nykyiset asetukset ovat:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Valitse monitori"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Näyttö"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Mukautettu"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Yleinen"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Peruuta"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,511 +214,326 @@ msgstr ""
"vaakavirkistystaajuus\n"
"on suurempi kuin oman näyttösi. Jos epäröit, valitse pienempi taajuus."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Vaakavirkistystaajuus"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Pystyvirkistystaajuus"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Näyttöä ei ole asetettu"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Näytönohjainta ei ole vielä asetettu"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Näytön resoluutiota ei ole vielä valittu"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Haluatko kokeilla asetuksia?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varoitus: näytönohjaimesi testaaminen voi jumittaa tietokoneen"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Kokeile asetuksia"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 väriä (8 bittiä)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"kokeile joidenkin parametrien muuttamista"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tuhatta väriä (15 bittiä)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tapahtui virhe:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tuhatta väriä (16 bittiä)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Lopetan %d sekunnissa"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljoonaa väriä (24 bittiä)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Onko tämä oikea asetus?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljardia väriä (32 bittiä)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tapahtui virhe, kokeile joidenkin parametrien vaihtamista"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resoluutiot"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resoluutio"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Valitse resoluutio ja värisyvyys"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Näytönohjain: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 palvelin: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Lisäasetukset"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Peruuta"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Asiantuntijatila"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Näytä kaikki"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Haluatko kokeilla asetuksia?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluutiot"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Kokeile asetuksia"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Näppäinasettelu: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Hiiren tyyppi: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Hiiren laite: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Näyttö: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Näytön vaakajuovataajuus: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Näytön virkistystaajuus: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Näytönohjain: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Näytönohjaimen tunniste: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafiikkamuisti: %s kt\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Värisyvyys: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resoluutio: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 palvelin: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ajurit: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Valmistelen X-Windowin asetuksia"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Mitä haluat tehdä?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Vaihda näyttöä"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Vaihda näytönohjainta"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Vaihda palvelimen optioita"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Vaihda resoluutiota"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Näytä tiedot"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Kokeile uudelleen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Lopeta"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Säilytä muutokset?\n"
-"Nykyiset asetukset ovat:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Käynnistettäessä X:ää"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"X voidaan laittaa käynnistymään automaattisesti käynnistyksen yhteydessä.\n"
"Haluatko käynnistää X:n automaattisesti?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 väriä (8 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tuhatta väriä (15 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tuhatta väriä (16 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljoonaa väriä (24 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardia väriä (32 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kt"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kt"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mt tai enemmän"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Perus-VGA, 640x480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "SVGA, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-yhteensopiva, 1024x768 @ 87 Hz lomitettu (ei 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "SVGA, 1024x768 @ 87 Hz lomitettu, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Laajennettu SVGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Lomittamaton SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Korkeataajuuksinen SVGA, 1024x768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Näyttö, joka pystyy 1280x1024 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Näyttö, joka pystyy 1280x1024 @ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Näyttö, joka pystyy 1280x1024 @ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Näyttö, joka pystyy 1600x1200 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Näyttö, joka pystyy 1600x1200 @ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Ensimmäinen sektori käynnistysosiolla"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Levyn ensimmäinen sektori (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILOn asennus"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Minne haluat asentaa käyttöjärjestelmän lataajan?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub asennus"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO tekstipohjaisella valikolla"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO graafisella valikolla"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Käynnistä DOSista/Windowsista (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Käyttöjärjestelmän lataajan pääasetukset"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Käytettävä käyttöjärjestelmän lataaja"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Käyttöjärjestelmän lataajan asennus"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Käynnistyslaite"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ei toimi vanhoissa BIOSeissa)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Tiivis"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "tiivis"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Näyttötila"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Tauko ennen oletusjärjestelmän käynnistystä"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Salasana"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Rajoita komentorivioptioita"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "rajoita"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Tyhjennä /tmp jokaisella käynnistyskerralla"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tarkka muistin koko, jos tarpeen (löydettiin %d Mt)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Käytä montaa profiilia"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Anna muistin koko megatavuina"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Asetus ``Rajoita komentorivioptioita'' ei ole hyödyllinen ilman salasanaa"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Yritä uudelleen"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Salasanat poikkeavat toisistaan"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Käynnistysviesti"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Vapaa Firmware-viive"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Timeout ytimen käynnistyksessä"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Mahdollista käynnistys CD:ltä"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Mahdollista käynnistys OFilta"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Oletuskäyttöjärjestelmä?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -684,83 +542,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Tässä ovat asetustietueet.\n"
"Voit lisätä uusia tai muuttaa olemassaolevia."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Lisää"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Valmis"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Muokkaa"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Minkä tyyppisen tietueen haluat lisätä"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Muu käyttöjärjestelmä (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Muu käyttöjärjestelmä (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Muu käyttöjärjestelmä (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Kuva"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Juuri"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Liitä"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Luku-kirjoitus"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taulukko"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Turvaton"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Otsikko"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Oletus"
@@ -792,53 +650,75 @@ msgstr "Sinulla täytyy määritellä juuriosio"
msgid "This label is already used"
msgstr "Otsikko on jo käytössä"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Löysin %s %s liitännät"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Onko sinulla muita?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Onko koneessa %s liityntää?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Kyllä"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Katso laitteistotietoja"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Asetan ajuria %s ohjaimelle %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(moduli %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Voit antaa lisäasetuksia modulille %s.\n"
+"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
+"Esimerkiksi, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Moduulin optiot:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Mitä %s-ajuria kokeillaan?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -854,37 +734,15 @@ msgstr ""
"lisämääreitä vai annatko sen itse etsiä tarvitsemansa tiedot? Joskus haku\n"
"voi jumittaa tietokoneen, mutta se ei aiheuta vahinkoa."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automaattihaku"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Lisäasetukset"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Voit antaa lisäasetuksia modulille %s.\n"
-"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
-"Esimerkiksi, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Moduulin optiot:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -893,50 +751,55 @@ msgstr ""
"Modulin %s lataaminen epäonnistui.\n"
"Haluatko yrittää muilla asetuksilla?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "oikeudet X-ohjelmille"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "oikeudet rpm-työkaluihin"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "salli \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "oikeudet ylläpidollisiin tiedostoihin"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(lisätty jo %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Salasana on liian yksinkertainen"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Anna käyttäjätunnus"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita, `-' ja `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Käyttäjätunnus on jo lisätty"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Käyttäjätunnus on jo lisätty"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Lisää käyttäjä"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -945,32 +808,32 @@ msgstr ""
"Lisää käyttäjä\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Hyväksy käyttäjä"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Oikea nimi"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Käyttäjätunnus"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Komentotulkki"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Kuvake"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -979,119 +842,99 @@ msgstr ""
"tietokoneellesi.\n"
"Haluatko käyttää tätä ominaisuutta?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Valitse oletuskäyttäjä:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Valitse käytettävä kieli."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 "Voit valita kielet jotka ovat käytettävissä asennuksen jälkeen"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Kaikki"
# Asennuksen sivuvalikko
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Salli kaikille käyttäjille"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Mukautettu"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Ei jaettu"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paketti %s pitää asentaa. Haluatko asentaa sen?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Voit jakaa sekä NFS:llä että Samballa. Kumpaa haluat käyttää"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakollinen paketti %s puuttuu"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Peruuta"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Tervetuloa murtautujat"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Huono"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standardi"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Korkea"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Korkea"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidi"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1103,14 +946,14 @@ msgstr ""
"koneisiin\n"
"tai Internettiin. Koneessa ei ole salasanoja."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasanat ovat nyt käytössä mutta koneen käyttö verkossa ei ole suositeltua."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1120,59 +963,60 @@ msgstr ""
"käytetään Internettiin liitettynä. Järjestelmässä on "
"turvallisuustarkastuksia."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Tällä turvallisuustasolla järjestelmän käyttö palvelimena on mahdollista.\n"
"Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
"asiakkailta. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Pohjautuu edelliseen tasoon, mutta järjestelmä on kokonaan suljettu.\n"
"Turvallisuusasetukset ovat tiukimmillaan."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Valitse turvataso"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Turvataso"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Käytä libsafea palvelimille"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Kirjasto joka suojelee puskurin ylivuoto ja merkkijonon muotovirhehykkäyksiä "
"vastaan."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1197,7 +1041,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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
@@ -1211,7 +1055,7 @@ msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
#
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
@@ -1226,7 +1070,7 @@ msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
#
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Paina enter kaynnist~^D~^Dksesi valitun kaytt”j„rjestelm„n, 'e' muokataksesi"
@@ -1241,7 +1085,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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "komennot ennen k„ynnistyst„, tai 'c' komentoriville"
@@ -1255,27 +1099,27 @@ msgstr "komennot ennen k„ynnistyst„, tai 'c' komentoriville"
#
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Korostettu tietue k„ynnistet„„n automaattisesti %d sekunnissa."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "ei tarpeeksi tilaa /boot-hakemistossa"
#. -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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Työpöytä"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Käynnistysvalikko"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Et voi asentaa käyttöjärjestelmän lataajaa partitiolle %s\n"
@@ -1288,15 +1132,19 @@ msgstr "ohjeita ei ole vielä olemassa.\n"
msgid "Boot Style Configuration"
msgstr "Käynnistyksen tavan asetus"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Tiedosto"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Tiedosto/_Poistu"
+msgstr "/Tiedosto/Poistu"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1331,14 +1179,14 @@ msgstr "Yaboot-tila"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Tällä hetkellä käytössä oleva järjestelmälataaja on %s.\n"
"Valitse Aseta käynnistääksesi asennusohjelman."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Määrittele"
@@ -1348,7 +1196,7 @@ msgid "System mode"
msgstr "Järjestelmän tila"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Käytä X-Window-järjestelmää"
#: ../../bootlook.pm_.c:148
@@ -1359,16 +1207,18 @@ msgstr "Ei, en halua autologinia"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Kyllä, haluan autologinin (käyttäjä, ympäristö)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "Ok"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1414,7 +1264,7 @@ msgstr "Kuvankaappauksia ei voi tehdä ennen osiointia"
msgid "Screenshots will be available after install in %s"
msgstr "Kuvankaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ranska"
@@ -1422,7 +1272,7 @@ msgstr "Ranska"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgia"
@@ -1446,11 +1296,12 @@ msgstr "Norja"
msgid "Sweden"
msgstr "Ruotsi"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Alankomaat"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italia"
@@ -1458,7 +1309,7 @@ msgstr "Italia"
msgid "Austria"
msgstr "Itävalta"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Yhdysvallat"
@@ -1466,8 +1317,8 @@ msgstr "Yhdysvallat"
msgid "Please make a backup of your data first"
msgstr "Tee ensin varmuuskopio tiedoistasi"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lue tarkkaan!"
@@ -1480,11 +1331,12 @@ msgstr ""
"Jos aiot käyttää aboot:ia, varmista että jätät vapaata tilaa levyn alkuun\n"
"(2048 sektoria on tarpeeksi)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Virhe"
@@ -1492,11 +1344,11 @@ msgstr "Virhe"
msgid "Wizard"
msgstr "Velho"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Valitse toiminta"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1508,144 +1360,149 @@ msgstr ""
"Ehdotus: muuta ensimmäiseksi osion kokoa\n"
"(klikkaa osiota ja valitse sitten \"Uusi koko\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Klikkaa osiota"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Yksityiskohdat"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journaloitu FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Tyhjä"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Muut"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tiedostojärjestelmien tyypit:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Luo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tyyppi"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Käytä sen sijaan ``%s'':ää"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Poista"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Käytä ensin komentoa ``Irroita''"
# mat
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Vaihdettuasi osion %s tyyppiä kaikki sillä olevat tiedot häviävät"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Valitse osio"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Valitse toinen osio"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Poistu"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Vaihda asiantuntijatilaan"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Vaihda normaalitilaan"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Peruuta"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Jatka joka tapauksessa?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Lopeta tallentamatta"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Lopeta kirjoittamatta osiotalua?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Haluatko tallentaa muutokset tiedostoon /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automaattinen varaus"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Tyhjennä kaikki"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Lisäasetukset"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Kiintolevyn tiedot"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Kaikki primääriosiot käytetty"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Uusia osioita ei voida lisätä"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1653,31 +1510,31 @@ msgstr ""
"Voidaksesi luoda lisää osioita tuhoa yksi olemassaoleva osio jotta voisit "
"luoda laajennetun osion"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Tallenna osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Palauta osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Pelasta osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Uudelleenlataa osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Vaihdettavan median automaattinen liittäminen"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Valitse tiedosto"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1685,11 +1542,11 @@ msgstr ""
"Osiotaulun varmuuskopio ei ole saman kokoinen\n"
"Jatka silti?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Varoitus"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1697,124 +1554,131 @@ msgstr ""
"Aseta levyke asemaan\n"
"Kaikki levykkeen tiedot häviävät"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Yritän osiotalulun palautusta"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Yksityiskohtaiset tiedot"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Liitospaikka"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Optiot"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Uusi koko"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Siirrä"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Alusta"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Liitä"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Lisää RAIDiin"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Lisää LVM:iin"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Irroita"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Poista RAIDista"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Poista LVM:stä"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Muokkaa RAIDia"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Käytä loopback-tiedostoa"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Luo uusi osio"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Aloitussektori: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Koko Mt: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tiedostojärjestelmä: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Liitospaikka: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Etuoikeus: "
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
# mat
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Poista loopback-tiedosto?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Muuta osiotyyppiä"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Minkä tiedostojärjestelmän haluat?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Vaihdan ext2:sta ext3:een"
# mat
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Minne haluat liittää loopback-tiedoston %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Minne haluat liittää laitteen %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1822,126 +1686,131 @@ msgstr ""
"Ei voida poistaa liitospaikkaa koska osiota käytetään loopback-tilassa.\n"
"Poista loopback-tiedosto ensin"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Lasken FAT-tiedostojärjestelmän rajoja"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Muutan kokoa"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Tämän osion kokoa ei voi muuttaa"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Kaikki osion tiedot tulee varmuuskopioida"
# mat
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Osion %s koon muuttamisen jälkeen kaikki osion tiedot tuhoutuvat"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Valitse uusi koko"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Uusi koko (Mt): "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Mille levylle haluat siirtää?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektori"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Mille sektorille haluat siirtää?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Siirrän"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Siirrän osiota..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Valitse olemassaoleva RAID johon lisätään"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "uusi"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Valitse olemassaoleva LVM johon lisätään"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM:n nimi?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Osiota ei voida käyttää loopback-osiona"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback tiedostonimi: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Anna tiedostonimi"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Tiedosto on jo käytössä toiselle loopbackille, valitse toinen"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Tiedosto on jo olemassa. Käytä sitä?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Liittämisen optiot"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Useita"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "laite"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "taso"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "palan koko"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Varo: tämä on vaarallinen toiminto"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Minkä tyyppinen osiointi?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paketti %s pitää asentaa. Haluatko asentaa sen?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1953,7 +1822,7 @@ msgstr ""
"Joko käytät LILOa ja se ei toimi, tai et käytä LILOa, jolloin et tarvitse /"
"boot -hakemistoa"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1964,7 +1833,7 @@ msgstr ""
"eikä sinulla ole /boot osiota.\n"
"Jos haluat käyttää LILO-käynnistyksenhallintaa, lisää Linuxille /boot osio."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1974,132 +1843,132 @@ msgstr ""
"Mikään käynnistyslataaja ei osaa käsitellä tätä ilman /boot -osiota.\n"
"Lisää /boot -osio, jos haluat käyttää liloa tai grubia"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Levyn %s osiotaulu kirjotetaan levylle!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Sinun täytyy käynnistää kone uudelleen ennen kuin muutos tulee voimaan"
# mat
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Kaikki osiolla %s olevat tiedot häviävät osion alustuksen yhteydessä"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Alustan"
# mat
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Alustan loopback-osiota %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Alustan osiota %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Piilota tiedostot"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Siirrä tiedostot uuteen osioon"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Hakemisto %s sisältää jo jotakin tietoa\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Siirrän tiedostoja uudelle osiolle"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopioidaan %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Poistetaan %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "osio %s tunnetaan nyt nimellä %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Laite: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-asema: %s (vain arvaus)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tyyppi: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nimi: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Alkaa: sektori %s\n"
# mat
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Koko: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoria"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sylinteristä %d sylinteriin %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Alustettu\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ei alustettu\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Liitetty\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2108,7 +1977,7 @@ msgstr ""
"Loopback tiedosto(t):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2116,27 +1985,27 @@ msgstr ""
"Osiolta käynnistetään oletuksena\n"
" (MS-DOS käynnistys, ei lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Taso %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Palan koko %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-levyt %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-tiedoston nimi: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2148,7 +2017,7 @@ msgstr ""
"ajuriosio. Sinun olisi kaiketi\n"
"parasta jättää se rauhaan.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2160,64 +2029,64 @@ msgstr ""
"osio on järjestelmäsi\n"
"kaksoiskäynnistämiseksi.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Koko: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s sylinteriä, %s lukupäätä, %s sektoria\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Tietoja: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-levyt %s\n"
# mat
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Osion tyyppi: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "väylässä %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Optiot: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Tiedostojärjestelmän salausavain"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Valitse tiedostojärjestelmäsi salausavain"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Salausavain on liian yksinkertainen (sen pitää olla ainakin %d merkkiä pitkä)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Salausavaimet eivät täsmää"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Salausavain"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Salausavain (uudelleen)"
@@ -2226,35 +2095,65 @@ msgid "Change type"
msgstr "Muuta tyyppiä"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Klikkaa mediaa"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Tunnistustapa"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Käyttäjätunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Käyttäjätunnus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS-alue"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Hae palvelimet"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s:n alustus %s:ta epäonnistui"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "en osaa alustaa %s:ää tyyppiä %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck epäonnistui virhekoodilla %d tai signaalilla %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "virhe irroitettaessa %s: %s"
@@ -2271,68 +2170,323 @@ msgstr ""
msgid "server"
msgstr "palvelin"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Et voi käyttää JFS:ää alle 16 Mt osioilla"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Et voi käyttää ReiserFS:ää alle 32 Mt osioilla"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Liitospaikan pitää alkaa /-merkillä."
# mat
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "On jo olemassa osio, jonka liitospaikka on %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Et voi käyttää LVM loogista taltiota liitekohtana %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Tämän hakemiston pitäisi olla juuritiedostojärjestelmässä"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Tarvitset tähän liitoskohtaan oikean tiedostojärjestelmän (ext2, reiserfs)\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Et voi käyttää salattua tiedostojärjestelmää liitoskohdassa %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Vapaa tila ei riitä automaattiseen varaukseen"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Ei mitään tekemistä"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"On tapahtunut virhe - ei löytynyt ainuttakaan laitetta, joille voi luoda "
"uuden tiedostojärjestelmän. Tarkista laitteistosi korjataksesi ongelman"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Sinulla ei ole yhtään osiota!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Tee automaattinen tunnistus"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Yleinen"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kortin muisti (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "lataa asetukset"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Muuta tyyppiä"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Lopeta"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ohje"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ohje"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ohje/_Tietoja..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Hiiri"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kortin muisti (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Peruuta"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Hiiri"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Kuvaus"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Tunnistustapa"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Valitse tiedosto"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Yhdyskäytävän laite"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 näppäintä"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Kiintolevyjen tunnistus"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Katso laitteistotietoja"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Näytä tiedot"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+# Asennuksen sivuvalikko
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Hiiren määrittely"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "löydetty portista %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Odota hetki"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekuntia"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Poistetaan tulostin \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Automaattihaku"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2346,7 +2500,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2462,9 +2616,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2683,7 +2836,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2695,9 +2848,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2744,21 +2896,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2774,9 +2925,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Tässä vaiheessa sinun pitää valita mihin haluat asentaa Mandrake Linux\n"
"-käyttöjärjestelmän. Jos kiintolevysi on tyhjä tai olemassaoleva "
@@ -2883,9 +3034,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3037,38 +3187,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3259,11 +3403,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3325,7 +3469,7 @@ msgstr ""
" Älä valitse tätä asennusluokkaa, ellet ole aivan varma, mitä olet "
"tekemässä."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3355,7 +3499,7 @@ msgstr ""
"Paina \"Lisää\"-painiketta saadaksesi täydellisen listan tuetuista "
"näppäimistöistä. "
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3382,7 +3526,7 @@ msgstr ""
"ylimääräiset\n"
"kielet, paina \"Ok\"-painiketta jatkaaksesi."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3409,7 +3553,7 @@ msgstr ""
"hiiri ei toimi kunnolla, paina välilyöntiä tai enteriä peruttaaksesi, minkä\n"
"jälkeen voit valita uudelleen."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3417,23 +3561,23 @@ msgstr ""
"Valitse oikea portti. Esimerkiksi \"COM1\" portti Windowsissa\n"
"on nimetty \"ttyS0\":ksi GNU/Linuxissa."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3455,7 +3599,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3477,7 +3621,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3485,7 +3629,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3506,7 +3650,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3529,7 +3673,7 @@ msgstr ""
"tuhoa kyseiset kohdat. Mutta että siinä tapauksessa tarvitset itse\n"
"käynnistyslevykettä päästäksesi kyseisiin käyttöjärjestelmiin!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3543,29 +3687,28 @@ msgstr ""
"Jos et tiedä tarkalleen mitä olet tekemässä, valitse \"Levyn ensimmäinen\n"
"sektori (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3574,7 +3717,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3600,7 +3743,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX hakee koneeseen asennettuja PCI-väyläisiä SCSI-laitteita. \n"
@@ -3631,7 +3774,7 @@ msgstr ""
"(jos\n"
"se on asennettu tietokoneeseesi)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3641,9 +3784,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3655,7 +3797,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3681,7 +3823,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3708,18 +3850,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3727,12 +3868,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3748,7 +3888,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3758,7 +3898,7 @@ msgstr ""
"Ole varovainen, koska kaikki asemalla oleva tieto tuhoutuu eikä ole enää\n"
"palautettavissa!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3776,7 +3916,7 @@ msgstr ""
"Paina \"Peruuta\" keskeyttääksesi tämän toiminnon ilman että menetät\n"
"mitään kiintolevyllä ollutta tietoa ja osoita."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3784,12 +3924,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Sinun täytyy myös alustaa %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3814,20 +3954,20 @@ msgstr ""
"\n"
"Haluatko todella asentaa nämä palvelimet?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Aseta tyhjä FAT-alustettu levyke levyasemaan %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Tämä levyke ei ole FAT-alustettu"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3835,7 +3975,7 @@ msgstr ""
"Käyttääksesi tätä \"tallennetut paketit\" valintaa, käynnistä asennus "
"optiolla \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Virhe lukiessa tiedostoa %s"
@@ -3866,7 +4006,7 @@ msgstr "Sinulla tulee olla heittovaihtotiedosto"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3874,59 +4014,59 @@ msgstr ""
"\n"
"Jatka kuitenkin?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Sinulla pitää olla FAT-osio liitettynä hakemistoon /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Käytä tyhjää tilaa"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Ei tarpeeksi tilaa uusien osioiden luomiseksi"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Käytä olemassa olevia osioita"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Ei ole olemassa olevaa osiota käytettäväksi"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Käytä Windows-osiota loopback-tiedostona"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Mille osiolle haluat laittaa Linux4Win:in?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Valitse koot"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Juuriosion koko Mt: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Sivutusosion koko Mt: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Käytä tyhjää tilaa Windows-osiolla"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Minkä osion kokoa haluat muuttaa?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Lasken Windows-tiedostojärjestelmän rajoja"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3935,12 +4075,15 @@ msgstr ""
"FAT-järjestelmän koon muuttaja ei osaa käsitellä osiotasi,\n"
"saatiin seuraava virhe: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Windows-osiosi on liian pirstoutunut, mene Windowsiin ja aja \"defrag\" ensin"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3961,55 +4104,55 @@ msgstr ""
"Samalla suosittelen ottamaan varmuuskopiot tärkeistä tiedoista.Kun olet "
"varma, paina Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Kuinka paljon tilaa haluat säilyttää Windowsilla"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "osio %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-tiedostojärjestelmän koon muuttaminen epäonnistui: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Ei ole FAT-osioita, joiden kokoa voisi muuttaa tai käyttää loopback-"
"tiedostoina (tai osiot ovat täynnä)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Tyhjennä koko levy"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Poista Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Sinulla on enemmän kuin yksi kiintolevy. Mille haluat asentaa Linuxin?"
# mat
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "KAIKKI olemassaolevat osiot ja niissä oleva tieto tuhoutuu asemalta %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Mukautettu levyn osiointi"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Käytä fdiskiä"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4018,11 +4161,11 @@ msgstr ""
"Voit nyt osioda kiintolevysi %s\n"
"Kun olet valmis, älä unohda tallettaa asetuksia komennolla `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Sinulla ei ole tarpeeksi tilaa Windows-osiollasi"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ei ole tarpeeksi tilaa asentamiseen"
@@ -4031,16 +4174,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX-Osiointivelho löysi seuraavat ratkaisut:"
# mat
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Osiointi epäonnistui: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Käynnistän verkkoa"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Ajan alas verkkoa"
@@ -4052,12 +4195,12 @@ msgstr ""
"Tapahtui virhe, sitä ei voida käsitellä kunnolla.\n"
"Jatka omalla riskilläsi."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Kahdentunut liitospaikka %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4069,12 +4212,12 @@ msgstr ""
"Tarkista cdrom Linux-koneessa käyttämällä \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
# mat
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Tervetuloa %s:n"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Ei levykeasemaa käytettävissä"
@@ -4084,9 +4227,9 @@ msgstr "Ei levykeasemaa käytettävissä"
msgid "Entering step `%s'\n"
msgstr "Siirryn vaiheeseen `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4097,200 +4240,156 @@ msgstr ""
"paina `F1' kun\n"
"käynnistät asennusohjelmaa CDROM-asemasta. Tämän jälkeen kirjoita `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Asennusluokka"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Valitse yksi seuraavista asennusluokista:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Valitsemiesi ryhmien kokonaiskoko on suunnilleen %d Mt.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Jos haluat asentaa vähemmän kuin tämä koko,\n"
-"valitse prosenttiosuus paketeista jonka haluat asentaa.\n"
-"\n"
-"Pieni prosenttiosuus asentaa vain tärkeimmät paketit,\n"
-"100%% osuus asentaa kaikki paketit."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sinulla on levyllä tilaa vain %d%% paketeista\n"
-".Jos haulat asentaa vähemmän kuin tämän osan,\n"
-"valitse prosenttiosuus paketeista jotka haluat asentaa.\n"
-"Pieni prosentti asentaa vain tärkeimmät paketit, %d%%\n"
-" prosenttiosuus asentaa niin monta pakettia kuin on mahdollista."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Voit valita paketit tarkemmin seuraavassa vaiheessa"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Prosenttiosuus asennettavista paketeista"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Pakettiryhmien valinta"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Yksittäisten pakettien valinta"
# mat
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Koko yhteensä: %d / %d Mt"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Viallinen paketti"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Koko: %d Kt\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Tärkeys: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Et voi asentaa tätä pakettia, koska levyllä ei ole tarpeeksi tilaa sen "
"asentamiseksi"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Seuraavat paketit asennetaan"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Seuraavat paketit poistetaan"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Et voi valita/poistaa tätä pakettia"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Tämä on pakollinen paketti, sitä ei voida poistaa valinnoista"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Tämä paketti tulee päivittää\n"
"Oletko varma että haluat poistaa valinnan?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Et voi poistaa tämän paketin valintaa. Paketti pitää päivittää."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Näytä automaattisesti valitut paketit"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Asenna"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Lataa/Tallenna levykkeelle"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Päivitän pakettien valintaa"
# Asennuksen sivuvalikko
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimaalinen asennus"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Valitse asennettavat paketit"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Asennan"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Arvioin aikaa"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Jäljellä "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Valmistelen asennusta"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakettia"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Asennan pakettia %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Hyväksy"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Hylkää"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4305,17 +4404,17 @@ msgstr ""
"Jos sinulla ei ole levyä, paina Peruuta välttääksesi asennukset tältä "
"levyltä."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Jatka kuitenkin?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Tapahtu virhe järjestettäessä paketteja:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Tapahtu virhe asennettaessa paketteja:"
@@ -4390,11 +4489,11 @@ msgstr "Tapahtui virhe"
msgid "Do you really want to leave the installation?"
msgstr "Haluatko todella poistua asennuksesta?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisenssin hyväksyminen"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4409,7 +4508,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4515,109 +4614,113 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Näppäimistö"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Valitse näppäimistösi asettelu."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Tässä on koko lista olemassa olevista näppäimistöistä"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Valitse asennuksen luokka?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Asenna/Päivitä"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Onko tämä asennus vai päivitys?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Suositeltu"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Asiantuntija"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Päivitä"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Päivitä vain paketit"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Valitse hiiren tyyppi."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Hiiren portti"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Mihin sarjaporttiin hiiresi on liitetty."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Näppäinemulaatio"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "2. näppäimen emulaatio"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "3. näppäimen emulaatio"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Asetan PCMCIA kortteja...."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Asetan IDE-levyä"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ei vapaita osioita"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Tarkistan osioita löytääkseni liitoskohdat"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Valitse liitospaikat"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4629,7 +4732,7 @@ msgstr ""
"\n"
"Hyväksytkö kaikkien osioiden menettämisen?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4637,7 +4740,7 @@ msgstr ""
"DiskDrake ei pystynyt lukemaan osiotaulua oikein.\n"
"Jatka omalla vastuullasi!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4646,76 +4749,79 @@ msgstr ""
"käynnistääksesi järjestelmän, sinun pitää luoda käynnistyslohko-osio "
"DiskDrakessa."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Päivitykseen tarvittavaa juuriosiota ei löytynyt"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Juuriosio"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Mikä on järjestelmäsi juuriosio (/) ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sinun tulee käynnistää järjestelmä uudelleen jotta muutokset tulevat voimaan"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Valitse alustettavat osiot"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Tarkista vialliset lohkot?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Alustan osioita"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Luon ja alustan tiedostoa %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Heittovaihtotiedosto ei ole riittävän suuri, suurenna sitä"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Etsin saatavilla olevia paketteja"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Etsin saatavilla olevia paketteja"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Etsin päivitettäviä paketteja"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Järjestelmässäsi ei ole riittävästi tilaa asennukseen tai päivitykseen (%d > "
"%d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Täydellinen (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimi (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Suositeltu (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4723,35 +4829,35 @@ msgstr ""
"Lataa tai tallenna pakettien valinta levykkeelle.\n"
"Muoto on sama kuin auto_install-toiminnon luomilla levykkeillä."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Lataa levykkeeltä"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Ladataan levykkeeltä"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Aseta levyke, jossa on pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Tallenna levykkeelle"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Valittu koko on suurempi kuin olemassa oleva levytila"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Asennuksen tyyppi"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -4759,19 +4865,19 @@ msgstr ""
"Et ole valinnut yhtäkään pakettiryhmää\n"
"Valitse haluamasti minimaalinen asennus"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "X:llä"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Perusdokumentaation kanssa (suositeltu!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Pienin mahdollinen asennus (erityisesti ei urpmia)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4781,16 +4887,16 @@ msgstr ""
"Jos sinulla ei ole mitään levyistä, paina Peruuta.\n"
"Jos jotkut levyistä puuttuvat, poista niiden valinnat, ja paina OK."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom nimeltään \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Valmistelen asennusta"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4799,24 +4905,24 @@ msgstr ""
"Asennan pakettia %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Asennuksen jälkeiset toiminnot"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
# mat
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Aseta moduulien päivityslevyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4890,13 +4996,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -4908,152 +5016,182 @@ msgstr ""
"\n"
"Haluatko asentaa päivitykset ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Otan yhteyttä Mandrake Linuxin sivustolle saadakseni listan olemassaolevista "
"peileistä"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Valitse peilijärjestelmä josta paketit haetaan"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Yhdistän peilijärjestelmään hakeakseni uusimman pakettilistan"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Mikä on järjestelmäsi aikavyöhyke?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Laitteistokello asetettu GMT-aikaan"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon synkronisointi (käyttäen NTP:tä)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-palvelin"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Ei kirjoitinta"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Onko sinulla muita?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Johtopäätös"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Hiiri"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Aikavyöhyke"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Kirjoitin"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-kortti"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Äänikortti"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kortti"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Paikalliset tiedostot"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ylläpitäjän salasana"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Ei salasanaa"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Salasana on liian yksinkertainen (sen tulee olla ainakin %d merkkiä pitkä)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tunnistustapa"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Tunnistus LDAPilla"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP perus-dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-palvelin"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Tunnistus NIS:llä"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-alue"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Tunnistus LDAPilla"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Hae Windowsin kirjasimet"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP-palvelin"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5080,19 +5218,19 @@ msgstr ""
"Jos haluat luoda käynnistyslevykkeen järjestelmääsi, aseta levyke\n"
"ensimmäiseen asemaan ja paina \"Ok\","
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Ensimmäinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Toinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Ohita"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5117,7 +5255,7 @@ msgstr ""
"Haluatko luoda käynnistyslevykkeen järjestelmääsi?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5126,28 +5264,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Levyajuria ei ole saatavilla"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Valitse levyasema jolla luot käynnistyslevykkeen"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Aseta levyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Luon käynnistyslevykettä"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Valmistelen käyttöjärjestelmän lataajaa"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5159,11 +5297,11 @@ msgstr ""
"Asennus jatkuu, mutta sinun täytyy käyttää BootX:ää\n"
"koneesi käynnistämiseen"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Haluatko käyttää aboot:ia?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5172,15 +5310,15 @@ msgstr ""
"yritä pakkoasennusta vaikka se tuhoaa ensimmäisen osion?"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Asennan käyttöjärjestelmän lataajaa"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Järjestelmälataajan asennus epäonnistu. Seuraava virhe tapahtui:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5200,18 +5338,17 @@ msgstr ""
"komentokehoite."
# mat
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Aseta tyhjä levyke levyasemaan %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Valmistelen automaattiasennuslevykettä"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5221,7 +5358,8 @@ msgstr ""
"\n"
"Haluatko todella lopettaa?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5232,7 +5370,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5247,17 +5385,21 @@ msgstr ""
"korjattujen virheiden listan osoitteesta:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Järjestelmän asettamisesta saat tietoja virallisen Linux Mandraken\n"
"käyttäjäoppaan jälkiasennuskappaleesta."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Valmistelen automaattista asennuslevykettä"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5271,15 +5413,15 @@ msgstr ""
"\n"
"Ehkä haluat mieluummin toistaa asennuksen.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automaattinen"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Toista"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Yksittäisten pakettien valinta"
@@ -5306,44 +5448,24 @@ msgstr ""
msgid "Choose a file"
msgstr "Valitse tiedosto"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Lisäasetukset"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Perusasetukset"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Odota hetki"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Tietoja"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Laajenna puu"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sulje puu"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Vaihda tasaisen ja ryhmäjärjestyksen välillä"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Huono valinta, yritä uudelleen\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Valintasi? (oletus %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5352,31 +5474,35 @@ msgstr ""
"Kohdat, jotka sinun pitää täyttää:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Valintasi? (0/1, oletus '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Painike '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Haluatko klikata tätä painiketta? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Valintasi? (oletus '%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> On monta asiaa, joista valita (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5386,7 +5512,7 @@ msgstr ""
"tai paina vain Enter jatkaaksesi.\n"
"Valintasi? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5395,328 +5521,328 @@ msgstr ""
"=> Huomaa, nimike vaihtui:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Lähetä uudelleen"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tsekki (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espanja"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Suomi"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Ranska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norja"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Puola"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Venäjä"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Ruotsi"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK näppäimistö"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US näppäimistö"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albaani"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeenia (vanha)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeenia (kirjoituskone)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneettinen)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulgaria (foneettinen)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgaria (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilia"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Valkovenäjä"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Sveitsi (Saksalainen järjestys)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Sveitsi (Ranskalainen järjestys)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tsekki (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Saksa (ei kuolleita näppäimiä)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Tanska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Norja (Dvorak)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Ruotsi)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (\"Venäläinen\"-järjestys)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (\"Latin\"-järjestys)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Kreikka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Unkari"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatia"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israeli"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israeli (Foneettinen)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islanti"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italia"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japani 106-näppäiminen"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korealainen näppäimistö"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinalainen amerikka"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Liettua AZERTY (vanha)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Liettua AZERTY (uusi)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Liettua \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Liettua \"foneettinen\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonia"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollanti"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Puola (qwerty järjestys)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Puola (qwertz järjestys)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romania (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romania (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Venäjä (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakia (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakia (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai-näppäimistö"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik-näppäimistö"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkki (perinteinen \"F\"-malli)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkki (perinteinen \"Q\"-malli)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US näppäimistö (kansainvälinen)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamilainen \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavia (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
#, fuzzy
msgid "Left \"Windows\" key"
msgstr "Hae Windowsin kirjasimet"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5729,7 +5855,32 @@ msgstr "Rengasmaisia liitoksia %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Poista loogiset osiot ensin\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Puhelinnumero"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+# Asennuksen sivuvalikko
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Levyjen osiointi"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr "PCMCIA:ta ei tueta enää 2.2-sarjan ytimissä. Käytä 2.4 ydintä."
@@ -5770,10 +5921,6 @@ msgstr "1 näppäin"
msgid "Generic 2 Button Mouse"
msgstr "Yleinen 2-nappinen hiiri"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Yleinen"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rulla"
@@ -5838,38 +5985,54 @@ msgstr "ei mikään"
msgid "No mouse"
msgstr "Ei hiirtä"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Testaa hiiri"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Aktivoidaksesi hiiren,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "PYÖRITÄ HIIREN RULLAA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Loppu"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Seuraava ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Edellinen"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Onko tämä oikein?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Tietoja"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Laajenna puu"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sulje puu"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Vaihda tasaisen ja ryhmäjärjestyksen välillä"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ota yhteys internettiin"
@@ -5916,7 +6079,7 @@ msgstr ""
"Ethernet-verkkokorttia ei löytynyt järjestelmästä.\n"
"Ei voida asentaa tämän tyyppistä yhteyttä."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Valitse verkkoliittymä"
@@ -5929,7 +6092,7 @@ msgstr "Valitse mitä verkkokorteista haluat käyttää internetiin liittymiseen"
msgid "no network card found"
msgstr "verkkokorttia ei löytynyt"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Asetan verkkoa"
@@ -5945,15 +6108,15 @@ msgstr ""
"Koneesi nimen pitäisi olla täysin laillinen nimi, kuten\n"
"\" minunkone.omapaikka.net\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Koneen nimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Verkkoasetusten velho"
@@ -6008,7 +6171,7 @@ msgstr "ISDN:n asetus"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Valitse palveluntarjoajasi.\n"
" Jos se ei ole listassa, valitse `Ei listattu'"
@@ -6027,14 +6190,14 @@ msgstr "Muun maailman käyttämä protokolla"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Muun maailman käyttämä protokolla \n"
" ei D-kanavaa (leased lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Mitä protokollaa haluat käyttää?"
#: ../../network/isdn.pm_.c:199
@@ -6058,7 +6221,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Jos sinulla on ISA-kortti, seuraavien arvojen pitäisi olla oikeat.\n"
@@ -6074,13 +6238,13 @@ msgid "Continue"
msgstr "Jatka"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Mikä ISDN-kortti sinulla on?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Olen havainnut ISDN PCI-kortin, mutta en tunnista tyyppiä. Valitseyksi "
"seuraavassa ruudussa olevista korteista."
@@ -6097,47 +6261,47 @@ msgstr "Valitse sarjaportti, johon modeemisi on kytketty."
msgid "Dialup options"
msgstr "Soittoasetukset"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Yhteyden nimi"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Puhelinnumero"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Käyttäjä ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Script-pohjainen"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminaalipohjainen"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Verkkoalueen nimi"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Ensimmäinen nimipalvelin (ei pakollinen)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Toinen nimipalvelin (ei pakollinen)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6145,7 +6309,7 @@ msgstr ""
"\n"
"Voit joko katkaista yhteyden tai asettaa sen uudelleen."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6153,11 +6317,11 @@ msgstr ""
"\n"
"Voit asettaa yhteytesi uudelleen."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Olet parasta aikaa yhteydessä internettiin."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6165,33 +6329,33 @@ msgstr ""
"\n"
"Voit joko ottaa yhteyden internettiin tai asettaa yhteyden uudelleen."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Et ole juuri nyt yhteydessä internettiin."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Ota yhteys"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Katkaise yhteys"
# Asennuksen sivuvalikko
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Aseta verkkoyhteys"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetyhteyden muodostus ja asetukset"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Asetamme seuraavaksi %s-yhteyden."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6210,12 +6374,12 @@ msgstr ""
"\n"
"Paina Ok jatkaaksesi."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Verkon asetukset"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6227,9 +6391,9 @@ msgstr ""
"Paina Ok säilyttääksesi nykyiset asetukset tai peruuta asettaaksesi "
"internet- ja verkkoasetukset uudelleen.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6239,66 +6403,72 @@ msgstr ""
"Seuraavassa vaiheessa määritellään sinun internet- / verkkoasetukset.\n"
"Jos et halua käyttää automaattista tunnistusta, poista kyseinen valinta.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Valitse uusi asetusprofiili"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Käytä automaattista tunnistusta"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Asiantuntijatila"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Etsin laitteita...."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Tavallinen modeemiyhteys"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "löydetty portista %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN-yhteys"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "löydetty %s:sta"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL-yhteys"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "löydetty seuraavasta liitännästä: %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kaapeliyhteys"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kaapeliyhteys havaittu"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Lähiverkko"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "seuraavat ethernet-verkkokortit löydetty"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Valitse yhteys, jonka haluat asettaa"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6308,23 +6478,23 @@ msgstr ""
"Valitse se, jota haluat käyttää.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetyhteys"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Haluatko ottaa yhteyden koneen käynnistyksen yhteydessä?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Verkon asetukset"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Verkko pitää käynnistää uudelleen"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6335,7 +6505,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6345,7 +6515,7 @@ msgstr ""
"\n"
"Asetukset tulevat käyttöön myös itse järjestelmässä.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6353,19 +6523,19 @@ msgstr ""
"Kun tämä on tehty, suosittelemme käynnistämään X-ympäristön\n"
"uudelleen välttääksesi järjestelmän nimen vaihdoksesta tulevat ongelmat."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Ongelmia asettamisen aikana.\n"
"Testaa yhteytesi net_monitor- tai mcc-työkalulla. Jos yhteytesi ei toimi, "
"voit käynnistää asetustyökalun uudelleen"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6374,7 +6544,7 @@ msgstr ""
"Hyväksy, jos haluat pitää laitteen asetukset sellaisina, kun ne olivat.\n"
"Alla olevien kohtien muokkaaminen korvaa voimassa olevat asetukset."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6383,38 +6553,43 @@ msgstr ""
"Anna koneen IP-asetukset. Kukin kohta tulee syöttää IP-osoitteena,\n"
"pisteillä eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Asetan verkkolaitetta %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (ajuri %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP-osoite"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Verkkopeite"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automaattinen IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6425,64 +6600,64 @@ msgstr ""
"Koneesi nimen pitäisi olla täydellinen, kuten ``minunkone.yritys.fi''.\n"
"Voit antaa myös yhdyskäytävän IP-osoitteen jos sinulla on sellainen."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Nimipalvelin"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Yhdyskäytävä (esim. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Yhdyskäytävän laite"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Proxyjen asettaminen"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP-välityspalvelin:"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP-välityspalvelin:"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Selvitä verkkokortti-id (hyödyllistä sylimikroille)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Välityspalvelimen tulee olla muotoa http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Välityspalvelimen tulee olla muotoa ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internetin asetukset"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Haluatko kokeilla internetyhteyttä nyt?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testaan yhteyttäsi..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Järjestelmä on nyt internetissä."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Turvallisuussyistä yhteys suljetaan nyt."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6490,112 +6665,117 @@ msgstr ""
"Järjestelmä ei näytä olevan internetissä.\n"
"Yritä muuttaa internet-asetuksia."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Yhteyden asetus"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Valitse alla olevista kohdista"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kortin IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kortin muisti (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kortin IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kortin IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kortin IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Henkilökohtainen puhelinnumerosi"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Palveluntarjoajan nimi (esim: tarjoaja.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Palveluntarjoajan puhelinnumero"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Yhteydentarjoajan dns 1 (vapaaehtoinen)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Yhteydentarjoajan dns 2 (vapaaehtoinen)"
# Asennuksen sivuvalikko
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Valitse maasi"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Soittotila"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Yhteyden nopeus"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Yhteyden aikaraja (sekunneissa)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Käyttäjätunnus (käyttäjän nimi)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Salasana"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "liittäminen epäonnistui: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Laajennettua osiotyyppiä ei ole tuettu tässä ympäristössä"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Sinulla on reikä osiotaulussasi eikä sitä voida käyttää.\n"
"Ainoa ratkaisu on siirtää primääriosioita siten että reikä on ennen "
"laajennettuja osioita"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Palautus tiedostosta %s epäonnistui: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Huono varmuuskopiotiedosto"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6605,186 +6785,186 @@ msgstr ""
"Tiedon oikeellisuuden tarkistus epäonnistui.\n"
"Kaikki asemalle kirjoitettu tieto muuttuu tunnistamattomaksi"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "pakollinen"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "tärkeä"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "erittäin hyvä"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "hyvä"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "ehkä"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Paikallinen tulostin"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Ulkoinen tulostin"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Tulostin ulkoisella CUPS-palvelimella"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Tulostin ulkoisella lpd-palvelimella"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Verkkotulostin (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Tulostin NetWare-palvelimella"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Syötä tulostinlaitteen osoite (URI)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Putkita työ käskylle"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Tuntematon malli"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Paikalliset tulostimet"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Ulkoiset tulostimet"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " rinnakkaisliitännässä \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB tulostin \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", monikäyttölaite rinnakkaisportissa \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", monikäyttölaite USB:ssa"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", monitoimilaite HP JetDirectissä"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", monitoimilaite"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", tulostetaan: %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "LPD-palvelimella \"%s\", tulostin \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "Windows-palvelimella \"%s\", jako \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "Novell-palvelimella \"%s\", tulostin \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", käyttäen komentoa %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Raakatulostin (ei ajuria)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(%s:ssa)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(tällä koneella)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-palvelimella \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Oletus)"
@@ -6806,12 +6986,12 @@ msgstr ""
"Tulostimia, jotka ovat ulkoisella CUPS-palvelimella, ei tarvitse asettaa\n"
"tässä; nämä tulostimet tunnistetaan automaattisesti."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Asetustyökalut"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
@@ -6851,7 +7031,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-osoitteen tullee olla muotoa 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Portin numeron pitäisi olla kokonaisluku!"
@@ -6859,7 +7039,7 @@ msgstr "Portin numeron pitäisi olla kokonaisluku!"
msgid "CUPS server IP"
msgstr "CUPS-palvelimen IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Portti"
@@ -6867,20 +7047,12 @@ msgstr "Portti"
msgid "Automatic CUPS configuration"
msgstr "CUPSin automaattinen asettaminen"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Etsin laitteita ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Kokeile portteja"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Lisää uusi tulostin"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6893,13 +7065,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Paikallinen tulostin"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6917,11 +7089,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Etsi tulostimet"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6935,11 +7107,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Tulostimien automaattinen löytäminen"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6949,33 +7121,37 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Tee automaattinen tunnistus"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Aseta tulostin manuaalisesti"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Kokeile portteja"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Löydetty %s:sta"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Tulostin rinnakkaisportissa \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-tulostin \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6983,11 +7159,11 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Sinun täytyy syöttää laitteen tai tiedoston nimi!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -6995,19 +7171,19 @@ msgstr ""
"Paikallisia tulostimia ei löytynyt!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7015,7 +7191,7 @@ msgstr ""
"Seuraava tulostin löydettiin, jos se ei ole se, jonka haluat asettaa, syötä "
"laite- tai tiedostonimi syöteriville"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7023,7 +7199,7 @@ msgstr ""
"Tässä on lista löydetyistä tulostimista. Valitse se tulostin, jonka haluat "
"asettaa tai syötä laite- tai tiedostonimi syöteriville"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7031,7 +7207,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7039,7 +7215,7 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7047,11 +7223,11 @@ msgstr ""
"Valitse portti, johon tulostimesi on kytketty tai syötä laitteen tai "
"tiedoston nimi syöteriville"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Valitse portti, johon tulostimesi on kytketty."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7059,50 +7235,62 @@ msgstr ""
" (Rinnakkaisportit: /dev/lp0, /dev/lp1, ..., vastaavat LPT1:, LPT2:, ..., 1. "
"USB-tulostin: /dev/usb/lp0, 2. USB-tulostin: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Sinun täytyy valita tai syöttää tulostinlaite!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Manuaalinen asettaminen"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Asennetaan HPOJ-pakettia..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Tarkistetaan laite ja asetetaan HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Asennetaan SANE-paketteja..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Asennan paketteja..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skannataan HP-monikäyttölaitteella"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skannataan HP-monikäyttölaitteella"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Asetetaan tulostusportti CUPSin saataville..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Luetaan tulostintietokantaa ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Ulkoisen lpd-palvelimen tulostimen parametrit"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7110,27 +7298,27 @@ msgstr ""
"Jotta voisit käyttää ulkoista lpd-tulostinta, sinun pitäisi syöttää "
"tulostuspalvelimen verkkonimi sekä tulostimen nimi kyseisellä palvelimella."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Palvelimen verkkonimi"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Ulkoisen tulostimen nimi"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Palvelimen verkkonimi puuttuu!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Ulkoisen tulostimen nimi puuttuu!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7142,35 +7330,35 @@ msgstr ""
"tulostuspalvelimen IP-osoite, tulostimen jakonimi sekä soveltuva "
"käyttäjätunnus, salasana ja työryhmä-tieto."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-palvelimen nimi"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-palvelimen IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Jakonimi"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Työryhmä"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Joko palvelimen nimi tai IP-numero on annettava!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Samba-jaon nimi puuttuu!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7194,7 +7382,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7203,7 +7391,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7211,11 +7399,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare-palvelimen tulostimen parametrit"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7227,27 +7415,27 @@ msgstr ""
"mahdollisesti tulostusjonon nimi sille tulostimelle, jota haluat käyttää, "
"sekä soveltuva käyttäjätunnus ja salasana."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Tulostuspalvelin"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Tulostusjonon nimi"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-palvelimen nimi puuttuu!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-jonon nimi puuttuu!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/Socket -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7259,57 +7447,53 @@ msgstr ""
"porttinumero on useimmiten 9100, muissa palvelimissa portti voi vaihdella. "
"Tarkista portti laitteistosi ohjekirjasta."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Tulostinlaitteen verkkonimi"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Tulostinlaitteen verkkonimi puuttuu!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Tulostinlaitteen osoite (URI)"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Sinun pitää syöttää laillinen URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Tulostimen nimi"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Kuvaus"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Paikka"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Valmistellaan tulostintietokantaa ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Ulkoisen tulostimen nimi"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7324,26 +7508,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Onko tämä oikein?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Valitse käyttäjät yksitellen"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Tulostimen mallin valinta"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Mikä tulostinmalli sinulla on?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7352,17 +7536,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI winprinterin asettaminen"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7372,11 +7556,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjetin asettaminen"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7384,7 +7568,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7397,7 +7581,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7407,22 +7591,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valitsimen %s pitää olla kokonaisluku!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Valitsimen %s pitää olla luku!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Valitsin %s on arvoalueensa ulkopuolella!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7431,11 +7615,11 @@ msgstr ""
"Haluatko asettaa tämän tulostimen (\"%s\")\n"
"oletustulostimeksi?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testisivut"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7443,39 +7627,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Ei testisivuja"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Tulosta"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardi testisivu"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Vaihtoehtoinen testisivu (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Vaihtoehtoinen testisivu (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Valokuvatestisivu"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Älä tulosta testisivua"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Tulostan testisivu(j)a..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7490,7 +7674,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7498,15 +7682,15 @@ msgstr ""
"Testisivu(t) on lähetetty tulostimelle.\n"
"Voi kestää hetken ennen kuin tulostus alkaa.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Toimiko tulostus kunnolla?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Raakatulostin"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7515,15 +7699,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7532,18 +7716,18 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Saadaksesi selville nykyisen tulostimen parametrit lue joko alla oleva lista "
"tai klikkaa \"Tulostuksen valintalista\"-painiketta.%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -7551,7 +7735,7 @@ msgstr ""
"Tässä on lista nykyisen tulostinen käytössä olevista tulostusvalinnoista:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7560,15 +7744,15 @@ msgstr ""
"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
"<tiedosto>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -7576,7 +7760,7 @@ msgstr ""
"Saadaksesi listan nykyisen tulostimen parametreistä klikkaa \"Tulostuksen "
"valintalista\"-painiketta."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7585,7 +7769,7 @@ msgstr ""
"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
"<tiedosto>\". tai \"%s <tiedosto>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7595,7 +7779,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7604,29 +7788,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sulje"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Tulostetaan/skannataan laitteella \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Tulostus käynnissä tulostimella \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Sulje"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Tulostusparametrien lista"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7634,36 +7829,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Luetaan tulostimen tietoja ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Siirrä tulostimen asetukset"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7673,51 +7868,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD ja LPRng eivät tue IPP-tulostimia.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Älä siirrä tulostimia"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Siirrä"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7725,11 +7920,11 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Tulostimen nimi saa sisältää vain kirjaimia, numeroita ja alaviivan"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -7738,46 +7933,46 @@ msgstr ""
"Tulostin \"%s\" on jo olemassa,\n"
"haluatko todellakin tuhota olemassa olevat asetukset?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Uuden tulostimen nimi"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Siirrän %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Päivitetään tulostintietoja ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Ulkoisen tulostimen asetukset"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Luon verkkoyhteyttä ..."
# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Aseta verkkoyhteys nyt"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Verkkotoimintoja ei ole asetettu"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7785,11 +7980,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Jatka asettamatta verkkoyhteyttä"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7799,31 +7994,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Käynnistän tulostusjärjestelmää uudelleen ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "korkea"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoidi"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Asennan tulostusjärjestelmän turvatasolla %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7838,11 +8033,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Käynnistää tulostusjärjestelmän käynnistyksen aikana"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7856,64 +8051,64 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Tarkistan asennetut ohjelmistot..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Poistetaan LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Poistetaan LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Valitse tulostusjono"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Mitä tulostusjärjestelmää (jonoa) haluat käyttää?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Asennan Foomaticin ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Tulostimen asetukset"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Valmistellaan PrinterDrakea ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Haluatko asettaa tulostuksen?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Tulostusjärjestelmä: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7921,38 +8116,42 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Päivitä tulostinlistaa (näytä kaikki saatavilla olevat CUPS-etätulostimet)"
# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Aseta tulostusjärjestelmä"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Perustila"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Lopeta"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Haluatko asettaa toisen tulostimen?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Muokkaa tulostimen asetuksia"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -7961,102 +8160,102 @@ msgstr ""
"Tulostin %s\n"
"Mitä haluat muokata tästä tulostimesta?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Tee se!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tulostusyhteyden tyyppi"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Tulostimen nimi, kuvaus, paikka"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Tulostimen valmistaja, malli, ajuri"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Tulostimen valmistaja, malli"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Aseta tämä tulostin oletukseksi"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Tulosta testisivut"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Tiedä kuinka käyttää tätä tulostinta"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Poista tulostin"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Poistetaan vanha tulostin \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Oletustulostin"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tulostin \"%s\" on asetettu oletustulostimeksi."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Haluatko todella poistaa tulostimen \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Poistetaan tulostin \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8141,24 +8340,61 @@ msgstr "Salasanat poikkeavat toisistaan. Kokeile uudelleen!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "En voi lisätä osiota _alustetulle_ RAID:lle md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "En voi kirjoittaa tiedostoa %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid epäonnistui"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid epäonnistui (ehkä raid-työkalut puuttuvat?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei riittävästi osioita RAID tasolle %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Tätä tasoa tulee käyttää varoen. Se tekee järjestelmästäsi helpomman "
+"käyttää,\n"
+"mutta hyvin herkän: sitä ei tule käyttää koneessa joka on kytketty muihin "
+"koneisiin\n"
+"tai Internettiin. Koneessa ei ole salasanoja."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Tällä turvallisuustasolla järjestelmän käyttö palvelimena on mahdollista.\n"
+"Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
+"asiakkailta. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Lisävalinnat"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Optiot"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Käynnistä ALSA (Advanced Linux Sound Architecture) äänijärjestelmä"
@@ -8213,7 +8449,7 @@ msgstr ""
"HardDrake etsii uutta laitteistoa ja mahdollisesti konfiguroi\n"
"uuden/muuttuneen laitteiston."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8292,7 +8528,7 @@ msgstr ""
"Linux Virtual Server, jonka avulla voidaan rakentaa suuritehoinen\n"
"korkean käytettävyyden palvelin."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8368,7 +8604,7 @@ msgstr ""
"NFS ja NIS-protokollat. portmap-palvelin on oltava käynnissä\n"
"järjestelmissä jotka haluavat tarjota näitä protokollia."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -8463,7 +8699,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Tiedostojen jako"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Järjestelmä"
@@ -8471,7 +8707,6 @@ msgstr "Järjestelmä"
msgid "Remote Administration"
msgstr "Etähallinta"
-# ../../share/compssUsers
#: ../../services.pm_.c:141
msgid "Database Server"
msgstr "Tietokantapalvelin"
@@ -8579,6 +8814,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandraken hallintapaneeli"
@@ -8677,6 +8913,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Asennan paketteja..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8685,6 +8930,160 @@ msgstr ""
"Osiotaulua ei voida lukea, siinä on liikaa virheitä :(\n"
"Taulu yritetään korjata nollaamalla se"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Siirrä tulostimen asetukset"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Tietokantapalvelin"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Tietokantapalvelin"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Lisää käyttäjä"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Apua"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ei yhteyttä"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Poista"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Valitse kaikki"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Lisää käyttäjä"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Määrittelen..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "aseta uudelleen"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Ei levykeasemaa käytettävissä"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Virhe!"
@@ -8725,6 +9124,11 @@ msgstr ""
"Välitse jokaiselle vaiheelle toistetaanko asennus samalla tapaa kuin nyt vai "
"onko kyseinen vaihe manuaalinen"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Valmistelen automaattiasennuslevykettä"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8737,12 +9141,12 @@ msgstr ""
"\n"
"Automaattisen asennuksen parametrit löytyvät vasemmalla olevista lohkoista"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Onnittelut!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8750,30 +9154,21 @@ msgstr ""
"Levykkeen luominen onnistui.\n"
"Voit nyt toistaa asennuksesi."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Automaattinen asennus"
# Asennuksen sivuvalikko
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Lisää alkio"
# mat
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Poista viimeinen alkio"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -8783,7 +9178,7 @@ msgstr ""
" DrakBackup-raportti \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8795,19 +9190,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8819,62 +9202,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Varmuuskopioi järjestelmätiedostot..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Kiintolevyn varmuuskopiotiedostot..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Varmuuskopioi käyttäjätiedostot..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Kiintolevyn varmuuskopion edistyminen..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Varmuuskopioi muut tiedostot..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"tiedostolistan lähetti FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) FTP-yhteysongelma: varmuuskopion lähettäminen FTPn kautta epäonnistui.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Virhe lähetettäessä sähköpostia. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Tiedostojen valinta"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Valitse tiedostot tai hakemistot ja klikkaa 'Lisää'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -8882,26 +9289,26 @@ msgstr ""
"\n"
"Valitse kaikki asetukset, jotka tarvitset.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Naillä asetuksilla voit varmuuskopioida ja palauttaa kaikki tiedostot /etc-"
"hakemistosta.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Varmuuskopioi systeemitiedostot ( /etc-hakemisto )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Käytä kasvavaa varmuuskopiointia (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Älä sisällytä kriittisiä tiedostoja (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -8909,83 +9316,77 @@ msgstr ""
"Tällä valitsimella voit palauttaa minkä tahansa version\n"
"/etc-hakemistostasi."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Valitse kaikki ne käyttäjät, jotka haluat sisällyttää varmuuskopioosi."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Älä sisällytä selaimen välimuistia"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Käytä kasvavia varmuuskopitoita (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Poista valitut"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Käyttäjät"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Käytä FTP-yhteyttä varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Syötä verkkoaseman nimi tai IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Syötä hakemisto, johon tämän\n"
"koneen varmuuskopio laitetaan."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Syötä käyttäjätunnuksesi"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Syötä salasanasi"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Muista tämä salasana"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP-yhteys"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Salattu yhteys"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Käytä CD/DVD-ROM -levyä varmuuskopioille"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Valitse käytettävä CD:n koko"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Valitse, jos haluat tyhjentää CD-RW:n ennen kopiointia"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -8993,7 +9394,7 @@ msgstr ""
"Valitse, jos haluat tehdä CD-levystäsi\n"
"käynnistettävän."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9001,16 +9402,21 @@ msgstr ""
"Syötä kirjoittavan CD-asemasi laitenimi\n"
"esim: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Käytä nauhaa varmuuskopioinnissa"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Syötä varmuuskopioinnissa käytettävän laitteen nimi"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Valitse, jos haluat tyhjentää CD-RW:n ennen kopiointia"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9018,51 +9424,57 @@ msgstr ""
"Syötä suurin sallittu koko\n"
"Drakbackup-varmuuskopiolle"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Syötä hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Käytä quotaa varmuuskopiotiedostoille."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Verkko"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CD-ROM / DVD-ROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Kiintolevy / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tyyppi"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "tunneittain"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "päivittäin"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "viikoittain"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "kuukausittain"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Käytä daemonia"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9070,7 +9482,7 @@ msgstr ""
"Valitse peräkkäisten\n"
"varmuuskopioiden aikaväli"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9078,72 +9490,68 @@ msgstr ""
"Valitse varmuuskopiointiin\n"
"käytettävä media."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Käytä kiintolevyä daemonilla"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Käytä FTPtä daemonilla"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+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 "Varmista että cron-daemon on mukana käytössä olevissa palveluissa."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Lähetä raportti jokaisesta varmuuskopiosta sähköpostitse :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Mitä"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Missä"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Koska"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Lisävalinnat"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Drakbackup-asetukset"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Valitse, mihin haluat tehdä varmuuskopiot"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "kiintolevylle"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "verkon yli"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Valitse mitä haluat varmuuskopioida"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Varmuuskopioi järjestelmä"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Varmuuskopioi käyttäjät"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Valitse käyttäjät yksitellen"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9151,7 +9559,7 @@ msgstr ""
"\n"
"Varmuuskopion lähteet: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9159,7 +9567,7 @@ msgstr ""
"\n"
"- Järjestelmätiedostot:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9167,7 +9575,7 @@ msgstr ""
"\n"
"- Käyttäjätiedostot:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9175,7 +9583,7 @@ msgstr ""
"\n"
"- Muut tiedostot:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9184,16 +9592,45 @@ msgstr ""
"\n"
"- Tallenna kiintolevylle polulle : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Hiiren laite: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Tallenna FTP:llä verkkoasemalle : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Tallenna FTP:llä verkkoasemalle : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9202,7 +9639,7 @@ msgstr ""
"\t\t käyttäjätunnus: %s\n"
"\t\t polulla: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9210,19 +9647,19 @@ msgstr ""
"\n"
"- Valitsimet:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tÄlä sisällytä järjestelmätiedostoja\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tVarmuuskopiot käyttävät: tar ja bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tVarmuuskopiot käyttävät: tar ja gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9231,27 +9668,41 @@ msgstr ""
"\n"
"- Daemon (%s) sisältää :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Kiintolevy.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Verkkoon käyttäen SSH:ta.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ei asetettu, valitse Velho tai Edistynyt.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9259,7 +9710,7 @@ msgstr ""
"Lista palautettavista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9267,134 +9718,137 @@ msgstr ""
"Lista vahingoittuneista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Poista valinta tai poista se seuraavalla kerralla."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Varmuuskopiot ovat vahingoittuneet"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Kaikki valitsemasi tieto on "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " onnistuneesti palautettu paikkaan %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Palauta asetukset "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Ok palauttaakseen muut tiedostot."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Palautettava käyttäjälista (vain uusin päivä kutakin käyttäjää kohti on "
"tärkeä)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Tee järjestelmätiedostoista varmuuskopio ennen:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Valitse päivämäärä, johon tiedon palauttaminen tehdään"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Käytä kiintolevyä varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Syötä hakemisto, johon tallennetaan:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP-yhteys"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Salattu yhteys"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Palauta kiintolevyltä."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Anna hakemisto, johon varmuuskopiot on tallennettu"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Valitse toinen media, josta palauttaa"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Muu media"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Palauta järjestelmä"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Palauta käyttäjät"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "valitse polku, josta palautat (juurihakemiston sijaan)"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Tee uusi varmuuskopio ennen palauttamista (vain kasvavilla varmuuskopioilla)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Poista käyttäjien hakemistot ennen palauttamista."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Palauta kaikki varmuuskopiot"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Mukautettu palautus"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Apua"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Edellinen"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Tallenna"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Tee varmuuskopio"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Palauta"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Seuraava"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -9402,7 +9856,7 @@ msgstr ""
"Tee varmuuskopio ennen kuin yrität palauttaa sen...\n"
"tai tarkista että tallennuspolku on oikea."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -9412,31 +9866,35 @@ msgstr ""
" raporttipostiasi ei lähetetty\n"
" Konfiguroi sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista asennettavista paketeista"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Seuraavat paketit asennetaan"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Virhe FTP-siirron aikana.\n"
" Korjaa FTP-asetuksesi."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Valitse palautettava tieto..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Valitse varmuuskopioinnissa käytettävä media..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Valitse varmuuskopioitava tieto..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9444,76 +9902,76 @@ msgstr ""
"Asetustiedostoa ei löytynyt\n"
"valitse joko Velho tai Kehittynyt."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Kehityksen alla ... odota."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Varmuuskopioi järjestelmätiedostot"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Varmuuskopioi käyttäjätiedostot"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Varmuuskopioi muut tiedostot"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "tiedostoja lähetetään FTP:n yli"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Lähetän tiedostoja..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Tietolista sisällytettäväksi CD-ROMiin"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Valitse kirjoittavan CD-aseman nopeus"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Valitse kirjoittavan CD-aseman laitenimi (esim. 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Valitse, jos haluat tehdä käynnistettävän CD:n."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Tee heti asetustiedoston varmuuskopio"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Näytä varmuuskopioinnin asetukset."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Varmuuskopioi heti"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9545,7 +10003,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9554,7 +10012,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9595,7 +10053,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9623,14 +10081,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft. Tekijä: DUPONT Sebastien <dupont_s\\@epita."
"fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -9647,7 +10110,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9687,7 +10150,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9698,7 +10161,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9711,7 +10174,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9755,99 +10218,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s:n asennus epäonnistu. Seuraava virhe tapahtui:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Komentorivityökalut"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "kiintolevylle"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeExpert"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Hiiri"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Ulkoinen tulostin"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Jakonimi"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Verkkoasetusten velho"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Tunnistustapa"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakettien valinta"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Odota hetki"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+# Asennuksen sivuvalikko
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Poistamisen jälkeiset toiminnot"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "portti"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Kuvankaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Verkon asetukset (%d-laitteille)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiili: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Poista profiili..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Valitse poistettava profiili:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Uusi profiili..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Luotavan profiilin nimi (uusi profiili luodaan kopioimalla nykyisen tiedot) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Koneen nimi:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internetyhteys"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tyyppi:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Yhdyskäytävä:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Liitäntä:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Tila:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Odota hetki"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Määrittele internetyhteys..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Lähiverkon asetukset"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Ajurit"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Liitäntä"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokolla"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Tila"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Aseta paikallisverkko..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Paina tähän käynnistääksesi asennusohjelman ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Velho..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Toteuta"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Odota hetki... Otetaan asetukset käyttöön"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Yhteys muodostettu"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Ei yhteyttä"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Yhdistä..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Katkaise yhteys..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Varoitus, toinen internet-yhteys on havaittu, mahdollisesti käyttäen sinun "
+"vekkoasi"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Sinulla ei ole ainoatakaan asetettua liityntää.\n"
+"Aseta ne ensin klikkaamalla 'Aseta'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Lähiverkon asetukset"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Laite %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Käynnistysprotokolla"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivoi nyt"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivoi nyt"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Tätä liityntärajapintaa ei ole vielä asetettu.\n"
+"Käynnistä pääikkunasta löytyvä asetusvelho"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Sinulla ei ole ainoatakaan internet-yhteyttä.\n"
+"Luo sellainen ensin klikkaamalla 'Aseta'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetyhteyden asetus"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetyhteyden asetus"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Yhteyden nimi: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametrit"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Yhdyskäytävä"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Verkkokortti"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-asiakas"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "käyttö: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Moduulin nimi"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Koko"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "käynnistyslevykkeen luonti"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "oletus"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Virhe DrakFloppyssa: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "ytimen versio"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Yleinen"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Asiantuntijan alue"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd:n vapaaehtoiset parametrit"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Lisää moduuli"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "pakota"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "jos tarvitaan"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "jätä pois scsi-moduulit"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "jätä pois raid-moduulit"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Poista moduuli"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Tuloste"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Muodosta levy"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Varmista, että media on laitteessa %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Laitteessa %s ei ole mediaa.\n"
+"Aseta media."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Prosessia %s ei voitu haarauttaa"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"mkbootdisk:iä ei voitu sulkea oikein: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Etsi asennetut kirjasimet"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Poista asetettujen kirjasimien valinta"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "jäsennä kaikki kirjasimet"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "kirjasimia ei löytynyt"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "valmis"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "liitetyiltä osioilta ei löytynyt ainoatakaan kirjasinta"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Valitse uudelleen oikeat kirjasimet"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "kirjasimia ei löytynyt.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Etsi kirjasimia asennettujen listalta"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kirjasimet kopioi"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "True Type kirjasimien asennus"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "odota kunnes ttmkfdir on valmis..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "True Type -asennus valmis"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Kirjasinten muuntaminen"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "rakennetaan: type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf kirjasinten muunnos"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm kirjasinten muunnos"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Poista väliaikaistiedostot"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Käynnistä XFS uudelleen"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Poista kirjasintiedostot"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs:n uudelleenkäynnistys"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9862,109 +10757,109 @@ msgstr ""
"kirjasimet voivat lukitä X-palvelimen."
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Kirjasinten tuonti"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Hae Windowsin kirjasimet"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Poista kirjasimet levyltä"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Lisävalinnat"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Kirjasinlista"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Valitse sovellukset, jotka tukevat kirjasimia :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Yleiset tulostimet"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Valitse kirjasintiedosto tai hakemisto ja klikkaa 'Lisää'"
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Asenna lista"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "paina tähän, kun olet varma."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "tähän jos et ole."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Poista valinta kaikista"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Valitse kaikki"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Poista lista"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Alkutestit"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopioi kirjasimet järjestelmääsi"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Asenna & muunna kirjasimia"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Asennuksen jälkeiset toiminnot"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Poista järjestelmässäsi olevia kirjasimia"
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Poistamisen jälkeiset toiminnot"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetyhteyden jakaminen"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetyhteyden jakaminen on käytössä"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9976,31 +10871,31 @@ msgstr ""
"\n"
"Mitä haluat tehdä?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "poista käytöstä"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "lopeta"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "aseta uudelleen"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Poistan palvelut käytöstä..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetyhteyden jakaminen ei ole enää käytössä."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetyhteyden jakaminen ei ole käytössä"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10012,19 +10907,19 @@ msgstr ""
"\n"
"Mitä haluat tehdä?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "ota käyttöön"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Otan palvelut käyttöön.."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetyhteyden jakaminen on nyt käytössä."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10040,32 +10935,32 @@ msgstr ""
"\n"
"Huomaa: tarvitset erityisen verkkokortin pystyttääksesi oman paikallisverkon."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Liittymä %s (käyttäen moduulia %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Liittymä %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Koneessasi ei ole verkkokorttia!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Koneestasi ei löytynyt yhtään verkkokorttia. Aja laitteistonhakutyökalu."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Verkkoliittymä"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10080,17 +10975,17 @@ msgstr ""
"\n"
"Valmistaudun asettamaan lähiverkkosi asetukset kyseiselle laitteelle."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Valitse verkkokortti, joka on kytketty paikallisverkkoon."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Verkkoliitäntä on jo asetettu"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10106,15 +11001,15 @@ msgstr ""
"Voit asettaa sen myös manuaalisesti, mutta silloin sinun pitää tietää, mitä "
"olet tekemässä."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automaattinen uudelleenasetus"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Näytä nykyiset liitäntäasetukset"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10131,7 +11026,7 @@ msgstr ""
"IP-määreet: %s\n"
"Ajuri: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10151,33 +11046,33 @@ msgstr ""
"palvelimen puolestasi.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "C-luokan paikallisverkko"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "(Tämän) DHCP-palvelimen IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Aseta liityntärajapinta ja DHCP-palvelin uudelleen"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Paikallisverkko ei loppunut '.0':aan, töydennetään."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Mahdollinen lähiverkon osoitetörmäys löydetty nykyisillä asetuksilla %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Palomuuri löydetty!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10185,21 +11080,21 @@ msgstr ""
"Varoitus! Olemassaoleva palomuuri löydetty. Tarvitset mahdollisesti käsin "
"tehtäviäkorjauksia asennuksen jälkeen."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Määrittelen..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Määrittelen komentotiedostot, asennan ohjelmistot, käynnistän palvelimet..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Asennan pakettia %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10209,24 +11104,24 @@ msgstr ""
"Voit nyt jakaa internetyhteyden muiden lähiverkon koneiden kanssakäyttämällä "
"automaattista lähiverkon määrittelyä (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Asetukset on jo tehty, mutta ne ovat tällä hetkellä poistettu käytöstä."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Asetukset on jo tehty ja ne ovat käytössä."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetyhteyden jakamista ei ole koskaan asetettu."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Internetyhteyden jakamisen asetukset"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10241,215 +11136,6 @@ msgstr ""
"\n"
"Paina Aseta käynnistääksesi asennusohjelman."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Verkon asetukset (%d-laitteille)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiili: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Poista profiili..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Valitse poistettava profiili:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Uusi profiili..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Luotavan profiilin nimi (uusi profiili luodaan kopioimalla nykyisen tiedot) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Koneen nimi:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetyhteys"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tyyppi:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Yhdyskäytävä:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Liitäntä:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Tila:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Odota hetki"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Määrittele internetyhteys..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Lähiverkon asetukset"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ajurit"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Liitäntä"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokolla"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Tila"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Aseta paikallisverkko..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Paina tähän käynnistääksesi asennusohjelman ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Velho..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Toteuta"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Odota hetki... Otetaan asetukset käyttöön"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Yhteys muodostettu"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ei yhteyttä"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Yhdistä..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Katkaise yhteys..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Varoitus, toinen internet-yhteys on havaittu, mahdollisesti käyttäen sinun "
-"vekkoasi"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Sinulla ei ole ainoatakaan asetettua liityntää.\n"
-"Aseta ne ensin klikkaamalla 'Aseta'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Lähiverkon asetukset"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Laite %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Käynnistysprotokolla"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-asiakas"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivoi nyt"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivoi nyt"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Tätä liityntärajapintaa ei ole vielä asetettu.\n"
-"Käynnistä pääikkunasta löytyvä asetusvelho"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Sinulla ei ole ainoatakaan internet-yhteyttä.\n"
-"Luo sellainen ensin klikkaamalla 'Aseta'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetyhteyden asetus"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetyhteyden asetus"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Yhteyden nimi: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrit"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Yhdyskäytävä"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Verkkokortti"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-asiakas"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Asetan turvatasoa"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrollipaneeli"
@@ -10458,63 +11144,85 @@ msgstr "Kontrollipaneeli"
msgid "Choose the tool you want to use"
msgstr "Valitse haluamasi työkalu"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kaapeli)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "Yhdysvallat (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "Yhdysvallat (kaapeli)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "Yhdysvallat (hrc-kaapeli)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Kiina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japani (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japani (kaapeli)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Itä-Eurooppa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ranska"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlanti"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Länsi-Eurooppa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Uusi-Seelanti"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Etelä-Afrikka"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentiina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -10522,27 +11230,44 @@ msgstr ""
"Ole hyvä,\n"
"kirjoita käyttämäsi tv-normi sekä asuinmaa"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV-normi :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Alue :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "TV-kanavien haku käynnissä ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Haetaan TV-kanavia"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Tapahtu virhe asennettaessa paketteja:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10586,7 +11311,7 @@ msgstr "Järjestelmän päivitystä ei voida aloittaa!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10596,31 +11321,31 @@ msgstr "Näytä vain valittu päivä"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/Tiedosto/_Uusi"
+msgstr "/Tiedosto/Uusi"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>U"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr "/Tiedosto/_Avaa"
+msgstr "/Tiedosto/Avaa"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>A"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/Tiedosto/_Tallenna"
+msgstr "/Tiedosto/Talleta"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>T"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/File/Tallenna _Nimellä"
+msgstr "/Tiedosto/Talleta nimellä"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -10628,15 +11353,11 @@ msgstr "/Tiedosto/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr "/_Valinnat"
+msgstr "/Asetukset"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/Valinnat/Testi"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ohje"
+msgstr "/Asetukset/Testaa"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
@@ -10698,7 +11419,7 @@ msgstr "Kalenteri"
msgid "Content of the file"
msgstr "Tiedoston sisältö"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Posti- ja SMS-hälytys"
@@ -10707,11 +11428,11 @@ msgstr "Posti- ja SMS-hälytys"
msgid "please wait, parsing file: %s"
msgstr "odota hetki, jäsennän tiedostoa : %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Posti- ja SMS-hälytyksen asetukset"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -10721,64 +11442,95 @@ msgstr ""
"\n"
"Täällä voit pystyttää hälyytysjärjestelmän.\n"
-# ../../share/compssUsers
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Verkkoalueen nimi"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix-postipalvelin, Inn-nyytispalvelin"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS-palvelin"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-palvelin"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Palvelut"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Tulostuspalvelin"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "Palveluiden asettaminen"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Saat hälytyksen kun jokin valituista palveluista ei ole enää käynnissä"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "lataa asetukset"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Saat hälytyksen jos kuorma on tätä arvoa suurempi"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "hälytyksen asetukset"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Aseta tapa, jolla järjestelmä hälyttää sinulle"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Tallenna nimellä.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Valitse hiiren tyyppi."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb:ta ei löytynyt\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuloi kolmatta näppäintä?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Luetaan tulostimen tietoja ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Etsin laitteita ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10821,6 +11573,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Palomuurin asetukset"
@@ -11156,7 +11920,6 @@ msgid ""
" Try to install them manually."
msgstr ""
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -11165,7 +11928,6 @@ msgstr "Web/FTP"
msgid "Network Computer (client)"
msgstr "Verkkopääte (asiakas)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr "NFS-, SMB-, SSH- ja välipalvelin"
@@ -11178,7 +11940,6 @@ msgstr "Toimistosovellukset"
msgid "Gnome Workstation"
msgstr "Gnome-työasema"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
msgstr "Työkalut Palm Pilotin tai Visorin liittämiseksi"
@@ -11187,7 +11948,6 @@ msgstr "Työkalut Palm Pilotin tai Visorin liittämiseksi"
msgid "Workstation"
msgstr "Työasema"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Firewall/Router"
msgstr "Palomuuri / Reititys"
@@ -11196,7 +11956,6 @@ msgstr "Palomuuri / Reititys"
msgid "Domain Name and Network Information Server"
msgstr "Nimipalvelin ja tietoverkon informaatiopalvelin"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
@@ -11205,12 +11964,10 @@ msgstr ""
"Office-ohjelmistot: tekstinkäsittely (kword, abiword), taulukkolaskenta "
"(kspread,gnumeric), pdf-lukijat jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Äänenkäsittely: mp3, midi, mikserit, jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Kirjoja ja ohjeita Linuxista sekä vapaan lähdekoodin ohjelmista"
@@ -11219,7 +11976,6 @@ msgstr "Kirjoja ja ohjeita Linuxista sekä vapaan lähdekoodin ohjelmista"
msgid "KDE Workstation"
msgstr "KDE-työasema"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, jne"
@@ -11228,14 +11984,12 @@ msgstr "Icewm, Window Maker, Enlightenment, Fvwm, jne"
msgid "Multimedia - Video"
msgstr "Multimedia - Video"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
"Kokoelma työkaluja sähköpostiin, nyytisiin, webiin, tiedostonsiirtoon ja "
"jutusteluun"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Database"
msgstr "Tietokanta"
@@ -11252,16 +12006,10 @@ msgstr "Työkalut, jotka helpottavat tietokoneesi asetusten muokkaamista"
msgid "Multimedia - Sound"
msgstr "Multimedia - Ääni"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Apuohjelmat"
-
#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentaatio"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Komentorivityökalut"
@@ -11282,12 +12030,10 @@ msgstr "Multimedia-asema"
msgid "Configuration"
msgstr "Asetustyökalut"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr "Lisää graafisia työpöytiä (Gnome, IceWM)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
@@ -11299,12 +12045,10 @@ msgstr ""
msgid "Graphical Environment"
msgstr "Graafinen ympäristö"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache WWW-palvelin ja Pro-ftpd FTP-palvelin"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Tools to create and burn CD's"
msgstr "Työkalut CD:iden luomiseen ja polttamiseen"
@@ -11317,22 +12061,18 @@ msgstr "Toimistotyöasema"
msgid "Server"
msgstr "Palvelin"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
msgstr "Grafiikkaohjelmistot, kuten Gimp"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "DNS/NIS "
msgstr "DNS/NIS "
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C ja C++ ohjelmointityökalut, kirjastot ja include-tiedostot"
@@ -11341,7 +12081,6 @@ msgstr "C ja C++ ohjelmointityökalut, kirjastot ja include-tiedostot"
msgid "Network Computer server"
msgstr "Verkkotietokone (palvelin)"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
msgstr "Sähköposti/Groupware/Nyytiset"
@@ -11350,7 +12089,6 @@ msgstr "Sähköposti/Groupware/Nyytiset"
msgid "Game station"
msgstr "Pelikone"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Video players and editors"
msgstr "Videon katselu ja editointi"
@@ -11359,12 +12097,10 @@ msgstr "Videon katselu ja editointi"
msgid "Multimedia - Graphics"
msgstr "Multimedia - Grafiikka"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr "Pelit: tasohyppely, korttipelit, strategia, jne"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
@@ -11373,17 +12109,10 @@ msgstr ""
"Valikoima työkaluja sähköpostin ja nyytisten lukemiseen (pine, mutt, tin...) "
"sekä internetissä surffailuun"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Varmuuskopiointi, emulaattorit, järjestelmän tarkkailu"
-
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Henkilökohtainen kirjanpito"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
@@ -11391,7 +12120,6 @@ msgid ""
msgstr ""
"Graafinen ympäristö käyttäjäystävällisellä ohjelmistolla ja työkaluilla."
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Clients for different protocols including ssh"
msgstr "Asiakasohjelmat eri protokollille (ssh jne)"
@@ -11400,27 +12128,22 @@ msgstr "Asiakasohjelmat eri protokollille (ssh jne)"
msgid "Internet gateway"
msgstr "Internetyhdyskäytävä"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Sound and video playing/editing programs"
msgstr "Äänen sekä videon soitto- ja editointiohjelmat"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
msgstr "Muut graafiset käyttöympäristöt"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Editors, shells, file tools, terminals"
msgstr "Editorit, komentotulkit, tiedostotyökalut, terminaalit"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
msgstr "Tilinpito-ohjelmia, kuten gnucash"
-# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Personal Information Management"
msgstr "Henkilökohteisen tiedon hallinta"
@@ -11433,57 +12156,178 @@ msgstr "Multimedia - CD:n poltto"
msgid "Scientific Workstation"
msgstr "Tieteelliinen työasema"
-#~ msgid "About"
-#~ msgstr "Tietoja"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck epäonnistui virhekoodilla %d tai signaalilla %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Näytönohjaimen tunniste: %s\n"
-#~ msgid " Help "
-#~ msgstr " Apua "
+#~ msgid "Choose options for server"
+#~ msgstr "Valitse optioita palvelimelle"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "Monitor not configured"
+#~ msgstr "Näyttöä ei ole asetettu"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Näytönohjainta ei ole vielä asetettu"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Näytön resoluutiota ei ole vielä valittu"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr "Ei saantia käytössä olevan ytimen moduuleihin (tiedosto %s puuttuu)"
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "kokeile joidenkin parametrien muuttamista"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Tapahtui virhe:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Lopetan %d sekunnissa"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Onko tämä oikea asetus?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Tapahtui virhe, kokeile joidenkin parametrien vaihtamista"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 palvelin: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Näytä kaikki"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Valmistelen X-Windowin asetuksia"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Mitä haluat tehdä?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Vaihda näyttöä"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Change Graphics card"
+#~ msgstr "Vaihda näytönohjainta"
-#~ msgid "None"
-#~ msgstr "Ei asetettu"
+#~ msgid "Change Server options"
+#~ msgstr "Vaihda palvelimen optioita"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Valitse oletustulostin !"
+#~ msgid "Change Resolution"
+#~ msgstr "Vaihda resoluutiota"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Toteuta/Lue uudelleen tulostimet"
+#~ msgid "Show information"
+#~ msgstr "Näytä tiedot"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Voit antaa lisäasetuksia modulille %s."
+#~ msgid "Test again"
+#~ msgstr "Kokeile uudelleen"
-#~ msgid "Low"
-#~ msgstr "Matala"
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Käytä kiintolevyä daemonilla"
-#~ msgid "Medium"
-#~ msgstr "Keskitaso"
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Käytä FTPtä daemonilla"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista asennettavista paketeista"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Asetan turvatasoa"
+
+#~ msgid "Graphics card"
+#~ msgstr "Näytönohjain"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Valitse näytönohjain"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Varoitus: näytönohjaimesi testaaminen voi jumittaa tietokoneen"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Perus-VGA, 640x480 @ 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 800x600 @ 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-yhteensopiva, 1024x768 @ 87 Hz lomitettu (ei 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "SVGA, 1024x768 @ 87 Hz lomitettu, 800x600 @ 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Laajennettu SVGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Lomittamaton SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Korkeataajuuksinen SVGA, 1024x768 @ 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Näyttö, joka pystyy 1280x1024 @ 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Näyttö, joka pystyy 1280x1024 @ 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Näyttö, joka pystyy 1280x1024 @ 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Näyttö, joka pystyy 1600x1200 @ 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Näyttö, joka pystyy 1600x1200 @ 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Valitsemiesi ryhmien kokonaiskoko on suunnilleen %d Mt.\n"
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Muutamia parannuksia tällä turvaasolla, suurimpana se että "
-#~ "järjestelmässä\n"
-#~ "on enemmän turvallisuusvaroituksia ja tarkistuksia."
+#~ "Jos haluat asentaa vähemmän kuin tämä koko,\n"
+#~ "valitse prosenttiosuus paketeista jonka haluat asentaa.\n"
+#~ "\n"
+#~ "Pieni prosenttiosuus asentaa vain tärkeimmät paketit,\n"
+#~ "100%% osuus asentaa kaikki paketit."
-#~ msgid "mount failed"
-#~ msgstr "liittäminen epäonnistui"
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Sinulla on levyllä tilaa vain %d%% paketeista\n"
+#~ ".Jos haulat asentaa vähemmän kuin tämän osan,\n"
+#~ "valitse prosenttiosuus paketeista jotka haluat asentaa.\n"
+#~ "Pieni prosentti asentaa vain tärkeimmät paketit, %d%%\n"
+#~ " prosenttiosuus asentaa niin monta pakettia kuin on mahdollista."
-#~ msgid "Boot mode"
-#~ msgstr "Käynnistila"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Voit valita paketit tarkemmin seuraavassa vaiheessa"
-#~ msgid "Export"
-#~ msgstr "Vie"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Prosenttiosuus asennettavista paketeista"
-#~ msgid "click here"
-#~ msgstr "klikkaa tähän"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Valitse turvataso"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index abfe2a8c9..d5a5efdce 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -40,8 +40,8 @@
# avec la commande suivante :
# xmodmap -e 'keycode 116 = Multi_key'
#
-# Les guillemets françaises sont Ť et ť et non ". La guillemet ouvrante
-# Ť est suivie d'un espace insécable et la guillemet fermante ť est
+# Les guillemets françaises sont Ť et ť et non ". La guillemet ouvrante
+# Ť est suivie d'un espace insécable et la guillemet fermante ť est
# précédée du męme type d'espace. Pour le tapper, vous pouvez utiliser
# la combinaison Compose < <, et Compose > >.
#
@@ -53,33 +53,63 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX for MDK 8.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-06 01:36GMT+1\n"
-"Last-Translator: Combelles Christophe <ccomb@club-internet.fr>\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-31 13:31+0200\n"
+"Last-Translator: Guy CLOTILDE <guy.clotilde@wanadoo.fr>\n"
"Language-Team: french <fr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurer les écrans séparément"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ko"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Étaler l'affichage sur plusieurs écrans (Xinerama)"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ko"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurer seulement la carte Ť %s ť (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mo"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mo"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mo"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mo"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mo"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mo"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mo ou plus"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Choisissez un serveur d'affichage (serveur XFree)"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "serveur XFree"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Configuration multi-écrans"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -87,41 +117,45 @@ msgstr ""
"Votre systčme peut utiliser simultanément plusieurs écrans.\n"
"Que souhaitez-vous faire ?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Carte graphique"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr ""
+"Veuillez préciser la quantité de mémoire vidéo de votre carte graphique"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Choisissez une carte graphique"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuration d'XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Choisissez un serveur d'affichage (serveur XFree)"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Quelle configuration d'XFree désirez-vous utiliser ?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "serveur XFree"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configurer les écrans séparément"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Choisissez un pilote d'affichage X11"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Étaler l'affichage sur plusieurs écrans (Xinerama)"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "serveur X11"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configurer seulement la carte Ť %s ť %s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quelle configuration d'XFree désirez-vous utiliser ?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s avec accélération 3D matérielle"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -132,35 +166,18 @@ msgstr ""
"Votre carte vidéo est supportée par XFree %s. Ce dernier peut ętre plus\n"
"performant en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Votre carte vidéo peut utiliser l'accélération 3D matérielle avec XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s avec accélération 3D matérielle"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Votre carte vidéo peut utiliser l'accélération 3D matérielle en utilisant\n"
-"XFree %s.\n"
-"Veuillez noter que ce support est EXPÉRIMENTAL et qu'il peut BLOQUER VOTRE\n"
-"ORDINATEUR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s avec support EXPÉRIMENTAL de l'accélération 3D matérielle"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -175,32 +192,59 @@ msgstr ""
"Votre carte vidéo est supportée par XFree %s. Ce dernier peut ętre plus\n"
"performant en 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Votre carte vidéo peut utiliser l'accélération 3D matérielle en utilisant\n"
+"XFree %s.\n"
+"Veuillez noter que ce support est EXPÉRIMENTAL et qu'il peut BLOQUER VOTRE\n"
+"ORDINATEUR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation du pilote d'affichage)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuration d'XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
msgstr ""
-"Veuillez préciser la quantité de mémoire vidéo de votre carte graphique"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Choisissez les options du serveur d'affichage"
+"Désirez-vous conserver les changements ?\n"
+"La configuration actuelle est :\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Choisissez un moniteur"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Moniteur"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personnalisée"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Générique"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Vendeur"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -224,514 +268,325 @@ msgstr ""
"En cas de doute, choisissez un réglage moins performant mais\n"
"sans risque pour votre matériel."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Fréquence horizontale"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Fréquence verticale"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Le moniteur n'est pas configuré"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La carte graphique n'est pas encore configurée"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "La résolution n'a pas encore été choisie"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Désirez-vous tester la configuration ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Attention : tester cette carte vidéo peut bloquer votre ordinateur"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test de la configuration"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 couleurs (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"essayez de modifier quelques paramčtres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 768 couleurs (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Une erreur est survenue :"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 536 couleurs (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Fin du test dans %d secondes"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16,7 millions de couleurs (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ętes-vous satisfait(e) ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4,3 milliards de couleurs (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr ""
-"Une erreur est survenue, essayez de modifier\n"
-"quelques paramčtres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Résolutions"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Résolution"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Choix de la résolution et du nombre de couleurs"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Carte graphique : %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Serveur XFree86 : %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Davantage"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Annuler"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Tout montrer"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Désirez-vous tester la configuration ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Résolutions"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Test de la configuration"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Type de clavier : %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Type de souris : %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Périphérique : %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Moniteur : %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Fréquence horizontale : %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Fréquence verticale : %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Carte graphique : %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Indentification de la carte graphique : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Mémoire vidéo : %s ko\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Nombre de couleurs : %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Résolution : %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Serveur XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Pilote XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Préparation de la configuration de X Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Que désirez-vous faire ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Choisir un type de moniteur"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Choisir un type de carte graphique"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Changer les options du serveur d'affichage"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Changer la résolution"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Afficher la configuration actuelle"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Tester ŕ nouveau"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Quitter"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Désirez-vous conserver les changements ?\n"
-"La configuration actuelle est :\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Interface graphique lors du démarrage"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Voulez-vous que l'interface graphique soit\n"
"automatiquement lancée lors du démarrage ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Veuillez relancer %s pour activer les changements"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Veuillez vous déconnecter puis presser simultanément les touches Ctrl-Alt-"
-"BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 couleurs (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 768 couleurs (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 536 couleurs (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16,7 millions de couleurs (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4,3 milliards de couleurs (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mo ou plus"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 ŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 ŕ 87 Hz entrelacé (sans 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ŕ 87 Hz entrelacé, 800x600 ŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA étendu, 800x600 ŕ 60 Hz, 640x480 ŕ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA non entrelacé, 1024x768 ŕ 60 Hz, 800x600 ŕ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA haute fréquence, 1024x768 ŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-fréquences supportant le 1280x1024 ŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-fréquences supportant le 1280x1024 ŕ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-fréquences supportant le 1280x1024 ŕ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Moniteur supportant le 1600x1200 ŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Moniteur supportant le 1600x1200 ŕ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Premier secteur de la partition d'amorçage"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Premier secteur du disque (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Installation de SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Oů désirez-vous installer le programme d'amorçage ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Installation de LILO ou Grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO en mode texte"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO en mode graphique"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Démarrer ŕ partir de DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Principales options du programme d'amorçage"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Programme d'amorçage ŕ utiliser"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Installation du programme d'amorçage"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Périphérique d'amorçage"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne fonctionne pas avec des BIOS anciens)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mode vidéo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Délai avant l'activation du choix par défaut"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Mot de passe"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Mot de passe (vérif)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Protéger par mot de passe les options"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "Protection des options"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
-msgstr "Vider le dossier /tmp ŕ chaque démarrage"
+msgstr "Vider le répertoire /tmp ŕ chaque démarrage"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Précisez la taille mémoire si nécessaire (%d Mo trouvés)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Autoriser plusieurs profils"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Indiquez la quantité de mémoire en Mo"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Le protection des options est inutile sans mot de passe"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Veuillez réessayer"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Les mots de passe ne correspondent pas"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Message de démarrage"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Délai de l'Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Délai d'amorçage du noyau"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Autoriser le démarrage sur CD ?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Autoriser le démarrage sur l'OF ?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS par défaut ?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -745,83 +600,83 @@ msgstr ""
"\n"
"Sur quel disque est-ce que le systčme démarre ?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Voici les différentes entrées.\n"
"Vous pouvez en rajouter de nouvelles ou changer les entrées existantes."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ajouter"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Terminer"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modifier l'élément sélectionné"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Quel type de systčme voulez-vous ajouter ?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Autres systčmes (SunOS, etc.)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Autres systčmes (MacOS, etc.)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Autres systčmes (Windows, etc.)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "fichier noyau"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Partition racine"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "options passées au noyau"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Fichier RamDisk"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Préactivé en écriture"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Table des partitions"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Peu sűr"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Choix par défaut"
@@ -853,53 +708,77 @@ msgstr "Vous devez spécifier une partition racine"
msgid "This label is already used"
msgstr "Ce label est déjŕ utilisé"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Interface(s) %s %s détectée(s)"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "En possédez-vous d'autres ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Possédez-vous des interfaces %s ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Oui"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Voir les informations sur le matériel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation du pilote pour la carte %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, 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 ""
+"Vous pouvez maintenant founir des options au module %s.\n"
+"Veuillez noter que les adresses doivent ętre précédées de 0x, comme Ť 0x123 ť"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Vous pouvez maintenant préciser les options du module %s.\n"
+"Les options sont de la forme Ť nom=valeur nom2=valeur2 ... ť.\n"
+"Par exemple, Ť io=0x300 irq=7 ť"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Options du module :"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quel pilote %s faut-il essayer ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -917,40 +796,15 @@ msgstr ""
"(La détection peut dans certains cas bloquer l'ordinateur,\n"
"mais sans lui causer de dommage.)"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Détection automatique"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spécifier des options"
-#: ../../any.pm_.c:725
-#, 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 ""
-"Vous pouvez maintenant founir des options au module %s.\n"
-"Veuillez noter que les adresses doivent ętre généralement préfixées de 0x, "
-"comme '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Vous pouvez maintenant préciser les options du module %s.\n"
-"Les options sont de la forme Ť nom=valeur nom2=valeur2 ... ť.\n"
-"Par exemple, Ť io=0x300 irq=7 ť"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Options du module :"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -959,51 +813,55 @@ msgstr ""
"Le chargement du module %s a échoué.\n"
"Désirez-vous réessayer avec d'autres paramčtres ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "accčs aux programmes graphiques"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "accčs aux outils rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "autoriser Ť su ť"
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "accčs aux fichiers d'administration"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "Utilisateur(s) existant(s) : %s"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ce mot de passe est trop simple"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Veuillez taper un nom d'utilisateur"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Le nom d'utilisateur ne peut contenir que des lettres minuscules,\n"
"des nombres, ainsi que les caractčres Ť - ť et Ť _ ť"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Ce nom d'utilisateur est trop long"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ce nom d'utilisateur est déjŕ utilisé"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Ajouter un utilisateur"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -1012,32 +870,32 @@ msgstr ""
"Créer un compte utilisateur\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Accepter"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nom et prénom"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nom d'utilisateur"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Interpréteur"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icône"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Connexion automatique"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -1045,94 +903,76 @@ msgstr ""
"Lors du démarrage, voulez-vous que le systčme connecte\n"
"automatiquement un utilisateur par défaut ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Choisissez l'utilisateur par défaut :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Choisissez l'environnement graphique :"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Choisissez la langue :"
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 ""
"Vous pouvez choisir d'autres langues.\n"
"Elles seront disponibles aprčs l'installation."
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Tout"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Autoriser tous les utilisateurs"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personnalisée"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Pas de partage"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Le paquetage %s doit ętre installé. Voulez-vous l'installer ?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Voulez-vous exporter par NFS (protocole Unix) ou SMB (protocole Windows)?"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Le paquetage %s, qui est obligatoire, est manquant"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"Voulez-vous permettre aux utilisateurs de partager certains sous-répertoires de leur répertoire personnel (/home) ?\n"
-"Permettre cela autorisera les utilisateurs ŕ cliquer simplement sur Ť Partager ť dans konqueror et nautilus.\n"
+"Voulez-vous permettre aux utilisateurs de partager certains sous-répertoires "
+"de leur répertoire personnel (/home) ?\n"
+"Permettre cela autorisera les utilisateurs ŕ cliquer simplement sur "
+"Ť Partager ť dans konqueror et nautilus.\n"
"\n"
"Ť Personnalisée ť permet de choisir pour chaque utilisateur.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annuler"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Lancer userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1140,31 +980,31 @@ msgstr ""
"Le partage par utilisateur utilise le groupe Ť fileshare ť.\n"
"Vous pouvez utiliser userdrake pour rajouter un utilisater dans ce groupe."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bienvenue aux pirates"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Trčs faible"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Élevée"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Plus élevée"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoďaque"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1172,11 +1012,10 @@ msgid ""
msgstr ""
"Ce niveau de sécurité doit ętre utilisé avec précaution. Il rend votre\n"
"systčme plus facile ŕ utiliser, aux dépens de la sécurité. Il ne devrait\n"
-"donc pas ętre utilisé sur une machine connectée ŕ un réseau ou ŕ "
-"l'internet.\n"
+"donc pas ętre utilisé sur une machine connectée ŕ un réseau ou ŕ Internet.\n"
"Aucun mot de passe n'est requis."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1184,15 +1023,15 @@ msgstr ""
"Les mots de passe sont maintenant requis. Pour autant, il n'est pas\n"
"recommandé d'utiliser cette machine sur un réseau."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
"Ceci est le niveau de sécurité standard recommandé pour un ordinateur \n"
-"utilisé pour se connecter ŕ l'internet en tant que client."
+"utilisé pour se connecter ŕ Internet en tant que client."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1200,13 +1039,14 @@ msgstr ""
"Il y a déjŕ des restrictions, et des vérifications automatiques sont "
"effectuées chaque nuit."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Avec ce niveau de sécurité, l'utilisation de cette machine en tant que\n"
"serveur devient envisageable. La sécurisation est suffisamment forte pour\n"
@@ -1214,41 +1054,41 @@ msgstr ""
"seulement connectée en tant que client sur Internet, vous devriez plutôt\n"
"choisir un niveau inférieur."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Ce niveau de sécurité est basé sur le précédent mais le systčme est "
"maintenant\n"
"complčtement clos (vu du réseau). La sécurité est maximale."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Choisissez le niveau de sécurité"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Niveau de sécurité"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Utilisation de Ť libsafe ť pour les serveurs"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Une bibliothčque qui protčge contre les attaques par débordement de pile.\n"
"(les plus fréquentes)"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Administrateur sécurité (identifiant (login) ou adresse email)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1265,52 +1105,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bienvenue dans GRUB, le chargeur de systemes d'exploitation"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Utilisez les touches %c et %c pour faire votre choix."
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Appuyez sur <Entree> pour demarrer, sur <e> pour modifier la"
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commande de demarrage ou sur <c> pour utiliser la ligne de commande."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Demarrage automatique dans %d secondes."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
-msgstr "il n'y a pas assez de place dans le dossier /boot"
+msgstr "il n'y a pas assez de place dans le répertoire /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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Bureau"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Menu Démarrer"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
@@ -1325,15 +1165,19 @@ msgstr "pas d'aide disponible pour l'instant.\n"
msgid "Boot Style Configuration"
msgstr "Configuration du style de démarrage"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fichier"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fichier/_Quitter"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1368,14 +1212,14 @@ msgstr "Menu d'amorçage"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Le choix du systčme d'exploitation est actuellement géré par %s.\n"
"Vous pouvez ici modifier la liste du menu d'amorçage."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configurer"
@@ -1385,7 +1229,7 @@ msgid "System mode"
msgstr "Choix pour l'interface utilisateur"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Lancer l'interface graphique au démarrage"
#: ../../bootlook.pm_.c:148
@@ -1396,14 +1240,16 @@ msgstr "Ne pas connecter automatiquement un utilisateur"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Connexion automatique (choisir utilisateur et environnement)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1451,7 +1297,7 @@ msgstr "Impossible de faire des captures d'écran avant le partitionnement"
msgid "Screenshots will be available after install in %s"
msgstr "Les captures d'écran seront disponibles aprčs l'installation dans %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "France"
@@ -1459,7 +1305,7 @@ msgstr "France"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgique"
@@ -1483,11 +1329,12 @@ msgstr "Norvčge"
msgid "Sweden"
msgstr "Sučde"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Pays-Bas"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italie"
@@ -1495,7 +1342,7 @@ msgstr "Italie"
msgid "Austria"
msgstr "Autriche"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "États-Unis"
@@ -1505,8 +1352,8 @@ msgstr ""
"Avant d'utiliser un logiciel de partitionnement de disques,\n"
"il est prudent de faire une copie de sauvegarde de vos données !!"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "MISE EN GARDE"
@@ -1519,11 +1366,12 @@ msgstr ""
"Si vous voulez utiliser Ť aboot ť, vous devez réserver\n"
"un espace libre d'au moins 2048 secteurs au début du disque."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Erreur"
@@ -1531,11 +1379,11 @@ msgstr "Erreur"
msgid "Wizard"
msgstr "Assistant"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Choisissez une action"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1547,77 +1395,77 @@ msgstr ""
"Vous devriez la réduire pour pouvoir créer d'autres partitions :\n"
"cliquez sur la partition puis sur Ť Redimensionner ť."
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Veuillez cliquer sur une partition"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Détails"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "SF journalisé"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Vide"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Autre"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Types des systčmes de fichiers :"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Créer"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Utilisez plutôt Ť %s ť"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Supprimer"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Cliquez d'abord sur Ť Démonter ť"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1625,67 +1473,72 @@ msgstr ""
"Aprčs avoir modifié le type de la partition %s, toutes les données\n"
"présentes sur cette partition seront perdues."
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Choisissez une partition"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Choisissez une autre partition"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Quitter"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Passer en mode expert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Passer en mode normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "État précédent"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Désirez-vous tout de męme continuer ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Quitter sans sauvegarder"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Désirez-vous réellement quitter sans écrire la table des partitions ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Désirez-vous sauvegarder les modifications de /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Partitionnement automatique"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Supprimer toutes les partitions"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Davantage"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informations sur les disques durs"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Toutes les partitions primaires sont utilisées"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Impossible d'ajouter une partition"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1693,31 +1546,31 @@ msgstr ""
"Pour pouvoir utiliser plus de partitions, vous devez d'abord en supprimer "
"une pour la remplacer par une partition étendue."
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Sauvegarder la table des partitions..."
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Charger une table des partitions..."
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Deviner automatiquement la table des partitions"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Relire la table des partitions"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Auto-montage des périphériques amovibles"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Sélectionnez un fichier"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1726,11 +1579,11 @@ msgstr ""
"n'a pas la męme taille que le disque.\n"
"Désirez-vous tout de męme continuer ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Attention"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1738,122 +1591,129 @@ msgstr ""
"Insérez une disquette dans le lecteur.\n"
"Toutes les données présentes sur cette disquette seront perdues."
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Tentative de lecture de l'organisation des partitions..."
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Informations détaillées"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Point de montage"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Options"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionner"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Déplacer"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formater"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Monter"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ajouter au RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ajouter au LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Démonter"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Supprimer du RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Supprimer du LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifier le RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Utiliser pour loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Créer une nouvelle partition"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Secteur de début : "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Taille en Mo : "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Type du systčme de fichiers : "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Point de montage : "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Préférence : "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Supprimer le fichier loopback ?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Changement du type de partition"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quel systčme de fichiers désirez-vous utiliser ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Passage de ext2 ŕ ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Oů désirez-vous monter le fichier loopback %s ?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Oů désirez-vous monter la partition %s ?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1861,131 +1721,136 @@ msgstr ""
"Il est impossible de désélectionner ce point de montage car il est\n"
"utilisé pour le loopback. Veuillez supprimer ce dernier d'abord."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calcul des limites du systčme de fichiers FAT ..."
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionnement"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Cette partition ne peut pas ętre redimensionnée"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr ""
"Toutes les données présentes sur cette partition\n"
"devraient avoir été sauvegardées."
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Aprčs avoir redimensionné la partition %s, toutes les données présentes\n"
"sur cette partition seront perdues"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Choisissez la nouvelle taille"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nouvelle taille en Mo : "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Sur quel disque voulez-vous la déplacer ?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Secteur"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Sur quel secteur voulez-vous la déplacer ?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Déplacement"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Déplacement de la partition..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Choisissez un RAID existant"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "Nouveau"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Choisissez un LVM existant"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Nom LVM ?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Cette partition ne peut pas ętre utilisée pour du loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nom du fichier loopback :"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Donnez un nom de fichier"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ce fichier est déjŕ utilisé par un autre loopback.\n"
"Veuillez en choisir un autre."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Le fichier existe déjŕ. Faut-il l'utiliser ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Options de montage"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Divers"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "Périphérique"
+msgstr "périphérique"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "Niveau de RAID"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "Taille de bloc"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Soyez prudent : cette opération est dangereuse."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Quel type de partitionnement ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Le paquetage %s doit ętre installé. Voulez-vous l'installer ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1993,11 +1858,11 @@ msgid ""
"need /boot"
msgstr ""
"Le programme d'amorçage LILO ne peut pas fonctionner si vous placez\n"
-"la partition du dossier /boot aussi loin sur le disque (c'est-ŕ-dire\n"
+"la partition du répertoire /boot aussi loin sur le disque (c'est-ŕ-dire\n"
"au delŕ du 1024čme cylindre). Si vous n'utilisez pas LILO, vous n'avez\n"
-"pas besoin de partition spécifique pour le dossier /boot."
+"pas besoin de partition spécifique pour le répertoire /boot."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -2006,9 +1871,10 @@ msgid ""
msgstr ""
"Attention, votre partition racine se situe au delŕ du 1024čme cylindre.\n"
"Si vous comptez utiliser le programme d'amorçage LILO, vous devez créer\n"
-"une autre partition juste pour le dossier /boot en deçŕ du 1024čme cylindre."
+"une autre partition juste pour le répertoire /boot en deçŕ du 1024čme "
+"cylindre."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2016,135 +1882,135 @@ msgid ""
msgstr ""
"Attention, vous avez choisi une partition RAID logiciel comme partition\n"
"racine. Pour que votre systčme puisse démarrer, vous devez ajouter\n"
-"une partition non RAID, spécifique pour le dossier /boot."
+"une partition non RAID, spécifique pour le répertoire /boot."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
"La table des partitions de %s va maintenant ętre écrite sur le disque !"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Vous devez redémarrer pour que les modifications soient prises en compte"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Aprčs avoir formaté la partition %s, toutes les données présentes\n"
"sur cette partition seront perdues."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatage"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatage du fichier loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatage de la partition %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Cacher les fichiers"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Déplacer les fichiers sur la nouvelle partition"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-"Le dossier %s contient déjŕ des données\n"
+"Le répertoire %s contient déjŕ des données\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Déplacement des fichiers sur la nouvelle partition..."
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copie de %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Suppression de %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partition %s est maintenant connue comme %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Périphérique : "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lettre de lecteur DOS supposée : %s:\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Type : "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nom : "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Début : secteur %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Taille : %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s secteurs"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylindre %d ŕ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatée\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Non formatée\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montée\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "Appartient au RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2153,7 +2019,7 @@ msgstr ""
"Fichier(s) loopback :\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2161,27 +2027,27 @@ msgstr ""
"Partition d'amorçage par défaut\n"
"(pour DOS/Windows, pas pour LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "RAID de niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Taille de bloc %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "disques RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom du fichier loopback : %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2193,7 +2059,7 @@ msgstr ""
"soit une partition de pilotes systčmes,\n"
"vous ne devriez pas la toucher.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2205,62 +2071,62 @@ msgstr ""
"est nécessaire si vous avez plusieurs\n"
"systčmes d'exploitation. \n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Taille : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Géométrie : %s cylindres, %s tętes, %s secteurs\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Information : "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "disques LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Table des partitions de type : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "sur bus %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "sur canal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Options : %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Clef de chiffrement du systčme de fichiers"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Choisissez la clef de chiffrement du systčme de fichiers"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Cette clef de chiffrement est trop courte (minimum %d caractčres)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Les clefs de chiffrement ne correspondent pas"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Clef de chiffrement"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Clef de chiffrement (confirmation)"
@@ -2269,35 +2135,62 @@ msgid "Change type"
msgstr "Changer le type"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Veuillez cliquer sur une source"
+msgid "Please click on a medium"
+msgstr "Veuillez cliquer sur un médium"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Impossible de se connecter avec le nom %s (mauvais mot de passe?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domaine d'authentification nécessaire"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Un autre"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Quel nom d'utilisateur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Veuillez entrez vos nom d'utilisateur, mot de passe et nom de domaine pour "
+"accéder ŕ ce serveur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Nom d'utilisateur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domaine"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Rechercher les serveurs"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "le formatage au format %s de %s a échoué"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Impossible de formater %s au format %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "le montage de la partition %s dans le répertoire %s a échoué"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck a échoué avec le code de sortie %d ou le signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "Le démontage de %s a échoué : %s"
@@ -2314,72 +2207,318 @@ msgstr "avec /usr"
msgid "server"
msgstr "serveur"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Les partitions JFS doivent faire plus de 16 Mo."
+msgstr "Les partitions JFS doivent faire au moins 16 Mo."
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Les partitions ReiserFS doivent faire plus de 32 Mo."
+msgstr "Les partitions ReiserFS doivent faire au moins 32 Mo."
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Les points de montage doivent commencer par /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Le point de montage %s est déjŕ utilisé\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
"Vous ne pouvez pas utiliser une partition logique LVM pour le point de "
"montage %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
-msgstr "Ce dossier devrait rester dans la partition racine"
+msgstr "Ce répertoire doit rester dans la partition racine"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Vous avez besoin d'un vrai systčme de fichiers (ext2, reiserfs) pour ce "
-"point de montage\n"
+"Vous avez besoin d'un vrai systčme de fichiers (ext2/ext3, reiserfs, xfs, ou "
+"jfs) pour ce point de montage\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Vous ne pouvez pas utiliser de systčme de fichiers crypté pour le point de "
"montage %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Pas assez d'espace libre pour le partitionnement automatique"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Rien ŕ faire"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erreur lors de l'ouverture de %s en écriture : %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Une erreur est survenue : aucun périphérique valide n'a été trouvé pour\n"
"créer de nouvelles partitions. Veuillez vérifier votre matériel."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Vous n'avez défini aucune partition !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Auto-détecter"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Inconnu|Générique"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Inconnu|CPH05X (bt878) [nombreux vendeurs]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Inconnu|CPH06X (bt878) [nombreux vendeurs]"
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+"Pour la plupart des cartes TV récentes, le module bttv du noyau GNU/Linux "
+"auto-détecte tout seul les bons paramčtres.\n"
+"Si votre carte est mal détectée, vous pouvez donner les types de tuner et de "
+"carte corrects ici. Vous n'avez qu'a sélectionner les paramčtres nécessaires "
+"ŕ votre carte TV si nécessaire."
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Modčle de carte :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "Réglage de la BVP (PLL)"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Nombre de tampons de capture"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "nombre de tampons pour la capture via mmap()"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Type de tuner :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Support de la radio :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "activer le support de la radio"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Quitter"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Aide"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Aide..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_A propos..."
+
+#: ../../harddrake/ui.pm_.c:22
+msgid "Model"
+msgstr "Modčle"
+
+#: ../../harddrake/ui.pm_.c:22
+msgid "hard disk model"
+msgstr "Modčle de disque dur"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "Channel"
+msgstr "Canal"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr "Nappe EIDE/Canal SCSI"
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Bus"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+"ceci est le bus physique sur lequel le périphérique est connecté (ex: PCI, "
+"USB, ...)"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Module"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "le module du noyau GNU/Linux qui gčre ce périphérique"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Classe de matériel"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr "classe de matériel"
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Description"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr "ce champs décrit le périphérique"
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "IDs du matériel"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+"- péphériques PCI et USB: liste des identifiants vendeur, péphériques, sous-"
+"vendeur, sous-péphériques PCI/USB"
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Position sur le bus"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+"- péphériques PCI: slot, péphériques et fonction PCI de cette carte\n"
+"- péphériques EIDE: ce péphériques est soit maitre soit esclave\n"
+"- péphériques SCSI: the bus et l'identifiant SCSI"
+
+#: ../../harddrake/ui.pm_.c:38
+msgid "Old device file"
+msgstr "Ancien nom de péphérique"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr "ancien nom de périphérique statique utilisé dans le paquetage dev"
+
+#: ../../harddrake/ui.pm_.c:40
+msgid "New devfs device"
+msgstr "Nouveau périphérique devfs"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "nouveau nom de périphérique dynamique généré par le kernel"
+
+#: ../../harddrake/ui.pm_.c:42
+msgid "Number of buttons"
+msgstr "Nombre de bouttons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr "le nom du vendeur de ce périphérique"
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Harddrake2 version"
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Matériel détecté"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informations"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Lancer l'outil de configuration"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Configuration du module"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Détection en cours"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Veuillez patienter"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "maître"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "esclave"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Lancement de Ť %s ť..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "A propos de Harddrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Harddrake est l'outil de configuration Mandrake du matériel.\n"
+"Version:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Auteur:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Aide de Harddrake"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+"Description des champs:\n"
+"\n"
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
#: ../../help.pm_.c:13
@@ -2395,7 +2534,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2411,36 +2550,36 @@ msgid ""
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default)."
msgstr ""
-"GNU/Linux est un systčme multi-utilisateurs, ce qui signifie généralement que chaque\n"
-"utilisateur peut avoir des préférences différences, ses propres fichiers,\n"
-"etc. Pour plus d'informations, consultez le manuel d'utilisation.\n"
+"GNU/Linux est un systčme multi-utilisateurs, ce qui signifie generalement\n"
+"que chaque utilisateur peut avoir des preferences differences, ses propres\n"
+"fichiers, etc. Pour plus d'informations, consultez le manuel d'utilisation.\n"
"Contrairement ŕ Ť root ť qui a tous les droits, les utilisateurs que vous\n"
"ajouterez ici n'auront que des permissions pour agir sur leurs propres\n"
"fichiers exclusivement.\n"
"\n"
-"L'utilisateur/administrateur devrait également se créer un compte\n"
+"L'utilisateur/administrateur devrait egalement se creer un compte\n"
"Ť normal ť. C'est ŕ travers cet utilisateur que celui-ci devrait se\n"
"connecter pour accomplir ses tâches quotidiennes. Car, bien qu'il soit\n"
-"pratique d'avoir tous les accčs, cette situation peut également engendrer\n"
-"des situations désastreuses si un fichier est détruit par inadvertance. Un\n"
+"pratique d'avoir tous les accčs, cette situation peut egalement engendrer\n"
+"des situations desastreuses si un fichier est detruit par inadvertance. Un\n"
"utilisateur normal n'ayant pas accčs aux fichiers sensibles, ne peut causer\n"
"de dommages majeurs.\n"
"\n"
"Il faut d'abord entrer le vrai nom de la personne. Évidemment, vous pouvez\n"
-"y inscrire n'importe quoi. DrakX prendra le premier mot inséré et le\n"
-"transposera comme Ť Nom de login ť. C'est le nom qui sera utilisé pour se\n"
+"y inscrire n'importe quoi. DrakX prendra le premier mot insere et le\n"
+"transposera comme Ť Nom de login ť. C'est le nom qui sera utilise pour se\n"
"connecter au systčme. Vous pouvez le modifier. Il faut maintenant entrer un\n"
"mot de passe. Celui-ci n'est pas aussi crucial que le mot de passe de\n"
"Ť root ť, mais ce n'est pas une raison pour rentrer 123456. Aprčs tout,\n"
-"ceci mettrait vos fichiers en péril.\n"
+"ceci mettrait vos fichiers en peril.\n"
"\n"
"Si vous cliquez Ť Accepter ť, il vous sera possible d'ajouter d'autres\n"
-"utilisateurs. Créez un utilisateur différent pour chaque personne devant\n"
-"utiliser votre ordinateur. Une fois chaque utilisateur défini, cliquez sur\n"
+"utilisateurs. Creez un utilisateur different pour chaque personne devant\n"
+"utiliser votre ordinateur. Une fois chaque utilisateur defini, cliquez sur\n"
"Ť Terminer ť.\n"
"\n"
-"En cliquant sur Ť Avancé ť, vous pourrez sélectionner un Ť shell ť\n"
-"différent pour cet utilisateur (bash est assigné par défaut)."
+"En cliquant sur Ť Avance ť, vous pourrez selectionner un Ť shell ť\n"
+"different pour cet utilisateur (bash est assigne par defaut)."
#: ../../help.pm_.c:41
msgid ""
@@ -2516,10 +2655,10 @@ msgid ""
"knows if a selected package is located on another CD-ROM and will eject the\n"
"current CD and ask you to insert a different one as required."
msgstr ""
-"Les paquetages requis ŕ l'installation de Mandrake Linux sont distribués sur plusieurs\n"
-"CDROM. Heureusement, DrakX connaît l'emplacement de chacun des paquetages.\n"
-"Il éjectera celui présent dans le lecteur et vous demandera d'insérer le\n"
-"CDROM approprié, selon le cas."
+"Les paquetages requis ŕ l'installation de Mandrake Linux sont distribues\n"
+"sur plusieurs CDROM. Heureusement, DrakX connaît l'emplacement de chacun\n"
+"des paquetages. Il ejectera celui present dans le lecteur et vous demandera\n"
+"d'inserer le CDROM approprie, selon le cas."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2537,9 +2676,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2576,61 +2714,62 @@ msgid ""
"groups to avoid installing any new package. This is useful for repairing or\n"
"updating an existing system."
msgstr ""
-"C'est maintenant le moment de choisir les paquetages qui seront installés\n"
-"sur votre systčme. Sachez que Mandrake Linux contient plusieurs milliers de paquetages ŕ\n"
-"installer, et qu'il n'est pas nécessaire de tous les connaître par coeur.\n"
+"C'est maintenant le moment de choisir les paquetages qui seront installes\n"
+"sur votre systčme. Sachez que Mandrake Linux contient plusieurs milliers de\n"
+"paquetages ŕ installer, et qu'il n'est pas necessaire de tous les connaître\n"
+"par coeur.\n"
"\n"
"Si vous ętes en train de faire une installation normale ŕ partir d'un\n"
-"CDROM, il vous sera d'abord demandé de spécifier quel CD vous avez (en mode\n"
-"Expert). Vérifier les étiquettes et cliquez sur les boîtes leur étant\n"
-"associées. Cliquez sur Ť OK ť, lorsque vous ętes pręt ŕ continuer.\n"
+"CDROM, il vous sera d'abord demande de specifier quel CD vous avez (en mode\n"
+"Expert). Verifier les etiquettes et cliquez sur les boîtes leur etant\n"
+"associees. Cliquez sur Ť OK ť, lorsque vous ętes pręt ŕ continuer.\n"
"\n"
-"Les paquetages sont regroupés selon la nature de l'installation. Les\n"
-"groupes sont divisés en quatre sections principales:\n"
+"Les paquetages sont regroupes selon la nature de l'installation. Les\n"
+"groupes sont divises en quatre sections principales :\n"
"\n"
" * Ť Station de travail ť: si vous comptez utiliser votre machine ainsi,\n"
-"sélectionner un ou plusieurs groupes y correspondant.\n"
+"selectionner un ou plusieurs groupes y correspondant.\n"
"\n"
-" * Ť Environnement graphique ť: ce groupe vous permettra de déterminer quel\n"
+" * Ť Environnement graphique ť: ce groupe vous permettra de determiner quel\n"
"environnement graphique vous voulez avoir sur votre systčme. Évidemment, il\n"
"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
"\n"
-" * Ť Développement ť: si votre systčme sera utilisé pour la programmation,\n"
-"choisissez les groupes désirés.\n"
+" * Ť Developpement ť: si votre systčme sera utilise pour la programmation,\n"
+"choisissez les groupes desires.\n"
"\n"
" * Ť Serveur ť: finalement, si vous systčme doit agir en tant que serveur,\n"
-"vous pourrez sélectionner les services que vous voulez installer.\n"
+"vous pourrez selectionner les services que vous voulez installer.\n"
"\n"
-" * Ť Environnement graphique ť: ce groupe vous permettra de déterminer quel\n"
+" * Ť Environnement graphique ť: ce groupe vous permettra de determiner quel\n"
"environnement graphique vous voulez avoir sur votre systčme. Évidemment, il\n"
"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
"\n"
"En plaçant votre souris au dessus d'un nom de groupe, vous verrez\n"
-"apparaître une courte description de ce groupe. Si vous désélectionnez tous\n"
+"apparaître une courte description de ce groupe. Si vous deselectionnez tous\n"
"les groupes lors d'une installation standard (par opposition ŕ une mise ŕ\n"
-"jour), un dialogue apparaîtra proposant différentes options pour une\n"
-"installation minimale:\n"
+"jour), un dialogue apparaîtra proposant differentes options pour une\n"
+"installation minimale :\n"
"\n"
-" * Ť Avec X ť: installe le moins de paquetages possible pour avoir un\n"
-"environnement de travail graphique;\n"
+" * Ť Avec X ť : installe le moins de paquetages possible pour avoir un\n"
+"environnement de travail graphique ;\n"
"\n"
-" * Ť Avec la documentation de base ť: installe le systčme de base plus\n"
+" * Ť Avec la documentation de base ť : installe le systčme de base plus\n"
"certains utilitaires de base et leur documentation. Cette installation est\n"
-"utilisable comme base pour monter un serveur;\n"
+"utilisable comme base pour monter un serveur ;\n"
"\n"
-" * Ť Installation vraiment minimale ť: installera le strict minimum\n"
-"nécessaire pour obtenir un systčme fonctionnel, en ligne de commande. Cette\n"
-"installation prends ŕ peu prčs 65Mo.\n"
+" * Ť Installation vraiment minimale ť : installera le strict minimum\n"
+"necessaire pour obtenir un systčme GNU/Linux fonctionnel, en ligne de\n"
+"commande. Cette installation prends ŕ peu prčs 65Mo.\n"
"\n"
-"Vous pouvez finalement cocher l'option Ť Sélection individuelle des\n"
+"Vous pouvez finalement cocher l'option Ť Selection individuelle des\n"
"paquetages ť. Cette option est ŕ utiliser si vous connaissez exactement le\n"
-"paquetage désiré ou si vous voulez avoir le contrôle total de votre\n"
+"paquetage desire ou si vous voulez avoir le contrôle total de votre\n"
"installation.\n"
"\n"
-"Si vous avez démarré l'installation en mode \"mise ŕ jour\", vous pouvez\n"
-"\"dé-sélectionner\" tous les groupes afin d'éviter l'installation de\n"
+"Si vous avez demarre l'installation en mode \"mise ŕ jour\", vous pouvez\n"
+"\"de-selectionner\" tous les groupes afin d'eviter l'installation de\n"
"nouveaux programmes. Cette option est trčs utile pour restaurer un systčme\n"
-"défectueux."
+"defectueux."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2671,41 +2810,41 @@ msgid ""
"another installation. See the second tip of last step on how to create such\n"
"a floppy."
msgstr ""
-"Finalement, si vous avez choisi de sélectionner individuellement les\n"
-"paquetages ŕ installer, DrakX vous présentera un arbre contenant tous les\n"
-"paquetages, classés par groupes et sous-groupes. En naviguant ŕ travers\n"
-"l'arbre, vous pouvez sélectionner des groupes, des sous-groupes ou des\n"
+"Finalement, si vous avez choisi de selectionner individuellement les\n"
+"paquetages ŕ installer, DrakX vous presentera un arbre contenant tous les\n"
+"paquetages, classes par groupes et sous-groupes. En naviguant ŕ travers\n"
+"l'arbre, vous pouvez selectionner des groupes, des sous-groupes ou des\n"
"paquetages individuels.\n"
"\n"
-"Dčs que vous sélectionnez un paquetage dans l'arbre, une descriptions\n"
-"apparaît ŕ droite. Une fois votre sélection complétée, cliquez sur\n"
+"Dčs que vous selectionnez un paquetage dans l'arbre, une descriptions\n"
+"apparaît ŕ droite. Une fois votre selection completee, cliquez sur\n"
"Ť Installation ť pour lancer le processus. Soyez patient, car en fonction\n"
-"du type d'installation choisi ou du nombre de paquetages sélectionnés, le\n"
-"temps requis peut ętre substantiellement différent. Une estimation du temps\n"
-"requis est présentée sur l'écran en cours d'opération afin de vous\n"
-"permettre d'évaluer de combien de temps vous disposez pour prendre votre\n"
-"déjeuner.\n"
-"\n"
-"!! Si un logiciel serveur a été sélectionné, vous devrez confirmer que vous\n"
-"voulez vraiment que celui-ci soit installé. Sous Mandrake, par défaut, tous\n"
-"les serveurs installés sont lancés au démarrage. Malgré tous les efforts\n"
-"investis pour vous livrer une distribution Linux sécuritaire, il est\n"
-"possible que certaines failles de sécurité affectes les serveurs installés\n"
-"au-delŕ de la date de publication. Si vous ne savez pas précisément ŕ quoi\n"
-"sert un serveur en particulier ou pourquoi il est installé, cliquez sur\n"
-"Ť NON ť. En cliquant sur Ť OUI ť, le serveur sera installé et le service\n"
-"rendu disponible au démarrage. !!\n"
-"\n"
-"L'option Ť Dépendances automatiques ť désactive les avertissements qui\n"
-"apparaissent ŕ chaque fois que l'installeur sélectionne un nouveau paquet.\n"
-"Ces avertissements surviennent parce que DrakX a déterminé que pour qu'un\n"
-"paquetage soit fonctionnel, il lui en faut un autre dont il est dépendant.\n"
+"du type d'installation choisi ou du nombre de paquetages selectionnes, le\n"
+"temps requis peut ętre substantiellement different. Une estimation du temps\n"
+"requis est presentee sur l'ecran en cours d'operation afin de vous\n"
+"permettre d'evaluer de combien de temps vous disposez pour prendre votre\n"
+"dejeuner.\n"
+"\n"
+"!! Si un logiciel serveur a ete selectionne, vous devrez confirmer que vous\n"
+"voulez vraiment que celui-ci soit installe. Sous Mandrake, par defaut, tous\n"
+"les serveurs installes sont lances au demarrage. Malgre tous les efforts\n"
+"investis pour vous livrer une distribution Linux securitaire, il est\n"
+"possible que certaines failles de securite affectes les serveurs installes\n"
+"au-delŕ de la date de publication. Si vous ne savez pas precisement ŕ quoi\n"
+"sert un serveur en particulier ou pourquoi il est installe, cliquez sur\n"
+"Ť NON ť. En cliquant sur Ť OUI ť, le serveur sera installe et le service\n"
+"rendu disponible au demarrage. !!\n"
+"\n"
+"L'option Ť Dependances automatiques ť desactive les avertissements qui\n"
+"apparaissent ŕ chaque fois que l'installeur selectionne un nouveau paquet.\n"
+"Ces avertissements surviennent parce que DrakX a determine que pour qu'un\n"
+"paquetage soit fonctionnel, il lui en faut un autre dont il est dependant.\n"
"\n"
"La petite icône de disquette qui apparaît au bas de la liste permet de\n"
-"récupérer une liste de paquetages sélectionnés durant une autre\n"
-"installation. En cliquant dessus, on vous demandera d'insérer la disquette\n"
-"créée lors d'une installation précédente. Voir la deuxičme note de la\n"
-"derničre étape afin de savoir comment créer une telle disquette."
+"recuperer une liste de paquetages selectionnes durant une autre\n"
+"installation. En cliquant dessus, on vous demandera d'inserer la disquette\n"
+"creee lors d'une installation precedente. Voir la deuxičme note de la\n"
+"derničre etape afin de savoir comment creer une telle disquette."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2732,27 +2871,27 @@ msgid ""
"If you wish to configure the network later after installation, or if you\n"
"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Si vous désirez connecter votre systčme ŕ un réseau ou ŕ l'Internet,\n"
-"cliquez sur Ť OK ť. L'autodétection des périphériques réseau et modems sera\n"
-"alors lancée. Si cette détection échoue, décochez la case Ť Utiliser\n"
-"l'autodétection ť. Vous pouvez aussi choisir de ne pas configurer le\n"
-"réseau, ou de le faire plus tard. Dans ce cas, cliquez simplement sur\n"
+"Si vous desirez connecter votre systčme ŕ un reseau ou ŕ l'Internet,\n"
+"cliquez sur Ť OK ť. L'autodetection des peripheriques reseau et modems sera\n"
+"alors lancee. Si cette detection echoue, decochez la case Ť Utiliser\n"
+"l'autodetection ť. Vous pouvez aussi choisir de ne pas configurer le\n"
+"reseau, ou de le faire plus tard. Dans ce cas, cliquez simplement sur\n"
"Ť Annuler ť.\n"
"\n"
-"Les types de connexion supportées sont: modem téléphonique, modem ISDN,\n"
-"connexion ADSL, modem câble ou simplement LAN (réseau ethernet).\n"
+"Les types de connexion supportees sont : modem telephonique, modem ISDN,\n"
+"connexion ADSL, modem câble ou simplement LAN (reseau ethernet).\n"
"\n"
-"Nous ne détaillerons pas ici chacune des configurations possible. Assurez\n"
+"Nous ne detaillerons pas ici chacune des configurations possible. Assurez\n"
"vous seulement que vous avez toutes les informations de votre fournisseur\n"
-"de service Internet ŕ portée de main.\n"
+"de service Internet ŕ portee de main.\n"
"\n"
-"Vous pouvez consulter le chapitre du ŤGuide de l'utilisateurť concernant les connexions ŕ Internet\n"
-"pour plus de détails ŕ propos des configurations spécifiques de chaque type\n"
-"de connexion. Vous pouvez également configurer votre connexion ŕ Internet\n"
-"une fois l'installation terminée.\n"
+"Vous pouvez consulter le chapitre du Ť Guide de l'utilisateur ť concernant\n"
+"les connexions ŕ Internet pour plus de details ŕ propos des configurations\n"
+"specifiques de chaque type de connexion. Vous pouvez egalement configurer\n"
+"votre connexion ŕ Internet une fois l'installation terminee.\n"
"\n"
-"Si vous désirez configurer votre réseau plus tard ou si vous avez terminé\n"
-"l'installation de votre réseau, cliquez sur Ť Annuler ť."
+"Si vous desirez configurer votre reseau plus tard ou si vous avez termine\n"
+"l'installation de votre reseau, cliquez sur Ť Annuler ť."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2774,20 +2913,20 @@ msgid ""
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
-"Vous pouvez maintenant choisir les services disponibles au démarrage de\n"
+"Vous pouvez maintenant choisir les services disponibles au demarrage de\n"
"votre systčme.\n"
"\n"
-"Ici sont présentés tous les services disponibles avec l'installation en\n"
-"place. Faites une bonne vérification et enlevez tout ce qui n'est pas\n"
-"absolument nécessaire au démarrage du systčme.\n"
+"Ici sont presentes tous les services disponibles avec l'installation en\n"
+"place. Faites une bonne verification et enlevez tout ce qui n'est pas\n"
+"absolument necessaire au demarrage du systčme.\n"
"\n"
"Vous pouvez obtenir une courte explication des services en les\n"
-"sélectionnant spécifiquement. Cela dit, si vous n'ętes pas certain de\n"
-"l'application d'un service, conservez les paramčtres par défaut\n"
+"selectionnant specifiquement. Cela dit, si vous n'ętes pas certain de\n"
+"l'application d'un service, conservez les paramčtres par defaut\n"
"\n"
-"!! Ŕ cette étape, soyez particuličrement attentif dans le cas d'un systčme\n"
-"destiné ŕ agir comme serveur. Dans ce cas, vous voudrez probablement\n"
-"permettre exclusivement les services nécessaires. !!"
+"!! Ŕ cette etape, soyez particuličrement attentif dans le cas d'un systčme\n"
+"destine ŕ agir comme serveur. Dans ce cas, vous voudrez probablement\n"
+"permettre exclusivement les services necessaires. !!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2806,21 +2945,20 @@ msgid ""
"actually install on your machine a time server which can be optionally used\n"
"by other machines on your local network."
msgstr ""
-"GNU-Linux manipule l'heure au format GMT (Greenwich Mean Time) et la "
-"convertit en\n"
-"temps local selon le fuseau horaire choisi. Il est néanmoins possible de\n"
-"désactiver cela en désélectionnant Ť Horloge systčme réglée sur le méridien\n"
-"de Greenwich ť de façon ŕ ce que l'horloge matérielle soit la męme que\n"
-"celle du systčme. Cela est particuličrement utile si la machine accueille\n"
-"un autre systčme d'exploitation tel que .\n"
+"GNU/Linux manipule l'heure au format GMT (Greenwich Mean Time) et la\n"
+"convertit en temps local selon le fuseau horaire choisi. Il est neanmoins\n"
+"possible de desactiver cela en deselectionnant Ť Horloge systčme reglee sur\n"
+"le meridien de Greenwich ť de façon ŕ ce que l'horloge materielle soit la\n"
+"męme que celle du systčme. Cela est particuličrement utile si la machine\n"
+"accueille un autre systčme d'exploitation tel que Windows.\n"
"\n"
-"La Ť Synchronisation automatique ť permet de régler l'heure automatiquement\n"
+"La Ť Synchronisation automatique ť permet de regler l'heure automatiquement\n"
"en se connectant ŕ un serveur de temps sur Internet. Dans la liste qui est\n"
-"alors présentée, choisissez un serveur géographiquement proche de vous.\n"
+"alors presentee, choisissez un serveur geographiquement proche de vous.\n"
"Vous devez avoir une connexion Internet pour que cela fonctionne bien\n"
"entendu. Cela installera en fait sur votre machine un serveur de temps\n"
-"local qui pourra optionnellement ętre lui-męme utilisé par d'autres\n"
-"machines de votre réseau local."
+"local qui pourra optionnellement ętre lui-męme utilise par d'autres\n"
+"machines de votre reseau local."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2846,13 +2984,13 @@ msgid ""
"after 10 seconds, restoring the screen."
msgstr ""
"X (pour le X Window system) est le coeur de votre interface graphique sous\n"
-"GNU/Linux. Tous les environnements graphiques (Gnome, KDE, Afterstep, ...) présents\n"
-"sur Mandrake Linux dépendent de X. A cette étape, DrakX, va tenter de le configurer\n"
-"automatiquement.\n"
+"GNU/Linux. Tous les environnements graphiques (Gnome, KDE, Afterstep, ...)\n"
+"presents sur Mandrake Linux dependent de X. A cette etape, DrakX, va tenter\n"
+"de le configurer automatiquement.\n"
"\n"
-"Il est trčs rare que cette étape échoue, ŕ moins d'avoir un équipement\n"
-"obsolčte (ou trop récent). Si le processus réussit, il va démarrer X\n"
-"automatiquement avec la meilleure résolution d'écran possible, en fonction\n"
+"Il est trčs rare que cette etape echoue, ŕ moins d'avoir un equipement\n"
+"obsolčte (ou trop recent). Si le processus reussit, il va demarrer X\n"
+"automatiquement avec la meilleure resolution d'ecran possible, en fonction\n"
"de la taille du moniteur. Une fenętre apparaît alors vous demandant si\n"
"cette configuration vous convient.\n"
"\n"
@@ -2861,8 +2999,8 @@ msgstr ""
"manuel pour plus d'information.\n"
"\n"
"Si vous pouvez voir le message et cliquez sur oui, DrakX continuera ŕ la\n"
-"prochaine étape. Si vous ne pouvez voir la fenętre, ceci signifie que le\n"
-"test a échoué et vous serez ramené ŕ l'écran précédant en 10 secondes."
+"prochaine etape. Si vous ne pouvez voir la fenętre, ceci signifie que le\n"
+"test a echoue et vous serez ramene ŕ l'ecran precedant en 10 secondes."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2880,14 +3018,14 @@ msgid ""
"modern graphics card. Then choose \"Test again\" to be sure."
msgstr ""
"Il se peut que vous ne soyez pas entičrement satisfait ŕ la premičre\n"
-"tentative de configuration graphique (écran trop petit, peu de\n"
-"couleurs...). Ainsi, męme si X démarre correctement, DrakX vous demande si\n"
+"tentative de configuration graphique (ecran trop petit, peu de\n"
+"couleurs...). Ainsi, męme si X demarre correctement, DrakX vous demande si\n"
"la configuration vous convient. Il proposera aussi de la changer en\n"
"affichant une liste des modes valides, si possible.\n"
"\n"
"En dernier recours, si vous ne pouvez pas faire fonctionner X, choisissez\n"
-"Ť Changer la carte graphique ť, sélectionnez Ť carte non listée ť, et\n"
-"lorsqu'il vous sera demandé le serveur graphique, choisissez Ť FBDev ť.\n"
+"Ť Changer la carte graphique ť, selectionnez Ť carte non listee ť, et\n"
+"lorsqu'il vous sera demande le serveur graphique, choisissez Ť FBDev ť.\n"
"c'est une option de secours qui fonctionnera sur n'importe quelle carte\n"
"graphique moderne. Choisissez ensuite Ť Tester ŕ nouveau ť pour vous\n"
"assurer que tout va bien."
@@ -2902,17 +3040,17 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Finalement, il vous sera demandé si vous souhaitez obtenir l'interface\n"
-"graphique dčs le démarrage ou non. Notez que cette question sera posée męme\n"
-"si vous choisissez de ne pas tester la configuration. Il est évidemment\n"
-"souhaitable de répondre Ť Non ť si cette machine est un serveur sur\n"
-"laquelle personne n'est censée travailler en mode graphique."
+"Finalement, il vous sera demande si vous souhaitez obtenir l'interface\n"
+"graphique dčs le demarrage ou non. Notez que cette question sera posee męme\n"
+"si vous choisissez de ne pas tester la configuration. Il est evidemment\n"
+"souhaitable de repondre Ť Non ť si cette machine est un serveur sur\n"
+"laquelle personne n'est censee travailler en mode graphique."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2924,9 +3062,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2936,26 +3073,27 @@ msgid ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
msgstr ""
-"Le CDROM d'installation de Mandrake Linux a un mode de récupération prédéfini. Vous pouvez\n"
-"y accéder en démarrant l'ordinateur sur le CDROM. Selon la version de votre\n"
-"Ť BIOS ť, il faut lui spécifier de démarrer sur le CDROM. Vous devriez\n"
-"revenir au disquette de démarrage dans deux cas précis :\n"
+"Le CDROM d'installation de Mandrake Linux a un mode de recuperation\n"
+"predefini. Vous pouvez y acceder en demarrant l'ordinateur sur le CDROM.\n"
+"Selon la version de votre Ť BIOS ť, il faut lui specifier de demarrer sur\n"
+"le CDROM. Vous devriez revenir au disquette de demarrage dans deux cas\n"
+"precis :\n"
"\n"
-" * Au moment d'installer le Ť Programme d'amorce ť, DrakX va réécrire sur le\n"
-"secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
-"permettre de démarrer avec Linux ou Windows (en prenant pour acquis que\n"
-"vous avez deux systčmes d'exploitation installés. Si vous réinstallez\n"
-"Windows, celui-ci va réécrire sur le MBR et il vous sera désormais\n"
-"impossible de démarrer Linux.\n"
+" * Au moment d'installer le Ť Programme d'amorce ť, DrakX va reecrire sur\n"
+"le secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
+"permettre de demarrer avec Linux ou Windows (en prenant pour acquis que\n"
+"vous avez deux systčmes d'exploitation installes. Si vous reinstallez\n"
+"Windows, celui-ci va reecrire sur le MBR et il vous sera desormais\n"
+"impossible de demarrer Linux.\n"
"\n"
-" * Si un problčme survient et qu'il vous est impossible de démarrer ŕ partir\n"
-"du disque dur, cette disquette deviendra votre seul moyen de démarrer votre\n"
-"systčme Linux. Elle contient un bon nombre d'outils pour récupérer un\n"
-"systčme défectueux, peu importe la source du problčme.\n"
+" * Si un problčme survient et qu'il vous est impossible de demarrer\n"
+"GNU/Linux ŕ partir du disque dur, cette disquette deviendra votre seul\n"
+"moyen de demarrer votre systčme Linux. Elle contient un bon nombre d'outils\n"
+"pour recuperer un systčme defectueux, peu importe la source du problčme.\n"
"\n"
-"En cliquant sur cette étape, on vous demandera d'insérer une disquette. La\n"
-"disquette insérée sera complčtement effacée et DrakX se chargera de la\n"
-"formater et d'y insérer les fichiers nécessaires."
+"En cliquant sur cette etape, on vous demandera d'inserer une disquette. La\n"
+"disquette inseree sera complčtement effacee et DrakX se chargera de la\n"
+"formater et d'y inserer les fichiers necessaires."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2994,21 +3132,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -3024,73 +3161,76 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Cette étape vous permet de déterminer précisément l'emplacement de votre\n"
-"installation de Mandrake Linux. Si votre disque est vide ou utilisé par un autre systčme\n"
-"d'exploitation, vous devrez repartitionner votre disque. Partitionner un\n"
-"disque signifie de le diviser précisément afin de créer un espace pour\n"
-"votre installation.\n"
-"\n"
-"Comme les effets du partition sont irréversibles (l'ensemble du disque est\n"
-"effacé), le partitionnement est généralement intimidant et stressant pour\n"
-"un utilisateur inexpérimenté. Heureusement, une interface a été prévue ŕ\n"
-"cet effet. Avant de commencer, révisez vos manuels et surtout, prenez votre\n"
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
+msgstr ""
+"Cette etape vous permet de determiner precisement l'emplacement de votre\n"
+"installation de Mandrake Linux. Si votre disque est vide ou utilise par un\n"
+"autre systčme d'exploitation, vous devrez repartitionner votre disque.\n"
+"Partitionner un disque signifie de le diviser precisement afin de creer un\n"
+"espace pour votre installation.\n"
+"\n"
+"Comme les effets du partition sont irreversibles (l'ensemble du disque est\n"
+"efface), le partitionnement est generalement intimidant et stressant pour\n"
+"un utilisateur inexperimente. Heureusement, une interface a ete prevue ŕ\n"
+"cet effet. Avant de commencer, revisez vos manuels et surtout, prenez votre\n"
"temps.\n"
"\n"
"Si vous ętes en mode expert, l'application DiskDrake, l'outil de\n"
-"partitionnement de Mandrake Linux, vous permettra de déterminer précisément l'emplacement\n"
-"de chacune de vos partitions. Ŕ partir de l'interface d'installation, vous\n"
-"pouvez lancer les assistants en cliquant sur Ť Assistant ť.\n"
+"partitionnement de Mandrake Linux, vous permettra de determiner precisement\n"
+"l'emplacement de chacune de vos partitions. Ŕ partir de l'interface\n"
+"d'installation, vous pouvez lancer les assistants en cliquant sur\n"
+"Ť Assistant ť.\n"
"\n"
-"Si des partitions ont déjŕ été définies, peu importe qu'elles proviennent\n"
+"Si des partitions ont dejŕ ete definies, peu importe qu'elles proviennent\n"
"d'une autre installation ou d'un autre outil de partitionnement, il vous\n"
"suffit de simplement choisir sur quelle partition vous voulez installer\n"
"Mandrake.\n"
"\n"
-"Si vos partitions ne sont pas définies, vous devrez les créer en utilisant\n"
+"Si vos partitions ne sont pas definies, vous devrez les creer en utilisant\n"
"l'assistant. Selon la configuration de votre disque, plusieurs options sont\n"
"disponibles :\n"
"\n"
-" * Ť Utilisez l'espace disponible ť: cette option tentera simplement de\n"
-"partitionner automatiquement l'espace inutilisé sur votre disque. Il n'y\n"
+" * Ť Utilisez l'espace disponible ť : cette option tentera simplement de\n"
+"partitionner automatiquement l'espace inutilise sur votre disque. Il n'y\n"
"aura pas d'autre question.\n"
"\n"
-" * Ť Utiliser les partitions existantes ť: l' assistant a détecté une ou\n"
+" * Ť Utiliser les partitions existantes ť : l' assistant a detecte une ou\n"
"plusieurs partitions existants sur votre disque. Si vous voulez les\n"
"utiliser, choisissez cette option.\n"
"\n"
-" * Ť Utilisez l'espace libre sur une partition Windows ť: si Microsoft Windows est installé\n"
-"sur votre disque et prend l'ensemble de l'espace vous devez créer une place\n"
-"pour votre installation Mandrake. Pour ce faire, vous pouvez tout effacer\n"
-"(voir Ť effacer tout le disque ť ou Ť Mode expert ť) ou vous pouvez\n"
-"redimensionner l'espace utilisé par GNU/Linux. Le redimensionnement peut ętre\n"
-"effectué sans pertes de données, ŕ condition que vous ayez préalablement\n"
-"défragmenté la partition Windows. Une sauvegarde de Vos données ne fera pas de mal\n"
-"non plus. Cette seconde option peut ętre accomplie sans perte de données.\n"
-"Cette solution est recommandée pour faire cohabiter Linux et Windows sur le\n"
-"męme ordinateur.\n"
-"\n"
-" Avant de choisir cette option, il faut comprendre qu'aprčs cette procédure\n"
-"l'espace disponible pour Windows sera réduit. Vous aurez moins d'espace\n"
-"pour installer des logiciels ou sauvegarder de l'information avec Windows.\n"
-"\n"
-" * Ť Effacer tout le disque ť: si vous voulez effacer toutes les données et\n"
-"les applications installées sur votre systčme et les remplacer par votre\n"
-"nouveau systčme Mandrake Linux, choisissez cette option. Soyez prudent, car ce choix est\n"
-"irréversible et permanent. Il vous sera impossible de retrouver vos données\n"
-"effacées.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble du contenu de votre disque sera\n"
-"détruit. !!\n"
-"\n"
-" * Ť Supprimer Microsoft Windows ť: ce choix effacera tout simplement ce que\n"
-"contient le disque et recommencera ŕ zéro. Toutes les données et les\n"
-"programmes présents sur le disque seront effacés.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble de votre disque sera effacé. !!\n"
+" * Ť Utilisez l'espace libre sur une partition Windows ť : si Microsoft\n"
+"Windows est installe sur votre disque et prend l'ensemble de l'espace vous\n"
+"devez creer une place pour votre installation Mandrake. Pour ce faire, vous\n"
+"pouvez tout effacer (voir Ť effacer tout le disque ť ou Ť Mode expert ť) ou\n"
+"vous pouvez redimensionner l'espace utilise par Windows. Le\n"
+"redimensionnement peut ętre effectue sans pertes de donnees, ŕ condition\n"
+"que vous ayez prealablement defragmente la partition Windows. Une\n"
+"sauvegarde de Vos donnees ne fera pas de mal non plus. Cette seconde option\n"
+"peut ętre accomplie sans perte de donnees. Cette solution est recommandee\n"
+"pour faire cohabiter Linux et Windows sur le męme ordinateur.\n"
+"\n"
+" Avant de choisir cette option, il faut comprendre qu'aprčs cette\n"
+"procedure l'espace disponible pour Windows sera reduit. Vous aurez moins\n"
+"d'espace pour installer des logiciels ou sauvegarder de l'information avec\n"
+"Windows.\n"
+"\n"
+" * Ť Effacer tout le disque ť: si vous voulez effacer toutes les donnees et\n"
+"les applications installees sur votre systčme et les remplacer par votre\n"
+"nouveau systčme Mandrake Linux, choisissez cette option. Soyez prudent, car\n"
+"ce choix est irreversible et permanent. Il vous sera impossible de\n"
+"retrouver vos donnees effacees.\n"
+"\n"
+" !! En choisissant cette option, l'ensemble du contenu de votre disque\n"
+"sera detruit. !!\n"
+"\n"
+" * Ť Supprimer Microsoft Windows ť: ce choix effacera tout simplement ce\n"
+"que contient le disque et recommencera ŕ zero. Toutes les donnees et les\n"
+"programmes presents sur le disque seront effaces.\n"
+"\n"
+" !! En choisissant cette option, l'ensemble de votre disque sera efface.\n"
+"!!\n"
"\n"
" * Ť Mode expert ť: permet de partitionner manuellement votre disque. Soyez\n"
"prudent, parce que bien que plus puissante, cette option est dangereuse.\n"
@@ -3118,9 +3258,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3133,35 +3272,36 @@ msgid ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
-"Votre installation de Mandrake Linux est maintenant terminée et votre systčme est pręt ŕ\n"
-"ętre utilisé. Cliquez sur Ť OK ť pour redémarrer votre systčme. Vous aurez\n"
-"alors le choix de démarrer ou Windows (s'il est présent).\n"
+"Votre installation de Mandrake Linux est maintenant terminee et votre\n"
+"systčme est pręt ŕ ętre utilise. Cliquez sur Ť OK ť pour redemarrer votre\n"
+"systčme. Vous aurez alors le choix de demarrer GNU/Linux ou Windows (s'il\n"
+"est present).\n"
"\n"
-"Le bouton Ť Avancée ť (en mode Expert uniquement) permet deux autres\n"
-"options:\n"
+"Le bouton Ť Avancee ť (en mode Expert uniquement) permet deux autres\n"
+"options :\n"
"\n"
-" * Ť Générer une disquette d'auto-install ť: Pour créer une disquette\n"
+" * Ť Generer une disquette d'auto-install ť: Pour creer une disquette\n"
"d'installation qui permettra de reproduire l'installation que vous venez de\n"
-"réaliser sans l'aide d'un administrateur.\n"
+"realiser sans l'aide d'un administrateur.\n"
"\n"
-" Notez que les deux options suivantes apparaissent aprčs avoir cliqué sur le\n"
-"bouton:\n"
+" Notez que les deux options suivantes apparaissent aprčs avoir clique sur\n"
+"le bouton :\n"
"\n"
-" * Ť Replay ť. C'est une installation partiellement automatique oů il est\n"
-"possible de personnaliser le partitionnement du disque (exclusivement).\n"
+" * Ť Replay ť. C'est une installation partiellement automatique oů il\n"
+"est possible de personnaliser le partitionnement du disque (exclusivement).\n"
"\n"
-" * Ť Automatique ť. Complčtement automatique, cette installation reformate\n"
-"le disque au complet.\n"
+" * Ť Automatique ť. Complčtement automatique, cette installation\n"
+"reformate le disque au complet.\n"
"\n"
-" Cette fonctionnalité est particuličrement pratique pour l'installation de\n"
-"multiples systčmes. Voir la sectionAuto install de notre site Web.\n"
+" Cette fonctionnalite est particuličrement pratique pour l'installation\n"
+"de multiples systčmes. Voir la sectionAuto install de notre site Web.\n"
"\n"
-" * Ť Sauvegarder les paquetages sélectionnés ť(*) sauve la sélection des\n"
-"paquetages installés. Puis, lorsque vous ferez une autre installation,\n"
-"insérer la disquette dans le lecteur et accéder au menu d'aide en tapant\n"
-"[f1], et entrez la commande suivante: Ť linux defcfg=\"floppy\" ť.\n"
+" * Ť Sauvegarder les paquetages selectionnes ť (*) sauve la selection des\n"
+"paquetages installes. Puis, lorsque vous ferez une autre installation,\n"
+"inserer la disquette dans le lecteur et acceder au menu d'aide en tapant\n"
+"[f1], et entrez la commande suivante : Ť linux defcfg=\"floppy\" ť.\n"
"\n"
-"(*) Vous avez besoin d'une disquette formatée avec FAT (pour la créer sous\n"
+"(*) Vous avez besoin d'une disquette formatee avec FAT (pour la creer sous\n"
"Linux, tapez Ť mformat a: ť)"
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -3193,30 +3333,30 @@ msgid ""
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
-"Chaque partition nouvellement définie doit ętre formatée, c'est ŕ dire\n"
-"qu'un systčme de fichier (filesystem) doit y ętre créé.\n"
+"Chaque partition nouvellement definie doit ętre formatee, c'est ŕ dire\n"
+"qu'un systčme de fichier (filesystem) doit y ętre cree.\n"
"\n"
-"Durant cette étape, vous pouvez également choisir de reformater d'autres\n"
-"partitions existantes afin d'effacer les données qu'elles contiennent. Si\n"
-"c'est ce que vous désirez, il faut également choisir ces partitions.\n"
+"Durant cette etape, vous pouvez egalement choisir de reformater d'autres\n"
+"partitions existantes afin d'effacer les donnees qu'elles contiennent. Si\n"
+"c'est ce que vous desirez, il faut egalement choisir ces partitions.\n"
"\n"
-"Sachez qu'il n'est pas nécessaire de reformater toutes les partitions\n"
+"Sachez qu'il n'est pas necessaire de reformater toutes les partitions\n"
"existantes. Vous devez reformater les partitions contenant le systčme\n"
"d'exploitation, (tel que : Ť / ť, Ť /usr ť ou Ť /var ť) mais vous n'avez\n"
-"pas ŕ reformater les partitions de données que vous voulez garder,\n"
+"pas ŕ reformater les partitions de donnees que vous voulez garder,\n"
"habituellement Ť /home ť.\n"
"\n"
-"Restez prudent au moment de sélectionner les partitions. Une fois formatée,\n"
-"toutes les données contenues sur les partitions sélectionnées seront\n"
-"détruites et il sera impossible de les récupérer.\n"
+"Restez prudent au moment de selectionner les partitions. Une fois formatee,\n"
+"toutes les donnees contenues sur les partitions selectionnees seront\n"
+"detruites et il sera impossible de les recuperer.\n"
"\n"
"Cliquez sur Ť OK ť lorsque vous ętre pręt ŕ formater vos partitions.\n"
"\n"
"Cliquez sur Ť Annuler ť si vous voulez choisir d'autres partitions pour\n"
"votre installation.\n"
"\n"
-"Cliquez sur Ť Avancé ť, si vous désirez choisir les partitions qui seront\n"
-"vérifiées pour des secteurs corrompus."
+"Cliquez sur Ť Avance ť, si vous desirez choisir les partitions qui seront\n"
+"verifiees pour des secteurs corrompus."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -3229,9 +3369,10 @@ msgid ""
"\n"
"Please be patient."
msgstr ""
-"Votre nouveau systčme Mandrake Linux est maintenant en cours d'installation. Selon le\n"
-"nombre de paquetages ŕ installer et la puissance de votre ordinateur, cette\n"
-"opération peut prendre de quelques minutes ŕ quelques heures."
+"Votre nouveau systčme Mandrake Linux est maintenant en cours\n"
+"d'installation. Selon le nombre de paquetages ŕ installer et la puissance\n"
+"de votre ordinateur, cette operation peut prendre de quelques minutes ŕ\n"
+"quelques heures."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -3249,18 +3390,19 @@ msgid ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Au moment oů vous ętes en train d'installer Mandrake Linux, il est possible que certains\n"
-"paquetages aient été mis ŕ jour depuis la sortie du produit. Des bogues ont\n"
-"pu ętre corrigés, et des problčmes de sécurité résolus. Pour vous permettre\n"
-"de bénéficier de ces mises ŕ jour, il vous est maintenant proposé de les\n"
-"télé-charger sur Internet. Choisissez Ť Oui ť si vous avez une connexion\n"
-"Internet, ou Ť Non ť si vous préférez installer les mises ŕ jour plus tard.\n"
+"Au moment oů vous ętes en train d'installer Mandrake Linux, il est possible\n"
+"que certains paquetages aient ete mis ŕ jour depuis la sortie du produit.\n"
+"Des bogues ont pu ętre corriges, et des problčmes de securite resolus. Pour\n"
+"vous permettre de beneficier de ces mises ŕ jour, il vous est maintenant\n"
+"propose de les tele-charger sur Internet. Choisissez Ť Oui ť si vous avez\n"
+"une connexion Internet, ou Ť Non ť si vous preferez installer les mises ŕ\n"
+"jour plus tard.\n"
"\n"
"En choisissant Ť Oui ť, la liste des sites depuis lesquels les mises ŕ\n"
-"jours peuvent ętre télé-chargées est affichée. Choisissez le site le plus\n"
-"proche. Puis un arbre de choix des paquetages apparaît: vérifiez la\n"
-"sélection, puis cliquez sur Ť Installer ť pour télé-charger et installer\n"
-"les mises ŕ jour sélectionnées, ou Ť Annuler ť pour abandonner."
+"jours peuvent ętre tele-chargees est affichee. Choisissez le site le plus\n"
+"proche. Puis un arbre de choix des paquetages apparaît : verifiez la\n"
+"selection, puis cliquez sur Ť Installer ť pour tele-charger et installer\n"
+"les mises ŕ jour selectionnees, ou Ť Annuler ť pour abandonner."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -3272,11 +3414,11 @@ msgid ""
"terminate the installation. To continue with the installation, click on the\n"
"\"Accept\" button."
msgstr ""
-"Avant d'aller plus loin, il est fortement recommandé de lire attentivement\n"
-"les termes et conditions d'utilisations de la licence. Celle-ci régit\n"
+"Avant d'aller plus loin, il est fortement recommande de lire attentivement\n"
+"les termes et conditions d'utilisations de la licence. Celle-ci regit\n"
"l'ensemble de la distribution Mandrake Linux. Si, pour une raison ou une\n"
"autre, vous n'acceptez pas ces conditions, cliquez sur Ť Refuser ť.\n"
-"L'installation sera alors immédiatement interrompue. Pour continuer,\n"
+"L'installation sera alors immediatement interrompue. Pour continuer,\n"
"cliquez sur Ť Accepter ť."
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -3292,17 +3434,17 @@ msgid ""
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-"Ŕ cette étape, vous devrez déterminer le niveau de sécurité requis par\n"
-"votre systčme. Le niveau de sécurité requis se détermine en fonction de\n"
-"l'exposition du systčme ŕ d'autres utilisateurs (s'il est connecté\n"
-"directement sur Internet par exemple) et selon le niveau de sensibilité de\n"
-"l'information contenu dans le systčme (des numéros de carte de crédit par\n"
-"exemple). Sachez que, de maničre générale, plus la sécurité d'un systčme\n"
-"est élevée, plus il est complexe ŕ opérer. Référez-vous au chapitre\n"
-"Ť msec ť du Ť Manuel de référence ť pour obtenir plus d'informations sur\n"
-"les niveaux de sécurité.\n"
+"Ŕ cette etape, vous devrez determiner le niveau de securite requis par\n"
+"votre systčme. Le niveau de securite requis se determine en fonction de\n"
+"l'exposition du systčme ŕ d'autres utilisateurs (s'il est connecte\n"
+"directement sur Internet par exemple) et selon le niveau de sensibilite de\n"
+"l'information contenu dans le systčme (des numeros de carte de credit par\n"
+"exemple). Sachez que, de maničre generale, plus la securite d'un systčme\n"
+"est elevee, plus il est complexe ŕ operer. Referez-vous au chapitre\n"
+"Ť msec ť du Ť Manuel de reference ť pour obtenir plus d'informations sur\n"
+"les niveaux de securite.\n"
"\n"
-"Si vous ne savez pas quel niveau choisir, gardez la sélection par défaut."
+"Si vous ne savez pas quel niveau choisir, gardez la selection par defaut."
#: ../../help.pm_.c:442
msgid ""
@@ -3326,38 +3468,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3528,11 +3664,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3555,48 +3691,49 @@ msgid ""
"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
"choose this unless you know what you are doing."
msgstr ""
-"DrakX doit maintenant savoir quel type d'installation vous désirez\n"
-"réaliser. Deux types d'installations sont proposés: Par défaut (Ť \n"
-"Recommandée ť), qui limite le nombre de questions ŕ l'utilisateur au\n"
-"minimum ou Ť Expert ť qui vous permet de sélectionner individuellement\n"
+"DrakX doit maintenant savoir quel type d'installation vous desirez\n"
+"realiser. Deux types d'installations sont proposes : Par defaut (Ť \n"
+"Recommandee ť), qui limite le nombre de questions ŕ l'utilisateur au\n"
+"minimum ou Ť Expert ť qui vous permet de selectionner individuellement\n"
"chacune des composantes ŕ installer. Également, on vous propose de faire\n"
-"une Ť Installation ť ou une Ť Mise ŕ jour ť d'un systčme existant:\n"
+"une Ť Installation ť ou une Ť Mise ŕ jour ť d'un systčme Mandrake Linux\n"
+"existant :\n"
"\n"
-" * Ť Installation ť: balaye l'ancien systčme. En fait, selon ce que votre\n"
+" * Ť Installation ť : balaye l'ancien systčme. En fait, selon ce que votre\n"
"machine comporte, vous pourrez garder intacte certaines des anciennes\n"
-"partition (Linux ou autres);\n"
+"partition (Linux ou autres) ;\n"
"\n"
-" * Ť Mise ŕ jour ť: cette classe d'installation permet de simplement mettre\n"
-"ŕ jours les paquetages qui composent votre systčme GNU/Linux. Elle conserve les\n"
-"partitions existantes, ainsi que la configuration des utilisateurs. Toutes\n"
-"les autres étapes de l'installation sont accessibles en comparaison avec\n"
-"une installation classique;\n"
+" * Ť Mise ŕ jour ť : cette classe d'installation permet de simplement\n"
+"mettre ŕ jours les paquetages qui composent votre systčme Mandrake Linux.\n"
+"Elle conserve les partitions existantes, ainsi que la configuration des\n"
+"utilisateurs. Toutes les autres etapes de l'installation sont accessibles\n"
+"en comparaison avec une installation classique ;\n"
"\n"
-" * Ť Mise ŕ jour des paquetages uniquement ť: Cette nouvelle classe\n"
-"d'installation permet de mettre ŕ jour un systčme Mandrake Linux existant, tout en gardant\n"
-"sa configuration inchangée. L'ajout de nouveaux paquetages durant la mise ŕ\n"
-"jour est cependant possible.\n"
+" * Ť Mise ŕ jour des paquetages uniquement ť : Cette nouvelle classe\n"
+"d'installation permet de mettre ŕ jour un systčme Mandrake Linux existant,\n"
+"tout en gardant sa configuration inchangee. L'ajout de nouveaux paquetages\n"
+"durant la mise ŕ jour est cependant possible.\n"
"\n"
-"La mise ŕ jour devrait fonctionner correctement pour les systčmes Mandrake Linux ŕ partir\n"
-"de la version Ť 8.1 ť.\n"
+"La mise ŕ jour devrait fonctionner correctement pour les systčme Mandrake\n"
+"Linux ŕ partir de la version Ť 8.1 ť.\n"
"\n"
-"Selon votre niveau d'expertise avec les systčmes d'exploitations GNU/Linux, il faut\n"
-"choisir l'un des deux types d'installations suivants:\n"
+"Selon votre niveau d'expertise avec les systčmes d'exploitations GNU/Linux,\n"
+"il faut choisir l'un des deux types d'installations suivants:\n"
"\n"
-" * Ť Recommandée ť: choisissez cette option si vous n'avez jamais installé\n"
-"de systčme d'exploitation GNU/Linux. C'est la méthode la plus facile, la plupart des\n"
-"choix ont déjŕ été fait pour vous.\n"
+" * Ť Recommandee ť: choisissez cette option si vous n'avez jamais installe\n"
+"de systčme d'exploitation GNU/Linux. C'est la methode la plus facile, la\n"
+"plupart des choix ont dejŕ ete fait pour vous.\n"
"\n"
-" * Expert: si vous avez une bonne connaissance de GNU/Linux, vous pouvez choisir ce\n"
-"type d'installation. Cette méthode vous permettra de personnaliser\n"
-"l'ensemble des composantes de votre systčme. Ces questions peuvent s'avérer\n"
-"complexes, particuličrement en matičre de partitionnement et du choix des\n"
-"paquetages installés. En conséquence, il n'est pas recommandé de s'y\n"
-"aventurer sans de bonnes connaissances au préalable."
+" * Expert: si vous avez une bonne connaissance de GNU/Linux, vous pouvez\n"
+"choisir ce type d'installation. Cette methode vous permettra de\n"
+"personnaliser l'ensemble des composantes de votre systčme. Ces questions\n"
+"peuvent s'averer complexes, particuličrement en matičre de partitionnement\n"
+"et du choix des paquetages installes. En consequence, il n'est pas\n"
+"recommande de s'y aventurer sans de bonnes connaissances au prealable."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3610,22 +3747,22 @@ msgid ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
msgstr ""
-"Normalement, DrakX sélectionne le clavier approprié en fonction de la\n"
-"langue choisie et vous ne devriez pas voir cette étape. Cela dit, il est\n"
+"Normalement, DrakX selectionne le clavier approprie en fonction de la\n"
+"langue choisie et vous ne devriez pas voir cette etape. Cela dit, il est\n"
"possible que vous ayez un clavier ne correspondant pas exactement ŕ votre\n"
-"langue d'utilisation. Par exemple, si vous habitez le Québec et parlez le\n"
+"langue d'utilisation. Par exemple, si vous habitez le Quebec et parlez le\n"
"français et l'anglais, vous pouvez vouloir avoir votre clavier anglais pour\n"
-"les tâches d'administration systčme et votre clavier français pour écrire\n"
-"de la poésie. Dans ces cas, il vous faudra revenir ŕ cette étape\n"
-"d'installation et sélectionner un autre clavier ŕ partir de la liste.\n"
+"les tâches d'administration systčme et votre clavier français pour ecrire\n"
+"de la poesie. Dans ces cas, il vous faudra revenir ŕ cette etape\n"
+"d'installation et selectionner un autre clavier ŕ partir de la liste.\n"
"\n"
"Vous n'avez qu'a choisir la disposition de clavier qui vous convient.\n"
"\n"
-"Cliquez sur Ť Davantage ť pour voir toutes les options proposées."
+"Cliquez sur Ť Davantage ť pour voir toutes les options proposees."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3639,25 +3776,25 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
-"Veuillez choisir votre langue de communication. Celle-ci sera utilisée\n"
+"Veuillez choisir votre langue de communication. Celle-ci sera utilisee\n"
"durant le processus d'installation, ainsi que durant les mises ŕ jour de\n"
"votre systčme.\n"
"\n"
-"En cliquant sur Ť Avancé ť, le programme vous proposera également d'autres\n"
-"langues pouvant ętre installées sur votre station de travail. En\n"
+"En cliquant sur Ť Avance ť, le programme vous proposera egalement d'autres\n"
+"langues pouvant ętre installees sur votre station de travail. En\n"
"choisissant d'autres langues, le programme vous installera toute la\n"
-"documentation et les applications nécessaires ŕ l'utilisation de cette\n"
-"autre langue. Par exemple, si vous prévoyez d'accueillir des utilisateurs\n"
+"documentation et les applications necessaires ŕ l'utilisation de cette\n"
+"autre langue. Par exemple, si vous prevoyez d'accueillir des utilisateurs\n"
"d'Espagne sur votre serveur, choisissez l'anglais comme langue principale,\n"
-"et, dans la section avancée, cliquez sur l'étoile grise correspondant ŕ\n"
+"et, dans la section avancee, cliquez sur l'etoile grise correspondant ŕ\n"
"Spanish|Spain.\n"
"\n"
-"Sachez que plusieurs langues peuvent ętre installées. Une fois votre\n"
-"sélection complčte terminée, cliquez sur Ť OK ť pour continuer."
+"Sachez que plusieurs langues peuvent ętre installees. Une fois votre\n"
+"selection complčte terminee, cliquez sur Ť OK ť pour continuer."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3672,21 +3809,21 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
-"DrakX détecte généralement le nombre de boutons de votre souris. Sinon, il\n"
+"DrakX detecte generalement le nombre de boutons de votre souris. Sinon, il\n"
"prend pour acquis que vous avez une souris ŕ deux boutons et configurera\n"
-"l'émulation du troisičme bouton. Également, DrakX saura automatiquement si\n"
-"vous avez une souris PS/2, série ou USB.\n"
+"l'emulation du troisičme bouton. Également, DrakX saura automatiquement si\n"
+"vous avez une souris PS/2, serie ou USB.\n"
"\n"
-"Si vous désirez installer une souris différente, veuillez la sélectionner ŕ\n"
-"partir de la liste qui vous est proposée.\n"
+"Si vous desirez installer une souris differente, veuillez la selectionner ŕ\n"
+"partir de la liste qui vous est proposee.\n"
"\n"
-"Si vous sélectionnez une souris différente de celle choisie par défaut,\n"
-"DrakX vous présentera un écran de test. Utilisez les boutons et la roue\n"
+"Si vous selectionnez une souris differente de celle choisie par defaut,\n"
+"DrakX vous presentera un ecran de test. Utilisez les boutons et la roue\n"
"pour vous assurer que tout fonctionne correctement. Si votre souris ne\n"
-"fonctionne pas normalement, appuyer sur la barre d'espacement ou [Entrée]\n"
-"ou encore Ť Annuler ť, puis, sélectionner une autre souris."
+"fonctionne pas normalement, appuyer sur la barre d'espacement ou [Entree]\n"
+"ou encore Ť Annuler ť, puis, selectionner une autre souris."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3696,23 +3833,23 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3733,40 +3870,40 @@ msgid ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-"Vous avez ŕ prendre ici une décision cruciale pour la sécurité de votre\n"
+"Vous avez ŕ prendre ici une decision cruciale pour la securite de votre\n"
"systčme. L'utilisateur Ť root ť est l'administrateur du systčme qui a tous\n"
"les droits d'accčs aux fichiers de configuration, etc. Il est donc\n"
-"impératif de choisir un mot de passe difficile ŕ deviner (pensez aux\n"
-"systčmes prévus ŕ cet effet qui anticipent les combinaisons communes des\n"
-"utilisateurs). DrakX vous avertira si le mot de passe entré est trop facile\n"
-"ŕ deviner. Comme vous pouvez le voir, il est également possible de ne pas\n"
-"entrer de mot de passe. Nous déconseillons fortement cette pratique. Comme\n"
+"imperatif de choisir un mot de passe difficile ŕ deviner (pensez aux\n"
+"systčmes prevus ŕ cet effet qui anticipent les combinaisons communes des\n"
+"utilisateurs). DrakX vous avertira si le mot de passe entre est trop facile\n"
+"ŕ deviner. Comme vous pouvez le voir, il est egalement possible de ne pas\n"
+"entrer de mot de passe. Nous deconseillons fortement cette pratique. Comme\n"
"l'erreur est humaine, un utilisateur avec tous les droits peut tout\n"
-"détruire sur votre systčme, c'est pourquoi le mot de passe doit agir comme\n"
-"barričre ŕ l'entrée.\n"
+"detruire sur votre systčme, c'est pourquoi le mot de passe doit agir comme\n"
+"barričre ŕ l'entree.\n"
"\n"
"Le mot de passe choisi devrait contenir au moins 8 caractčres\n"
-"alphanumériques. Ne jamais écrire un mot de passe, forcez-vous ŕ vous en\n"
-"souvenir par coeur. Il faut donc ménager accessibilité et mémoire, donc un\n"
-"mot de passe de 30 caractčres est presque impossible ŕ mémoriser.\n"
+"alphanumeriques. Ne jamais ecrire un mot de passe, forcez-vous ŕ vous en\n"
+"souvenir par coeur. Il faut donc menager accessibilite et memoire, donc un\n"
+"mot de passe de 30 caractčres est presque impossible ŕ memoriser.\n"
"\n"
-"Afin d'éviter les regards indiscrets, le mot de passe n'apparaîtra pas ŕ\n"
-"l'écran. Il vous faudra donc l'inscrire deux fois afin d'éviter les erreurs\n"
+"Afin d'eviter les regards indiscrets, le mot de passe n'apparaîtra pas ŕ\n"
+"l'ecran. Il vous faudra donc l'inscrire deux fois afin d'eviter les erreurs\n"
"de frappe. Évidemment, si vous faites deux fois la męme erreur, celle-ci\n"
-"sera sauvegardée et vous devrez la reproduire afin d'accéder ŕ votre\n"
+"sera sauvegardee et vous devrez la reproduire afin d'acceder ŕ votre\n"
"systčme pour la premičre fois.\n"
"\n"
"En mode expert, on vous demandera si vous comptez vous connecter sur un\n"
-"serveur d'authentification, tel que NIS ou LDAP. Si votre réseau utilise un\n"
-"de ces protocoles, il faut le sélectionner. Si vous n'en avez aucune idée,\n"
-"demandez ŕ votre administrateur de réseau.\n"
+"serveur d'authentification, tel que NIS ou LDAP. Si votre reseau utilise un\n"
+"de ces protocoles, il faut le selectionner. Si vous n'en avez aucune idee,\n"
+"demandez ŕ votre administrateur de reseau.\n"
"\n"
-"Si votre ordinateur n'est pas connecté sur un réseau administré, vous devez\n"
+"Si votre ordinateur n'est pas connecte sur un reseau administre, vous devez\n"
"choisir Ť Fichiers Locaux ť pour l'authentification."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3788,7 +3925,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3796,7 +3933,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3816,52 +3953,53 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
-"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette étape est normalement\n"
-"complčtement automatique. En fait, DrakX analyse le secteur de démarrage\n"
-"(master boot record) et agit en fonction de ce qu'il peut y lire:\n"
+"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette etape est\n"
+"normalement complčtement automatique. En fait, DrakX analyse le secteur de\n"
+"demarrage (master boot record) et agit en fonction de ce qu'il peut y lire\n"
+":\n"
"\n"
-" * Si un secteur de démarrage Windows est détecté, il va ętre remplacer par\n"
-"LILO/GRUB. Donc, vous serez capable de démarrer et tout autre systčme\n"
-"d'exploitation.\n"
+" * Si un secteur de demarrage Windows est detecte, il va ętre remplacer par\n"
+"LILO/GRUB. Donc, vous serez capable de demarrer GNU/Linux et tout autre\n"
+"systčme d'exploitation.\n"
"\n"
-" * si GRUB ou LILO est détecté, il sera remplacé par la nouvelle version;\n"
+" * si GRUB ou LILO est detecte, il sera remplace par la nouvelle version;\n"
"\n"
-"En cas de doute, DrakX affiche différentes options.\n"
+"En cas de doute, DrakX affiche differentes options.\n"
"\n"
-" * Ť Programme d'amorçage ŕ utiliser ť vous propose trois choix:\n"
+" * Ť Programme d'amorçage ŕ utiliser ť vous propose trois choix :\n"
"\n"
-" * Ť GRUB ť: si vous préférer GRUB (menu texte).\n"
+" * Ť GRUB ť : si vous preferer GRUB (menu texte).\n"
"\n"
-" * Ť LILO en mode graphique ť: si vous préférez l'interface graphique.\n"
+" * Ť LILO en mode graphique ť : si vous preferez l'interface graphique.\n"
"\n"
-" * Ť LILO en mode texte ť: si vous préférez la version texte de LILO.\n"
+" * Ť LILO en mode texte ť : si vous preferez la version texte de LILO.\n"
"\n"
-" * Ť Périphériques de démarrage ť: dans la plupart des cas, vous n'aurez pas\n"
-"ŕ changer le disque par défaut (Ť /dev/hda ť, mais si vous le désirez, le\n"
-"programme d'amorce peut ętre installé sur un second disque, Ť /dev/hdb ť,\n"
-"ou męme sur une disquette, Ť /dev/fd0 ť.\n"
+" * Ť Peripheriques de demarrage ť: dans la plupart des cas, vous n'aurez\n"
+"pas ŕ changer le disque par defaut (Ť /dev/hda ť, mais si vous le desirez,\n"
+"le programme d'amorce peut ętre installe sur un second disque,\n"
+"Ť /dev/hdb ť, ou męme sur une disquette, Ť /dev/fd0 ť.\n"
"\n"
-" * Ť Délais avant l'activation du choix par défaut ť: au redémarrage de\n"
-"l'ordinateur, il s'agit du temps accordé ŕ l'utilisateur pour démarrer un\n"
+" * Ť Delais avant l'activation du choix par defaut ť: au redemarrage de\n"
+"l'ordinateur, il s'agit du temps accorde ŕ l'utilisateur pour demarrer un\n"
"autre systčme d'exploitation.\n"
"\n"
-"!! Prenez garde, si vous décidez de ne pas installer de programme d'amorce\n"
-"(en cliquant sur Ť Annuler ť), vous devez vous assurez d'avoir une méthode\n"
-"pour démarrer le systčme. Aussi, assurez vous de bien savoir ce que vous\n"
+"!! Prenez garde, si vous decidez de ne pas installer de programme d'amorce\n"
+"(en cliquant sur Ť Annuler ť), vous devez vous assurez d'avoir une methode\n"
+"pour demarrer le systčme. Aussi, assurez vous de bien savoir ce que vous\n"
"faites si vous modifiez les options. !!\n"
"\n"
-"En cliquant sur Ť Avancée ť, vous aurez accčs ŕ plusieurs autres options de\n"
-"configuration. Sachez que celles-ci sont réservées aux experts en la\n"
+"En cliquant sur Ť Avancee ť, vous aurez accčs ŕ plusieurs autres options de\n"
+"configuration. Sachez que celles-ci sont reservees aux experts en la\n"
"matičre.\n"
"\n"
-"Si vous avez d'autres systčmes d'exploitation installés sur votre\n"
-"ordinateur, ils seront automatiquement détectés et ajout ŕ vos menus de\n"
-"démarrage. Ŕ cette étape, vous pouvez décider de préciser ces options. En\n"
-"double-cliquant sur une entrée existante vous pourrez la paramétrer ŕ votre\n"
-"guise, ou l'enlever. Ť Ajouter ť permet de créer de nouvelles entrées, et\n"
-"Ť terminer ť vous conduit ŕ la prochaine étape d'installation."
+"Si vous avez d'autres systčmes d'exploitation installes sur votre\n"
+"ordinateur, ils seront automatiquement detectes et ajout ŕ vos menus de\n"
+"demarrage. Ŕ cette etape, vous pouvez decider de preciser ces options. En\n"
+"double-cliquant sur une entree existante vous pourrez la parametrer ŕ votre\n"
+"guise, ou l'enlever. Ť Ajouter ť permet de creer de nouvelles entrees, et\n"
+"Ť terminer ť vous conduit ŕ la prochaine etape d'installation."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3884,7 +4022,7 @@ msgstr ""
"détruisant les entrées correspondantes. Mais vous aurez alors besoin\n"
"d'une disquette de démarrage afin de lancer ces autres systčmes!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3899,29 +4037,28 @@ msgstr ""
"Ŕ moins de savoir exactement ce que vous faites, choisissez\n"
"toujours Ť Premier secteur du disque (MBR) ť."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3960,7 +4097,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3985,39 +4122,39 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-"DrakX détecte maintenant tous les périphériques IDE présents sur votre\n"
-"systčme. Également, DrakX recherchera les périphériques SCSI. Finalement,\n"
-"selon les composantes détectées, DrakX installera tous les pilotes\n"
-"nécessaires ŕ son fonctionnement.\n"
+"DrakX detecte maintenant tous les peripheriques IDE presents sur votre\n"
+"systčme. Également, DrakX recherchera les peripheriques SCSI. Finalement,\n"
+"selon les composantes detectees, DrakX installera tous les pilotes\n"
+"necessaires ŕ son fonctionnement.\n"
"\n"
-"Compte tenu de la vaste gamme de périphériques disponibles sur le marché,\n"
-"dans certain cas la détection de matériel ne fonctionnera pas. Dans ce cas,\n"
-"DrakX vous demandera de confirmer si des composantes SCSI sont présentes\n"
+"Compte tenu de la vaste gamme de peripheriques disponibles sur le marche,\n"
+"dans certain cas la detection de materiel ne fonctionnera pas. Dans ce cas,\n"
+"DrakX vous demandera de confirmer si des composantes SCSI sont presentes\n"
"sur votre systčme. Cliquez sur Ť Oui ť si vous ętes certain d'avoir un\n"
-"périphérique SCSI sur votre systčme. DrakX vous présentera alors une liste\n"
-"de carte SCSI disponibles. Sélectionnez la vôtre. Évidement, cliquez sur\n"
+"peripherique SCSI sur votre systčme. DrakX vous presentera alors une liste\n"
+"de carte SCSI disponibles. Selectionnez la vôtre. Évidement, cliquez sur\n"
"Ť Non ť, si vous n'en avez pas. Si vous n'ętes pas certain, cliquez sur\n"
-"Ť Voir les informations sur le matériel ť, puis sur Ť OK ť. Vérifiez la\n"
-"liste du matériel, puis cliquez sur Ť OK ť pour retourner ŕ la question\n"
-"concernant les périphériques SCSI.\n"
+"Ť Voir les informations sur le materiel ť, puis sur Ť OK ť. Verifiez la\n"
+"liste du materiel, puis cliquez sur Ť OK ť pour retourner ŕ la question\n"
+"concernant les peripheriques SCSI.\n"
"\n"
-"Si vous devez spécifier votre carte SCSI manuellement, DrakX vous demandera\n"
-"de confirmer les options du périphérique. Vous devriez permettre ŕ DrakX de\n"
-"vérifier automatiquement votre carte pour les options nécessaires ŕ\n"
-"déterminer.\n"
+"Si vous devez specifier votre carte SCSI manuellement, DrakX vous demandera\n"
+"de confirmer les options du peripherique. Vous devriez permettre ŕ DrakX de\n"
+"verifier automatiquement votre carte pour les options necessaires ŕ\n"
+"determiner.\n"
"\n"
-"Il peut arriver que DrakX soit incapable de vérifier les options\n"
-"nécessaires. Dans ce cas, vous devrez les déterminer manuellement.\n"
+"Il peut arriver que DrakX soit incapable de verifier les options\n"
+"necessaires. Dans ce cas, vous devrez les determiner manuellement.\n"
"Consultez le guide d'utilisation (Chapitre 3, section \"Obtenir des\n"
-"informations sur votre matériel\") pour quelques astuces pour retrouver les\n"
-"paramčtres nécessaires dans la documentation de vos périphériques, sur le\n"
+"informations sur votre materiel\") pour quelques astuces pour retrouver les\n"
+"paramčtres necessaires dans la documentation de vos peripheriques, sur le\n"
"site du fabricant (si vous avez un accčs ŕ Internet) ou ŕ partir des menus\n"
-"de Microsoft Windows (si vous utilisiez ce périphérique avec Windows)."
+"de Microsoft Windows (si vous utilisiez ce peripherique avec Windows)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -4027,9 +4164,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -4041,7 +4177,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -4109,7 +4245,7 @@ msgstr ""
"entrée qui sera alors précédée d'un Ť * ť, si vous pressez <Tab> pour voir\n"
"la liste des possibilités."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -4136,9 +4272,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4178,10 +4313,10 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4189,12 +4324,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4209,36 +4343,34 @@ msgid ""
"displayed here. You can click on the button to change the parameters\n"
"associated with it."
msgstr ""
-"On vous présente ici les différents paramčtres de votre systčme. Selon le\n"
-"matériel installé, certaines entrées seront présentes et d'autres pas.\n"
+"On vous presente ici les differents paramčtres de votre systčme. Selon le\n"
+"materiel installe, certaines entrees seront presentes et d'autres pas.\n"
"\n"
-" * Ť Souris ť: pour vérifier la configuration actuelle de la souris. "
-"Cliquez\n"
-"sur le bouton pour modifier les options.\n"
+" * Ť Souris ť: pour verifier la configuration actuelle de la souris.\n"
+"Cliquez sur le bouton pour modifier les options.\n"
"\n"
-" * Ť Clavier ť: vérifie la configuration choisie pour le clavier. Cliquez\n"
+" * Ť Clavier ť: verifie la configuration choisie pour le clavier. Cliquez\n"
"sur le bouton pour la modifier.\n"
"\n"
-" * Ť Fuseau horaire ť: DrakX, par défaut, essaie de trouver le fuseau\n"
+" * Ť Fuseau horaire ť: DrakX, par defaut, essaie de trouver le fuseau\n"
"horaire dans lequel vous ętes. Encore une fois, il est possible que vous ne\n"
"soyez pas dans le fuseau horaire qui vous convient. Donc, vous aurez\n"
"peut-ętre ŕ cliquer sur le bouton Ť fuseau horaire ť pour identifier\n"
-"précisément l'heure qui doit apparaître dans vos horloges.\n"
+"precisement l'heure qui doit apparaître dans vos horloges.\n"
"\n"
" * Ť Imprimante ť: en cliquant sur Ť Pas d'imprimante ť, l'outil de\n"
-"configuration sera démarré.\n"
+"configuration sera demarre.\n"
"\n"
-" * Ť Carte son ť: si une carte son a été détectée, elle apparaîtra ici.\n"
-"Aucune modification n'est possible ŕ cette étape.\n"
+" * Ť Carte son ť: si une carte son a ete detectee, elle apparaîtra ici.\n"
+"Aucune modification n'est possible ŕ cette etape.\n"
"\n"
-" * Ť Carte TV ť: si une carte d'entrée/sortie vidéo (carte TV) a été\n"
-"détectée, elle apparaîtra ici. Aucune modification possible ŕ cette étape.\n"
+" * Ť Carte TV ť: si une carte d'entree/sortie video (carte TV) a ete\n"
+"detectee, elle apparaîtra ici. Aucune modification possible ŕ cette etape.\n"
"\n"
-" * Ť Carte ISDN ť: si une carte ISDN est détectée, elle apparaîtra ici. "
-"Vous\n"
-"pouvez cliquer sur le bouton pour en modifier les paramčtres."
+" * Ť Carte ISDN ť: si une carte ISDN est detectee, elle apparaîtra ici.\n"
+"Vous pouvez cliquer sur le bouton pour en modifier les paramčtres."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4248,7 +4380,7 @@ msgstr ""
"nouvelle partition Mandrake Linux. Soyez prudent, toutes les données\n"
"présentes sur ce disque seront perdues et ne seront pas récupérables !"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4264,7 +4396,7 @@ msgstr ""
"sur Ť OK ť, vous n'aurez aucun moyen de récupérer ces données et\n"
"partitions, y compris celles de Windows."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4276,12 +4408,12 @@ msgstr ""
"désynchronisée par rapport ŕ votre medium d'Installation (veuillez créer une "
"disquette de boot plus récente)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Vous devez aussi formater %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4306,20 +4438,20 @@ msgstr ""
"\n"
"Confirmez vous l'installation de ces serveurs ?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "On ne peut pas utiliser l'option broadcast sans domaine NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insérez une disquette formatée en FAT (format DOS/Windows) %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Cette disquette n'est pas au format DOS/Windows"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4327,7 +4459,7 @@ msgstr ""
"Pour utiliser cette sauvegarde de sélection des paquetages, veuillez "
"redémarrer l'installation avec la commande Ť linux defcfg=floppy ť."
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Erreur lors de la lecture du fichier %s"
@@ -4358,7 +4490,7 @@ msgstr "Vous devez créer une partition d'échange (swap)"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4366,59 +4498,59 @@ msgstr ""
"\n"
"Désirez-vous tout de męme continuer ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vous devez disposer d'une partition FAT montée en /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Utiliser l'espace libre"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Pas assez d'espace libre pour créer de nouvelles partitions"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Utiliser une partition existante"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Pas de partition existante ŕ utiliser"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Utiliser la partition Windows pour le loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Quelle partition désirez-vous utiliser pour Linux4Win ?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Choix des tailles"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Taille de la partition racine en Mo : "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Taille de la partition d'échange (swap) en Mo : "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Utiliser l'espace libre sur la partition de Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Quelle partition désirez-vous redimensionner ?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Calcul des limites du systčme de fichiers de Windows en cours"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4427,14 +4559,17 @@ msgstr ""
"Le programme de redimensionnement des partitions FAT ne peut gérer votre\n"
"partition. L'erreur suivante est survenue : %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Votre partition FAT est trop fragmentée. Redémarrez sous Windows\n"
"et lancez le programme de défragmentation Ť defrag ť,\n"
"puis relancez l'installation de Mandrake Linux."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4456,58 +4591,58 @@ msgstr ""
"\n"
"Si vous ętes sűr de vous, cliquez sur OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Quelle taille désirez-vous allouer ŕ Windows ?"
-
#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Quelle taille désirez-vous allouer ŕ Windows sur la"
+
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partition %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
-msgstr "Le redimensionnement de la partition FAT a échoué: %s"
+msgstr "Le redimensionnement de la partition FAT a échoué : %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Il n'y a aucune partition FAT ŕ redimensionner ou ŕ utiliser en tant que "
"loopback (ou trop peu d'espace est disponible)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Effacer tout le disque"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
-msgstr "Supprimer Microsoft Windows"
+msgstr "Supprimer Microsoft Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Vous possédez plus d'un disque dur.\n"
"Sur lequel désirez vous installer Linux ?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"TOUTES les partitions et les données présentes sur le disque %s seront "
"perdues"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Partitionnement personnalisé"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Utiliser fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4518,11 +4653,11 @@ msgstr ""
"Lorsque vous aurez terminé, n'oubliez pas d'enregistrer vos\n"
"modifications en appuyant sur la touche Ť w ť."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Utiliser l'espace libre sur la partition de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Pas de place disponible pour l'installation"
@@ -4532,16 +4667,16 @@ msgstr ""
"L'assistant de partitionnement de DrakX\n"
"a trouvé les solutions suivantes :"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Le partitionnement a échoué : %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Démarrage de l'interface réseau"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Arręt de l'interface réseau"
@@ -4553,12 +4688,12 @@ msgstr ""
"Une erreur est survenue et semble difficile ŕ résoudre correctement.\n"
"Vous pouvez continuer, mais ŕ vos risques et périls."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Point de montage en double : %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4569,15 +4704,15 @@ msgstr ""
"peut que le lecteur de cédérom ou le cédérom lui-męme soit défectueux. Vous\n"
"pouvez vous assurer du bon état de ce dernier en exécutant la commande "
"suivante\n"
-"sur un ordinateur fonctionnant correctement : Ť rmp -qpl Mandrake/RPMS/*."
+"sur un ordinateur fonctionnant correctement : Ť rpm -qpl Mandrake/RPMS/*."
"rpm ť\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenue sur %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Aucun lecteur de disquette disponible"
@@ -4587,9 +4722,9 @@ msgstr "Aucun lecteur de disquette disponible"
msgid "Entering step `%s'\n"
msgstr "Démarrage de l'étape Ť %s ť\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4599,202 +4734,153 @@ msgstr ""
"essayer de procéder ŕ une installation en mode texte. Pour cela, appuyez\n"
"sur la touche Ť F1 ť aprčs l'amorçage sur cédérom puis entrez Ť text ť."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Classe d'installation"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Veuillez choisir une des classes d'installation ci-dessous :"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"La taille totale pour les groupes sélectionnés est approximativement de %d "
-"Mo.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si vous voulez réduire la taille de votre installation,\n"
-"choisissez le pourcentage de paquetages que vous souhaitez installer.\n"
-"\n"
-"Un faible pourcentage ne conservera que les paquetages les plus importants.\n"
-"Un pourcentage de 100%% installera tous les paquetages sélectionnés."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Vous n'avez d'espace sur votre disque que pour %d%% de ces paquetages.\n"
-"\n"
-"Si vous souhaitez réduire encore la taille de l'installation,\n"
-"choisissez un pourcentage encore plus faible.\n"
-"\n"
-"Un faible pourcentage ne conserve que les paquetages les plus importants.\n"
-"Un pourcentage de %d%% installera le maximum possible de packages."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Vous pourrez affiner la sélection des paquetages lors de la prochaine étape."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Pourcentage de paquetages ŕ installer"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Sélection des groupes de paquetages"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Sélection individuelle des paquetages"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Taille totale : %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Mauvais paquetage"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nom : %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Version : %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Taille : %d Ko\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importance : %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Il n'y a pas assez de place pour installer ce paquetage"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Les paquetages suivants vont ętre installés"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Les paquetages suivants vont ętre désinstallés"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Vous ne pouvez pas sélectionner/désélectionner ce paquetage"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ce paquetage est nécessaire, vous ne pouvez pas l'enlever."
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Vous ne pouvez pas désélectionner ce paquetage. Il est déjŕ installé."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ce paquetage doit ętre mis ŕ jour.\n"
"Ętes-vous certain de vouloir le désélectionner ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Vous ne pouvez pas désélectionner ce paquetage, il doit ętre mis ŕ jour."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Montrer les paquetages sélectionnés automatiquement"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Charger/Sauver sur disquette"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Mise-ŕ-jour de la sélection des paquetages"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Installation minimale"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Choisissez les paquetages que vous voulez installer"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimation en cours"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Veuillez patienter, préparation de l'installation..."
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquetages"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installation du paquetage %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Accepter"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Refuser"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4808,21 +4894,22 @@ msgstr ""
"Veuillez insérer le cédérom nommé Ť %s ť,\n"
"puis cliquez sur Ť OK ť.\n"
"\n"
-"Si vous ne le possédez pas, cliquez sur Ť Annuler ť."
+"Si vous ne le possédez pas, cliquez sur Ť Annuler ť afin de ne rien "
+"installer ŕ partir de ce Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Souhaitez-vous tout de męme continuer ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Erreur lors du tri des paquetages :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
-msgstr "Erreur lors de l'installation du paquetage :"
+msgstr "Erreur lors de l'installation des paquetages :"
#: ../../install_steps_interactive.pm_.c:10
msgid ""
@@ -4894,13 +4981,13 @@ msgstr "Une erreur est survenue"
#: ../../install_steps_interactive.pm_.c:85
msgid "Do you really want to leave the installation?"
-msgstr "Désirez-vous vraiment quitter l'installation?"
+msgstr "Désirez-vous vraiment quitter l'installation ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licence"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4915,7 +5002,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -5123,109 +5210,113 @@ msgstr ""
"litige. Pour toute question relative au présent document, veuillez \n"
"contacter MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Etes vous sur de refuser cette license ?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Clavier"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Veuillez choisir votre type de clavier."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Voici la liste complčte des claviers disponibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Quelle classe d'installation désirez-vous utiliser ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installation/Mise-ŕ-jour"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Désirez-vous faire une installation ou une mise-ŕ-jour ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recommandée"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Mise-ŕ-jour"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Mise-ŕ-jour seulement des paquetages"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Veuillez choisir le type de votre souris."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port souris"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Veuillez choisir le port série sur lequel votre souris est connectée."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Émulation des boutons"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
-msgstr "Émulation du bouton 2"
+msgstr "Émulation du bouton n° 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
-msgstr "Émulation du bouton 3"
+msgstr "Émulation du bouton n° 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configuration des cartes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configuration IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "Aucune partition disponible"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Examen des partitions afin d'identifier les points de montage"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Choix des points de montage"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -5237,7 +5328,7 @@ msgstr ""
"\n"
"Ętes-vous d'accord pour perdre toutes vos partitions ?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5245,90 +5336,93 @@ msgstr ""
"DiskDrake ne peut pas lire la table des partitions de façon satisfaisante.\n"
"Vous pouvez continuer, mais ŕ vos risques et périls."
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-"Pas de place libre pour la partition d'amorçage (bootstrap) de 1 Mo."
+"Pas de place libre pour la partition d'amorçage (bootstrap) de 1 Mo."
"L'installation va\n"
"continuer, mais pour que votre systčme puisse démarrer, vous aurez besoin "
"de\n"
"créer la partition d'amorçage avec DiskDrake."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
"Impossible de trouver une partition racine pour procéder ŕ une mise ŕ jour."
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partition racine"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Quelle est la partition racine (/) de votre systčme ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Vous devez redémarrer pour que les modifications apportées ŕ la\n"
"table des partitions soient prises en compte"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Sélectionnez les partitions que vous souhaitez formater"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Vérifier la présence de secteurs endommagés ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatage des partitions"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Création et formatage du fichier %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Le swap est insuffisant pour achever l'installation, veuillez en ajouter."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr ""
+"Recherche des paquetages disponibles et reconstruction de la base de donnée "
+"rpm..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Recherche des paquetages disponibles..."
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Recherche des paquetages ŕ mettre ŕ jour..."
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Recherche des paquetages déja installés..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Votre systčme ne dispose pas d'assez d'espace libre pour l'installation ou "
"la mise-ŕ-jour (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Complčte (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimale (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recommandée (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5340,55 +5434,55 @@ msgstr ""
"Le format est le męme que celui des disquettes générées pour l'installation "
"automatisée."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Charger ŕ partir d'une disquette..."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Chargement depuis la disquette..."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Sélection des paquetages"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Insérez une disquette contenant une sélection de paquetages."
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Sauvegarder sur disquette..."
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "La taille sélectionnée est plus importante que la place disponible"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Type d'installation"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-"Vous n'avez sélectionné aucun groupe de paquetages\n"
-"Veuillez choisir l'installation minimale voulue."
+"Vous n'avez sélectionné aucun groupe de paquetages.\n"
+"Veuillez choisir l'installation minimale désirée :"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Avec X"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Avec la documentation de base (recommandé !)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installation vraiment minimale (et en particulier pas d'urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5396,18 +5490,18 @@ msgid ""
msgstr ""
"Si vous possédez tous les cédéroms ci-dessous, cliquez sur Ť OK ť.\n"
"Si vous n'en possédez aucun, cliquez sur Ť Annuler ť.\n"
-"Sinon désélectionnez ceux que vous n'avez pas, puis cliquez sur Ť OK ť."
+"Sinon, désélectionnez ceux que vous n'avez pas, puis cliquez sur Ť OK ť."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "cédérom Ť %s ť"
+msgstr "Cédérom Ť %s ť"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Préparation de l'installation"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5416,23 +5510,23 @@ msgstr ""
"Installation du paquetage %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Configuration post-installation"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insérez la disquette d'amorçage utilisée dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insérez la disquette de mise-ŕ-jour de modules dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5507,167 +5601,198 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+# I added an example (install on a networked machine, and the server is connected to the Internet).
+# / J'ai rajouté un exemple (voir texte) car cela me semble plus clair comme çŕ.
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Vous avez maintenant la possibilité de télécharger les mises ŕ jour\n"
-"créées depuis la sortie de cette version de Mandrake Linux.\n"
+"Vous avez maintenant la possibilité de télécharger les mises-ŕ-jour\n"
+"créées depuis la sortie de cette distribution. Il peut y avoir des "
+"correctifs de\n"
+" sécurité ou des résolutions de bogues.\n"
"\n"
-"Il s'agit de correctifs de sécurité, ou de correction de bogues,\n"
-"et vous aurez besoin d'une connexion internet pour les obtenir.\n"
+"Vous devez avoir une connexion internet active pour les télécharger,\n"
+"par exemple si vous ętes en réseau et que votre serveur est connecté.\n"
"\n"
"Voulez-vous installer les mises-ŕ-jour ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Connexion au site web de Mandrake Linux pour obtenir la liste des serveurs "
"miroirs disponibles..."
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Choisissez un serveur miroir d'oů télécharger les paquetages"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Téléchargement de la liste des paquetages disponibles..."
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Quelle est votre fuseau horaire ?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Horloge systčme réglée sur le Temps Universel (GMT)"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Synchronisation automatique de l'horloge (via NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Serveur NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Serveur CUPS distant"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Pas d'imprimante"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Possédez-vous une carte son ISA ?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Lancez Ť sndconfig ť aprčs l'installation pour configurer la carte son"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Aucune carte son detectée. Essayez avec Ť harddrake ť aprčs l'installation"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Résumé"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Souris"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Fuseau horaire"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Imprimante"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Carte RNIS/ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Carte son"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Carte TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Fichiers locaux"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Mot de passe root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Pas de mot de passe"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ce mot de passe est trop court (minimum %d caractčres)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentification"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Authentification LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Racine (dn) LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Serveur LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Authentification NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domaine NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Serveur NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Authentification Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Domaine Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Serveur de nom PDC"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5700,19 +5825,19 @@ msgstr ""
"Si vous voulez créer une disquette d'amorçage pour votre systčme, insérez \n"
"une disquette dans le premier lecteur et appuyer sur \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Premier lecteur de disquette"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Second lecteur de disquette"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Abandonner"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5743,7 +5868,7 @@ msgstr ""
"Désirez-vous créer une disquette d'amorçage pour votre systčme ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5754,33 +5879,33 @@ msgstr ""
"\n"
"\n"
"(ATTENTION ! Vous utilisez XFS pour votre partition racine,\n"
-"créer une disquette de boot 1.44 Mb va probablement échouer,\n"
+"créer une disquette de boot 1.44 Mb va probablement échouer,\n"
"parce que XFS a besoin d'un pilote trčs gros)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Désolé, aucun lecteur de disquette ne semble disponible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Choisissez le lecteur de disquette ŕ utiliser pour\n"
"créer votre disquette d'amorçage."
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Insérez une disquette dans le %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Création de la disquette d'amorçage..."
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Préparation du programme d'amorçage..."
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5794,11 +5919,11 @@ msgstr ""
"démarrer\n"
"votre machine."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Désirez-vous utiliser Ť aboot ť ?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5807,16 +5932,16 @@ msgstr ""
"Désirez-vous forcer l'installation au risque de détruire la\n"
"premičre partition du disque ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Installation du programme d'amorçage..."
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"L'installation du programme d'amorçage a échoué pour la raison suivante :"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5836,18 +5961,17 @@ msgstr ""
"Au prochain démarrage vous devriez voir apparaître l'invite du\n"
"programme d'amorçage."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insérez une disquette vierge dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Création de la disquette d'auto-installation..."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5857,7 +5981,8 @@ msgstr ""
"\n"
"Voulez-vous vraiment quitter maintenant ?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5868,7 +5993,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5882,17 +6007,21 @@ msgstr ""
"de Mandrake Linux, consultez les Errata disponibles depuis :\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Des informations sur la configuration de votre systčme sont \n"
"disponibles dans le Guide de l'Utilisateur de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Créer une disquette d'auto-installation"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5906,15 +6035,15 @@ msgstr ""
"\n"
"Vous pouvez préférer rejouer l'installation.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatisée"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Rejouer"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Sauvegarder la sélection des paquetages..."
@@ -5942,77 +6071,61 @@ msgstr "le programme Ť consolehelper ť est introuvable"
msgid "Choose a file"
msgstr "Choisissez un fichier"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avancé"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Basique"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Veuillez patienter"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Information"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Développer l'arborescence"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Réduire l'arborescence"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Basculer entre tri alphabétique et tri par groupes"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
-msgstr "Choix erroné. Veuillez recommencer\n"
+msgstr "Choix erroné, veuillez recommencer\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Que choisissez-vous ? (%s par défaut) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-"Champs que vous devrez remplir :\n"
+"Les champs que vous devrez remplir sont :\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Votre choix ? (0/1, défaut Ť %s ť)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Bouton Ť %s ť : %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Désirez-vous cliquer sur ce bouton ?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr "Saisissez `void' pour une entrée vide"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr "Que choisissez-vous ? (Ť %s ť%s par défaut) "
+msgstr "Que choisissez-vous ? (Ť %s ť par défaut%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Il y a beaucoup de choses ŕ choisir (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6022,7 +6135,7 @@ msgstr ""
"souhaitez modifier, ou appuyez juste sur <Entrée> pour continuer.\n"
"Votre choix ? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6031,327 +6144,327 @@ msgstr ""
"=> Notez qu'un message a changé :\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Revalider"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "tchčque (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "allemand"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak standard"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "espagnol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "finlandais"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "français"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "norvégien"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "polonais"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "russe"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "suédois"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "anglais"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "américain (États-Unis)"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "albanais"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "arménien (ancien)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "arménien (machine ŕ écrire)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "arménien (phonétique)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "azerbaďdjanais (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "belge"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "bulgare (phonétique)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "bulgare (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "brésilien"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "blélorusse"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "suisse (allemand)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "suisse (français)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "tchčque (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "allemand (sans touches mortes)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "danois"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak américain"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak norvégien"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak suédois"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "estonien"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "géorgien (disposition russe)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "géorgien (disposition latine)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "grec"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "hongrois"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "croate"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "israélien"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "israélien (phonétique)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "iranien"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "islandais"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "italien"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "japonais 106 touches"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "coréen"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "latino-américain"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "lituanien (AZERTY, ancien modčle)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "lituanien (AZERTY, nouveau modčle)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "lituanien Ť ligne de nombres ť QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "lituanien Ť phonétique ť QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "letton"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "macédonien"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "hollandais"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "polonais (QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "polonais (QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "portugais"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "canadien (Québec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "roumain (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "roumain (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "russe (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "slovénien"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "slovaque (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "slovaque (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "serbe (cyrillique)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "tamoul"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "thaďlandais"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "tadjik"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "turc (modčle traditionnel Ť F ť)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "turc (modčle moderne Ť Q ť)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "ukrainien"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "américain (international)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "vietnamien Ť colonne numérique ť QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "yougoslave (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Touche Alt droite"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Deux touches Shift simultanément"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Touches Control et Shift simultanément"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Touche CapsLock (verrouillage majuscule)"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Touches Ctrl et Alt simultanément"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Touches Alt et Shift simultanément"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Touche Ť Menu ť"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Touche Ť Windows ť gauche"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Touche Ť Windows ť droite"
@@ -6364,7 +6477,29 @@ msgstr "Points de montage circulaires %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Enlevez d'abord les volumes logiques\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "un nombre"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d nombres séparés par des virgules"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d chaînes séparées par des virgules"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "nombres séparés par des virgules"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "chaînes séparées par des virgules"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6407,10 +6542,6 @@ msgstr "1 bouton"
msgid "Generic 2 Button Mouse"
msgstr "Souris standard ŕ 2 boutons"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Générique"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Roulette"
@@ -6475,41 +6606,57 @@ msgstr "aucun"
msgid "No mouse"
msgstr "Pas de souris"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Veuillez tester votre souris"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Pour activer la souris,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
-msgstr "veuillez faire tourner la molette"
+msgstr "VEUILLEZ FAIRE TOURNER LA MOLETTE !"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Terminer"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Suivant ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Précédent"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Est-ce correct ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Information"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Développer l'arborescence"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Réduire l'arborescence"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Basculer entre tri alphabétique et tri par groupes"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
-msgstr "Connexion ŕ l'internet"
+msgstr "Connexion ŕ Internet"
#: ../../network/adsl.pm_.c:20
msgid ""
@@ -6517,7 +6664,7 @@ msgid ""
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-"La façon la plus courante de se connecter ŕ l'internet en utilisant\n"
+"La façon la plus courante de se connecter ŕ Internet en utilisant\n"
"une ligne ADSL est d'utiliser Ť pppoe ť.\n"
"\n"
"Certaines connexions utilisent Ť pptp ť, quelques unes se servent de Ť DHCP "
@@ -6558,20 +6705,20 @@ msgstr ""
"Aucune carte réseau n'a été détectée sur votre systčme.\n"
"La connexion ne peut donc pas ętre configurée."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Choisissez la carte réseau"
#: ../../network/ethernet.pm_.c:93
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Veuillez choisir la carte réseau qui sera connectée ŕ l'internet"
+msgstr "Veuillez choisir la carte réseau qui sera connectée ŕ Internet"
#: ../../network/ethernet.pm_.c:178
msgid "no network card found"
msgstr "Aucune carte réseau n'a été identifiée"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configuration du réseau"
@@ -6587,15 +6734,15 @@ msgstr ""
"Celui-ci doit ętre pleinenement qualifié, comme par exemple :\n"
"mamachine.monlabo.masociete.com"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nom d'hôte :"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Assistant de configuration réseau"
@@ -6635,11 +6782,11 @@ msgstr ""
#: ../../network/isdn.pm_.c:54
msgid "New configuration (isdn-light)"
-msgstr "nouvelle configuration (isdn-light)"
+msgstr "Nouvelle configuration (isdn-light)"
#: ../../network/isdn.pm_.c:54
msgid "Old configuration (isdn4net)"
-msgstr "ancienne configuration (isdn4net)"
+msgstr "Ancienne configuration (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
@@ -6650,7 +6797,7 @@ msgstr "Configuration RNIS/ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Veuillez choisir votre fournisseur d'accčs.\n"
"S'il ne figure pas dans la liste, choisissez Ť Non listé ť."
@@ -6669,14 +6816,14 @@ msgstr "Protocole pour le reste du monde"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protocole pour le reste du monde \n"
" Pas de D-Channel (lignes louées)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Quel protocole désirez-vous utiliser ?"
#: ../../network/isdn.pm_.c:199
@@ -6700,7 +6847,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Si vous possédez une carte ISA, les données du prochain écran devraient\n"
@@ -6718,13 +6866,13 @@ msgid "Continue"
msgstr "Continuer"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Quel est le modčle de votre carte RNIS/ISDN ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Une carte RNIS/ISDN a été détectée mais son type est inconnu. Veuillez "
"sélectionner une carte PCI dans le prochain écran."
@@ -6743,47 +6891,47 @@ msgstr "Veuillez choisir le port série sur lequel votre modem est connecté."
msgid "Dialup options"
msgstr "Options d'appel"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nom de la connexion"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Numéro de téléphone"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Identifiant de connexion"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Basée sur un script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Manuelle par terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nom de domaine"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "serveur DNS principal (optionnel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "serveur DNS secondaire (optionnel)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6791,7 +6939,7 @@ msgstr ""
"\n"
"Vous pouvez vous déconnecter ou reconfigurer votre connexion."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6799,44 +6947,44 @@ msgstr ""
"\n"
"Vous pouvez reconfigurer votre connexion."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
-msgstr "Vous ętes actuellement connecté ŕ l'internet."
+msgstr "Vous ętes actuellement connecté ŕ Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
"\n"
-"Vous pouvez vous connecter ŕ l'internet ou reconfigurer votre connexion."
+"Vous pouvez vous connecter ŕ Internet ou reconfigurer votre connexion."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
-msgstr "Vous n'ętes actuellement pas connecté ŕ l'internet."
+msgstr "Vous n'ętes actuellement pas connecté ŕ Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Connecter"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Se déconnecter"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Configurez la connection"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Connexion internet et configuration"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Nous allons configurer la connexion %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6855,12 +7003,12 @@ msgstr ""
"\n"
"Cliquez sur OK pour continuer."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuration du réseau"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6872,9 +7020,9 @@ msgstr ""
"Cliquez sur <Ok> pour conserver votre configuration,\n"
"ou sur <Annuler> pour reconfigurer votre connexion internet et réseau.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6885,92 +7033,98 @@ msgstr ""
"Si vous ne souhaitez pas utiliser la détection automatique, désélectionnez "
"la case correspondante.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Choisissez le profil ŕ configurer"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Utiliser la détection automatique"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mode Expert"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Détection des périphériques..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Connexion par modem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "détecté sur le port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Connexion par RNIS/ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "détecté %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "Connexion par ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "détecté sur l'interface %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
-msgstr "Connexion par Cable"
+msgstr "Connexion par cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
-msgstr "Connexion par Cable détectée"
+msgstr "connexion par Cable détectée"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
-msgstr "Connection ŕ travers un réseau local (LAN)"
+msgstr "Connexion ŕ travers un réseau local (LAN)"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "carte(s) ethernet détectée(s)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Choisissez la connexion que vous voulez configurer"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-"Vous avez configuré plusieurs moyens d'accčs ŕ l'internet.\n"
+"Vous avez configuré plusieurs moyens d'accčs ŕ Internet.\n"
"Choisissez celui que vous voulez utiliser.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Connexion internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Désirez-vous activer la connexion lors du démarrage ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuration du réseau"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Le réseau doit ętre redémarré"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6981,7 +7135,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6992,7 +7146,7 @@ msgstr ""
"La configuration va maintenant ętre appliquée ŕ votre systčme.\n"
"\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7000,32 +7154,32 @@ msgstr ""
"Une fois terminé, il est recommandé de redémarrer votre interface graphique, "
"afin d'éviter les problčmes liés au changement de nom d'hôte de la machine."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
"Des problčmes sont apparus pendant la configuration.\n"
"Testez votre connexion avec le Ť Centre de Contrôle Mandrake ť (dans la "
"section Ť réseau ť) ou la commande Ť net_monitor ť. Si votre connexion ne "
"fonctionne pas, vous pouvez essayer de relancer la configuration."
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-"ATTENTION : Ce périphérique a déjŕ été configuré pour la connexion "
+"ATTENTION : ce périphérique a déjŕ été configuré pour la connexion "
"internet.\n"
"\n"
"Cliquez simplement sur Ť OK ť pour conserver sa configuration.\n"
"Sinon la configuration actuelle sera écrasée par les modifications que vous "
"ferez."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7035,38 +7189,42 @@ msgstr ""
"Chaque champ doit ętre complété avec une adresse IP en notation\n"
"décimale pointée (par exemple, 12.34.56.78)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configuration du périphérique réseau %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (pilote %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Adresse IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Masque de sous-réseau"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Attribution automatique de l'adresse IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Exécuter au démarrage"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adresse IP doit ressembler ŕ quelque chose comme Ť 192.168.1.20 ť"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7079,176 +7237,181 @@ msgstr ""
"Vous pouvez également indiquer l'adresse IP de la passerelle\n"
"si votre réseau local en possčde une."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Serveur DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Passerelle (p.ex. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Périphérique passerelle"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuration des serveurs mandataires (proxy)"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Serveur mandataire HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Serveur mandataire FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Identifiant de la carte réseau (utile pour les portables)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "La syntaxe doit ętre http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "La syntaxe doit ętre ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
-msgstr "Configuration de l'accčs internet"
+msgstr "Configuration de l'accčs Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
-msgstr "Voulez-vous vous connecter ŕ l'internet maintenant ?"
+msgstr "Voulez-vous vous connecter ŕ Internet maintenant ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Test de votre connexion..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
-msgstr "Le systčme est ŕ présent connecté ŕ l'internet."
+msgstr "Le systčme est ŕ présent connecté ŕ Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Pour des raisons de sécurité, il va ętre déconnecté maintenant."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-"Le systčme ne semble pas connecté ŕ l'internet.\n"
-"Essayez de reconfigurer votre connection."
+"Le systčme ne semble pas connecté ŕ Internet.\n"
+"Essayez de reconfigurer votre connexion."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuration de la connexion"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Veuillez compléter ou vérifier les champs ci-dessous"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "n° IRQ de la carte"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Plage mémoire (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "E/S de la carte"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "E/S_O de la carte"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "E/S_1 de la carte"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Votre numéro de téléphone personnel"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
-msgstr "Fournisseur d'accčs (ex.: provider.fr)"
+msgstr "Fournisseur d'accčs (ex. : fournisseur.fr)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Numéro de téléphone pour l'accčs"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "1er DNS du fournisseur (optionnel)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "2čme DNS du fournisseur (optionnel)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Choisissez votre pays"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Numérotation"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Vitesse de connexion"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Temps maxi pour établir la connexion (en sec.)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
-msgstr "nom d'utilisateur du compte"
+msgstr "Nom d'utilisateur du compte"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Mot de passe du compte"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Royaume-Uni"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "Le montage a échoué : "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Les partitions étendues ne sont pas supportée par cette plateforme"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Il y a un espace vide dans la table des partitions mais il est\n"
"inutilisable. La seule solution est de déplacer vos partitions primaires\n"
"de telle façon que cet espace soit placé contre les partitions étendues."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restauration impossible depuis le fichier %s : %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Mauvais fichier de sauvegarde"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Erreur d'écriture dans le fichier %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7259,186 +7422,186 @@ msgstr ""
"échoué.\n"
"Cela signifie que serez victime de pertes aléatoires de données."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
-msgstr "doit avoir"
+msgstr "obligatoire"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "important"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "trčs utile"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "utile"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "éventuellement"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR Nouvelle Génération"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Imprimante locale"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Imprimante distante"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Imprimante sur serveur CUPS distant"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Imprimante sur serveur LPD distant"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Imprimante réseau autonome (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Imprimante sur serveur SMB (Windows 95/98/NT)"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Imprimante sur serveur NetWare"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Indiquer l'adresse du périphérique d'impression"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Impression vers une commande shell"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Modčle inconnu"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Imprimantes locales"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Imprimantes distantes"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " sur port parallčle \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", imprimante USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", périphérique multi-fonctions sur le port parallčle \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", périphérique USB multi-fonctions"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", périphérique HP JetDirect multi-fonctions"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", périphérique multi-fonctions"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", impression sur %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "sur serveur d'impression LPD Ť %s ť, imprimante Ť %s ť"
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", hôte TCP/IP Ť %s ť, port Ť %s ť"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "sur serveur Windows Ť %s ť, partage Ť %s ť"
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "sur serveur Novell Ť %s ť, imprimante Ť %s ť"
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", en utilisant la commande %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Imprimante ŕ accčs direct (pas de pilote)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(sur %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(sur cette machine)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Sur serveur CUPS Ť %s ť"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Défaut)"
@@ -7460,11 +7623,11 @@ msgstr ""
"Si vous utilisez un serveur CUPS distant, vous n'avez pas besoin de "
"configurer d'imprimante ici. Elles seront automatiquement détectées."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Configuration de CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Specifiez le serveur CUPS"
@@ -7512,7 +7675,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L'adresse IP doit ressembler ŕ quelque chose comme Ť 192.168.1.20 ť"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Le numéro de port doit ętre un nombre entier !"
@@ -7520,7 +7683,7 @@ msgstr "Le numéro de port doit ętre un nombre entier !"
msgid "CUPS server IP"
msgstr "Adresse IP du serveur CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7528,20 +7691,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Configuration automatique du serveur CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Détection des périphériques..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test des ports"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Ajouter une nouvelle imprimante"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7565,13 +7720,13 @@ msgstr ""
"disponibles ainsi qu'ŕ toutes leurs options et ŕ tous les types de "
"connection."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Imprimante locale"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7604,11 +7759,11 @@ msgstr ""
"printerdrake si vous voulez installer une imprimante réseau\n"
"qui n'est pas listée automatiquement."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Détection automatique des imprimantes"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7632,11 +7787,11 @@ msgstr ""
"etc.), rendez-vous dans la partie Ť imprimante ťde la section Ť matériel ť "
"du Centre de Contrôle Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Détection automatique des imprimantes"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7653,33 +7808,37 @@ msgstr ""
"\n"
"Voulez-vous vraiment auto-détecter vos imprimantes ?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Lancer la détection automatique"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Configurer l'imprimante manuellement"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Test des ports"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Détecté %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Imprimante sur le port parallčle \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Imprimante USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7692,11 +7851,11 @@ msgstr ""
"équivalents ŕ LPT1:, LPT2:, ..., premičre imprimante USB : /dev/usb/lp0, "
"deuxičme imprimante USB : /dev/usb/lp1, ...) "
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Vous devez enter un nom de fichier ou de périphérique!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7704,7 +7863,7 @@ msgstr ""
"Aucune imprimante locale n'a pu ętre trouvée!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7713,7 +7872,7 @@ msgstr ""
"Choississez Ť Matériel ť puis Ť Imprimantes ť dans le Centre de Contrôle de "
"Mandrake."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7722,7 +7881,7 @@ msgstr ""
"en Ť Mode Expert ť et cliquez ŕ nouveau sur Ť Ajouter une nouvelle "
"imprimante ť."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7731,7 +7890,7 @@ msgstr ""
"voulez configurer, tapez un nom de fichier ou de périphérique dans le champs "
"d'entrée"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7740,7 +7899,7 @@ msgstr ""
"l'imprimante que vous voulez configurer ou tapez un nom de périphérique ou "
"de fichier dans le champs d'entrée"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7752,7 +7911,7 @@ msgstr ""
"correctement détectée ou si vous préférer effectuer une configuration "
"personalisée, activez Ť Configuration Manuelle  ť ."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7765,7 +7924,7 @@ msgstr ""
"correctement détectée ou si vous préférer effectuer une configuration "
"personalisée, activez Ť Configuration Manuelle  ť .\""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7773,11 +7932,11 @@ msgstr ""
"Veuillez choisir le port sur laquelle votre imprimante est connectée ou "
"tapez le nom du périphérique ou de fichier dans le champs d'entrée"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Veuillez choisir le port sur lequel votre imprimante est connectée."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7786,52 +7945,63 @@ msgstr ""
"LPT2:, ..., premičre imprimante USB : /dev/usb/lp0, deuxičme imprimante "
"USB : /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Vous devez choisir ou entrer une imprimante ou un périphérique !"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Configuration manuelle"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Votre imprimante est-elle un appareil multifonction de HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 with scanner) ?"
+"LaserJet 1100/1200/1220/3200/3300 avec scanner), une HP PhotoSmart ou une HP "
+"LaserJet 2200?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Installation du paquetage HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Vérification du périphérique et configuration de HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Installation du paquetage SANE ..."
+#: ../../printerdrake.pm_.c:504
+msgid "Installing SANE packages..."
+msgstr "Installation des paquetages SANE ..."
+
+#: ../../printerdrake.pm_.c:524
+msgid "Installing mtools packages..."
+msgstr "Installation des paquetages mtools..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Acquisition ŕ partir de votre périphérique multi-fonction HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Acquisition ŕ partir de votre périphérique multi-fonction HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Mise ŕ disposition du port imprimante pour CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Lecture de la base de données des imprimantes..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Configuration d'une imprimante Unix (lpd) distante"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7839,27 +8009,27 @@ msgstr ""
"Pour utiliser une imprimante Unix distante, vous devez indiquer le nom "
"d'hôte du serveur LPD et le nom attribué ŕ l'imprimante par ce serveur."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Nom d'hôte du serveur"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Nom de l'imprimante"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Nom du serveur distant manquant !"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Le nom de l'imprimante est manquant !"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Configuration d'une imprimante SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7873,35 +8043,35 @@ msgstr ""
"d'utilisateur, mot de passe et groupe de travail nécessaires pour accéder ŕ "
"l'imprimante."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Nom du serveur"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "Adresse IP du serveur"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nom de partage de l'imprimante"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Groupe de travail"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Il faut au moins préciser le nom du serveur ou son adresse IP."
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Il faut préciser le nom de partage de l'imprimante."
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "ALERTE DE SÉCURITÉ !"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7924,8 +8094,29 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Vous ętes sur le point de paramétrer l'impression vers un compte Windows "
+"avec mot de passe. A cause d'une erreur dans la conception du logiciel "
+"client Samba, le mot de passe est inscrit en clair dans la ligne de commande "
+"qu'il envoie pour transmettre le travail d'impression au serveur Windows. Il "
+"est donc possible pour n'importe quel utilisateur de cette machine "
+"d'afficher ŕ l'écran ce mot de passe, simplement ent tapant une commande "
+"comme Ť ps auxwww ť.\n"
+"\n"
+"Nous vous conseillons d'utiliser les solutions alternatives suivantes (dans "
+"tous les cas, vous devez vous assurer que seules les machines de votre "
+"réseau local peuvent accéder ŕ votre serveur Windows, ŕ l'aide d'un pare-feu "
+"logiciel (firewall) par exemple):\n"
+"\n"
+"Utilisez un compte sans mot de passe sur votre serveur Windows, tel que le "
+"compte Ť Invité ť ou alors un compte dédié spécialement ŕ l'impression. "
+"N'enlevez pas la protection d'un compte Utilisateur ou Administrateur.\n"
+"\n"
+"Paramétrez votre serveur Windows afin que les imprimantes soient disponibles "
+"sous le protocole LPD. Réglez ensuite l'impression de cette machine-ci avec "
+"le type de connexion Ť %s ť dans Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7933,20 +8124,29 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Paramétrez votre serveur Windows afin que l'imprimante soit disponible sous "
+"le protocole IPP et réglez l'impression ŕ partir de cette machine-ci avec le "
+"type de connexion Ť %s ť dans Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
+"Branchez votre imprimante sur un serveur Linux et laissez votre(vos) machine"
+"(s) Windows se connecter en tant que client.\n"
+"\n"
+"Voulez-vous vraiment poursuivre le parmétrage de cette imprimante de cette "
+"façon?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Options de l'imprimante NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7958,27 +8158,27 @@ msgstr ""
"du nom d'hôte TCP/IP) et le nom de la file d'impression ŕ laquelle vous "
"voulez accéder ainsi qu'un nom de login et un mot de passe si nécessaire."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Nom du serveur d'impression"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nom de la file d'impression"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Nom du serveur NCP manquant!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Nom de la file d'attente NCP manquant!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "Options de l'imprimante réseau (TCP/socket)"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7991,19 +8191,19 @@ msgstr ""
"port est habituellement 9100, mais cela peut ętre différent pour\n"
"d'autres serveurs. Veuillez consulter le manuel de votre imprimante."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Nom d'hôte de l'imprimante"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Nom d'hôte de l'imprimante manquant !"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Adresse réseau du périphérique d'impression"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8015,11 +8215,11 @@ msgstr ""
"que tous les types d'URL ne sont pas supportés par tous les gestionnaires "
"d'impression."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Une adresse valide doit ętre entrée !"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8029,27 +8229,23 @@ msgstr ""
"Les champs Ť Description ť et Ť Emplacement ť n'ont pas besoin d'ętre "
"remplis. Ce sont de simples commentaires pour les utilisateurs."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nom de l'imprimante"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Description"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Emplacement"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Préparation de la base de données des imprimantes..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Le modčle de votre imprimante"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8073,24 +8269,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Le modčle est correct"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Sélectionner manuellement le modčle"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Sélection du modčle de l'imprimante"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Quel modčle d'imprimante possédez-vous ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -8104,7 +8300,7 @@ msgstr ""
"modčle correct dans la liste si le curseur se situe sur un modčle erroné ou "
"sur Ť Imprimante ŕ accčs direct ť."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8112,11 +8308,11 @@ msgstr ""
"Si votre imprimante n'est pas listée, choisissez-en une compatible (voir le "
"manuel de l'imprimante) ou similaire."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Configuration de l'imprimante OKI winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8133,11 +8329,11 @@ msgstr ""
"l'impression de la page de test. Sans cela, l'imprimante ne fonctionnera pas "
"Vos paramčtres de type de connexion seront ignorés par le pilote."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Configuration de l'imprimante Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8149,7 +8345,7 @@ msgstr ""
"des serveurs d'impression. Veuillez connecter votre imprimante sur un port "
"local ou configurez-la sur la machine ŕ laquelle elle est connectée."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -8173,7 +8369,7 @@ msgstr ""
"d'impression avec Ť lexmarkmaintain ť et ajustez les paramčtres de ces tętes "
"avec ce programme."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -8188,22 +8384,22 @@ msgstr ""
"sont correctement indiqués. Notez que la vitesse d'impression peut diminuer "
"si vous augmentez la qualité d'impression."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "L'option %s doit ętre un nombre entier !"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "L'option %s ętre un nombre !"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "L'option %s est en dehors des limites !"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8212,11 +8408,11 @@ msgstr ""
"Désirez-vous que l'imprimante Ť %s ť soit l'imprimante\n"
"par défaut ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Pages de test"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8229,39 +8425,39 @@ msgstr ""
"męme ne pas sortir.\n"
"Dans la plupart des cas, l'impression de la page de test standard suffit."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Pas de page de test"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Imprimer"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Page de test standard"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Page de test alternative (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Page de test alternative (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Page de test photo"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Ne pas imprimer de page de test"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Impression des pages de test..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8276,7 +8472,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8284,15 +8480,15 @@ msgstr ""
"Les pages de test ont été envoyées ŕ l'imprimante.\n"
"Il peut se passer un certain temps avant le début effectif de l'impression.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Ętes-vous satisfait du résultat ?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Imprimante ŕ accčs direct"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8306,7 +8502,7 @@ msgstr ""
"<fichier> ť. Les utilitaires graphiques vous permettent de choisir "
"l'imprimante et de modifier les paramčtres d'impression facilement.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8317,8 +8513,8 @@ msgstr ""
"applications. Dans ce cas n'indiquez pas le nom du fichier puisqu'il sera "
"fourni par l'application elle-męme.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8331,18 +8527,18 @@ msgstr ""
"pour une impression particuličre. Il suffit pour cela d'ajouter les "
"paramčtres voulus sur la ligne de commande. Par exemple, Ť %s <fichier> ť. "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Pour obtenir la liste des paramčtres disponibles pour l'imprimante courante, "
-"lisez la liste ci-dessous ou cliquez sur le bouton Ť liste des options "
-"d'impression ť.%s\n"
+"lisez la liste ci-dessous ou cliquez sur le bouton Ť imprimer la liste des "
+"options ť.%s%s\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8351,7 +8547,7 @@ msgstr ""
"courante:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8360,8 +8556,8 @@ msgstr ""
"Pour imprimer un fichier depuis la ligne de commande (une fenętre de "
"terminal), utilisez la commande Ť %s <fichier>ť.\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8372,7 +8568,7 @@ msgstr ""
"applications. Dans ce cas, n'indiquez pas le nom du fichier ŕ imprimer "
"puisque celui-ci sera fourni par l'application elle-męme.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8380,7 +8576,7 @@ msgstr ""
"Pour obtenir la liste des paramčtres disponibles pour l'imprimante courante, "
"cliquez sur le bouton Ť liste des options d'impression ť."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8389,7 +8585,7 @@ msgstr ""
"Pour imprimer un fichier depuis la ligne de commande (une fenętre de "
"terminal), utilisez la commande Ť %s <fichier> ť ou Ť %s <fichier> ť.\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8406,7 +8602,7 @@ msgstr ""
"les travaux d'impression. Ceci peut ętre utile en cas de bourrage papier, "
"par exemple.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8420,38 +8616,49 @@ msgstr ""
"cela d'ajouter les paramčtres voulus sur la ligne de commande, par exemple "
"Ť %s <fichier> ť.\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Fermer"
+#: ../../printerdrake.pm_.c:1773
+#, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Impression/Acquisition/Cartes photo sur Ť %s ť"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Impression/Acquisition sur l'imprimante Ť %s ť"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Impression/Accčs aux cartes photos sur Ť %s ť"
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Impression sur l'imprimante Ť %s ť"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Fermer"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Liste des options d'impression"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8466,39 +8673,30 @@ msgstr ""
"\n"
"N'utilisez pas Ť scannerdrake ť pour cet appareil ! "
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Votre appareil multifonction HP a été configuré automatiquement pour ętre "
-"capable de scanner. Maintenant vous pouvez scanner avec Ť tal-hp %s scan ... "
-"ť dans une fenętre de commandes. L'acquisition par interface graphique ou "
-"grace ŕ Ť Gimp ť n'est pas encore suportée avec cet appareil. Vous trouverez "
-"plus d'informations dans le fichier /usr/share/doc/hpoj-0.8/ptal-hp-scan."
-"html sur votre systčme. Si vous avez une HP LaserJet 1100 ou 1200, vous "
-"pouvez seulement scanner si vous avez l'option Ť scanner ť installée.\n"
-"\n"
-"N'utilisez pas Ť scannerdrake ť pour cet appareil ! "
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Lecture des données de l'imprimante..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Transfert de la configuration de l'imprimante"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8515,7 +8713,7 @@ msgstr ""
"Toutes les files d'attente n'ont pas pu ętre transférées ŕ cause des raisons "
"suivantes :\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8523,7 +8721,7 @@ msgstr ""
"CUPS ne supporte pas les imprimantes sur les serveurs Novell ni les "
"impressions vers des commandes shell.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8531,11 +8729,11 @@ msgstr ""
"PDQ ne supporte que les imprimantes locales, les imprimantes LPD distantes, "
"et les imprimantes réseau autonomes.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD et LPRng ne supportent pas les imprimantes IPP.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8543,7 +8741,7 @@ msgstr ""
"De plus, les files d'attente qui n'ont pas été créées avec ce programme ou "
"avec Ťfoomatic-configureť ne peuvent pas ętre transférées."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8553,7 +8751,7 @@ msgstr ""
"Aussi, les imprimantes configurées avec les fichiers PPD fournis par leur "
"fabriquant ou avec des pilotes CUPS natifs ne peuvent pas ętre transférées."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8563,15 +8761,15 @@ msgstr ""
"Cochez les imprimantes que vous voulez transférer, et\n"
"cliquez sur Ť Transfert ť."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Ne pas transférer les imprimantes"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Transfert"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8583,13 +8781,13 @@ msgstr ""
"Vous pouvez également taper un nouveau nom ou\n"
"simplement ignorer cette imprimante."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Le nom de l'imprimante ne devrait contenir que des lettres, des nombres et "
"des tirets bas (_)"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8598,16 +8796,16 @@ msgstr ""
"L'imprimante Ť %s ť existe déjŕ,\n"
"voulez-vous vraiment écraser sa configuration ?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nouveau nom de l'imprimante"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Transfert de %s..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8617,29 +8815,29 @@ msgstr ""
"elle ętre également l'imprimante par défaut de votre nouveau systčme "
"d'impression %s ?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Mise ŕ jour des données de l'imprimante..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Configuration d'une imprimante distante"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Démarrage du réseau..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Configurez le réseau maintenant"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Les fonctionnalités du réseau ne sont pas configurées"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8651,11 +8849,11 @@ msgstr ""
"voulez continuer sans configurer le réseau, vous ne pourez pas utiliser "
"l'imprimante que vous ętes en train de configurer. Que voulez-vous faire ?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Continuer sans configurer le réseau"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8671,7 +8869,7 @@ msgstr ""
"essayez ŕ nouveau de configurer l'imprimante dans la section Ť Matériel / "
"Imprimante ť."
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8681,24 +8879,24 @@ msgstr ""
"de votre matériel et de votre accčs réseau grâce au Ť Centre de Contrôle "
"Mandrake ť puis essayez ŕ nouveau de configurer l'imprimante distante."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Redémarrage du systčme d'impression..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "élevé"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoďaque"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installation du systčme d'impression sous le niveau de sécurité Ť %s ť"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8724,11 +8922,11 @@ msgstr ""
"\n"
"Voulez-vous réellement installer un systčme d'impression ?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Activation du systčme d'impression au démarrage"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8750,63 +8948,63 @@ msgstr ""
"\n"
"Voulez-vous rétablir l'activation automatique du systčme d'impression ?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Vérification du logiciel installé..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Suppression de LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Suppression de LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Choisissez le gestionnaire d'impression"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Quel systčme d'impression désirez-vous utiliser ?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Configuration de l'imprimante Ť %s ť..."
+msgid "Configuring printer \"%s\"..."
+msgstr "Configuration en cours de l'imprimante Ť %s ť..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Installation de Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Options de l'imprimante"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Préparation de PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Configuration des applications...."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Désirez-vous configurer l'impression ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Systčme d'impression : "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8818,7 +9016,7 @@ msgstr ""
"consulter les informations ŕ son propos ou pour rendre une imprimante d'un "
"serveur CUPS distant utilisable par Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8828,30 +9026,34 @@ msgstr ""
"pour modifier ses paramčtres, en faire l'imprimante par défaut ou consulter "
"les informations ŕ son propos."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Rafraîchir la liste des imprimantes (pour afficher toutes les imprimantes "
"CUPS distantes)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Changer le systčme d'impression"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Mode normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Quitter"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Désirez-vous configurer une autre imprimante ?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Modifier la configuration de l'imprimante"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8860,102 +9062,102 @@ msgstr ""
"Imprimante %s\n"
"Que souhaitez-vous modifier sur cette imprimante ?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Faire"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Type de connexion"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Nom, description, emplacement"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Marque, modčle, pilote"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Marque, modčle"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Choisir comme imprimante par défaut"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Ajouter cette imprimante ŕ StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Retirer cette imprimante de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Imprimer des pages de test"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Savoir comment utiliser cette imprimante"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Désinstaller l'imprimante"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Désinstallation de l'ancienne imprimante Ť %s ť..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Imprimante par défaut"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "L'imprimante Ť %s ť est maintenant celle par défaut."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Ajout de l'imprimante ŕ StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "L'imprimante Ť %s ť a été ajoutée avec succčs ŕ StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Impossible d'ajouter l'imprimante Ť %s ť ŕ StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Retrait de l'imprimante de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "L'imprimante Ť %s ť a été retirée avec succčs de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Impossible de retirer l'imprimante Ť %s ť de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Désirez-vous vraiment désinstaller l'imprimante Ť %s ť?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Suppression de l'imprimante Ť %s ť..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -9043,24 +9245,62 @@ msgstr ""
"Impossible d'ajouter une partition au RAID md%d car\n"
"celui-ci est déjŕ formaté"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Impossible d'écrire le fichier %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "Ť mkraid ť a échoué"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "Ť mkraid ť a échoué (les Ť raidtools ť sont-ils installés ?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Trop peu de partitions pour du RAID de niveau %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ce niveau de sécurité doit ętre utilisé avec précaution. Il rend votre\n"
+"systčme plus facile ŕ utiliser, aux dépens de la sécurité. Il ne devrait\n"
+"donc pas ętre utilisé sur une machine connectée ŕ un réseau ou ŕ Internet.\n"
+"Aucun mot de passe n'est requis."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Avec ce niveau de sécurité, l'utilisation de cette machine en tant que\n"
+"serveur devient envisageable. La sécurisation est suffisamment forte pour\n"
+"accepter les connexions de nombreux clients. Note : si votre machine est\n"
+"seulement connectée en tant que client sur Internet, vous devriez plutôt\n"
+"choisir un niveau inférieur."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Options avancées"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Options"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9130,7 +9370,7 @@ msgstr ""
"HardDrake effectue une détection matérielle, et configure éventuellement le "
"nouveau matériel."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -9177,7 +9417,7 @@ msgid ""
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"Régénération automatique des fichiers d'en-tętes pour le noyau\n"
-"dans le dossier /boot pour /usr/include/linux/{autoconf,version}.h"
+"dans le répertoire /boot pour /usr/include/linux/{autoconf,version}.h"
#: ../../services.pm_.c:40
msgid "Automatic detection and configuration of hardware at boot."
@@ -9209,7 +9449,7 @@ msgstr ""
"utilisé pour créer un serveur virtuel haute-performance et haute "
"disponibilité, composé d'un ensemble de serveur linux reliés entre eux."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9247,9 +9487,10 @@ msgid ""
"/etc/exports file."
msgstr ""
"Démarrage ou arręt du serveur NFS. Un serveur NFS permet d'effectuer un "
-"partage de fichiers en ouvrant l'accčs ŕ certains dossiers depuis un réseau. "
-"Les dossiers partagés sont listés dans le fichier /etc/exports, mais vous "
-"pouvez l'éditer grâce ŕ Ť linuxconf ť dans la section Ť réseau / serveur ť."
+"partage de fichiers en ouvrant l'accčs ŕ certains répertoires depuis un "
+"réseau. Les répertoires partagés sont listés dans le fichier /etc/exports, "
+"mais vous pouvez l'éditer grâce ŕ Ť linuxconf ť dans la section Ť réseau / "
+"serveur ť."
#: ../../services.pm_.c:55
msgid ""
@@ -9297,7 +9538,7 @@ msgstr ""
"comme NFS et NIS. Le serveur portmap doit ętre activé sur des machines "
"jouant le rôle de serveur pour des protocoles utilisant le mécanisme RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9402,7 +9643,7 @@ msgstr "internet"
msgid "File sharing"
msgstr "Partage de fichiers"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Systčme"
@@ -9533,6 +9774,7 @@ msgstr ""
"environnements Open Source."
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Control Center"
@@ -9656,6 +9898,17 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Installation des paquetages..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr ""
+"Veuillez vous déconnecter puis presser simultanément les touches Ctrl-Alt-"
+"BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Veuillez relancer %s pour activer les changements"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9664,6 +9917,145 @@ msgstr ""
"La table des partitions ne peut ętre lue car elle semble endommagée.\n"
"Une réinitialisation des partitions endommagées va ętre tentée."
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuration du Serveur de Terminaux Mandrake"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Activer le serveur"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Désactiver le serveur"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Lancer le serveur"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Arręter le serveur"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Ajouter/Effacer un utilisateur"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Ajouter/Effacer un client"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Aide"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Disquette de démarrage"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Image ISO de démarrage"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Construire le Kernel entier -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Celŕ va prendre quelques minutes."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Aucun noyau sélectionné!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Aucune interface réseau sélectionnée!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Construire tous les noayx -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Effacer"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Sélectionne tout"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Ajouter un utilisateur -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Effacer un utilisateur"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Ajouter un client -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Effacer un client"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Configuration de dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Écrire la configuration"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "SVP, veuillez insérez une disquette d'amorçage dans le lecteur"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Impossible d'accéder ŕ la disquette!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "La disquette peut maintenant etre retirée du lecteur"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Aucun lecteur de disquette disponible!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Quelque chose s'est mal passé! mkisofs est-il bien installé?"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Erreur !"
@@ -9717,6 +10109,10 @@ msgstr ""
"Veuillez choisir, pour chaque étape, si celle-ci doit ętre rejouée comme "
"pendant votre installation, ou si elle doit s'effectuer manuellement."
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Création de la disquette d'auto-installation"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9730,12 +10126,12 @@ msgstr ""
"Les paramčtres de l'installation automatique sont disponibles dans les "
"sections sur la gauche."
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Félicitations !"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9743,28 +10139,19 @@ msgstr ""
"La disquette a été générée avec succčs.\n"
"Vous pouvez maintenant rejouer votre installation."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Installation automatique"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Ajouter un élément"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Supprimer le dernier élément"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9774,7 +10161,7 @@ msgstr ""
" Rapport de sauvegarde (DrakBackup) \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9786,19 +10173,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9810,63 +10185,85 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "TOTAL :"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Sauvegarde des fichiers systčmes..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Sauvegarde sur disque dur..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Sauvegarde des comptes utilisateurs..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Sauvegarde sur disque dur..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Sauvegarde des autres fichiers..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-"liste envoyée par FTP : %s\n"
+"liste des fichiers envoyée par FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) Problčme de connection FTP: impossible d'envoyer les sauvegardes par "
-"FTP.\n"
+"Problčme de connection FTP: impossible d'envoyer vos fichiers de sauvegarde "
+"par FTP.\n"
+
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Erreur lors de l'envoi du mail?\n"
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr "Erreur lors de l'envoi du courrier.\n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
-msgstr "Sélection de fichiers ou dossiers"
+msgstr "Sélection de fichiers ou répertoires"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
-msgstr "Sélectionnez les fichiers ou dossiers puis cliquez sur Ť Ajouter ť"
+msgstr "Sélectionnez les fichiers ou répertoires puis cliquez sur Ť Ajouter ť"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9874,107 +10271,100 @@ msgstr ""
"\n"
"Veuillez cocher toutes les options dont vous avez besoin.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ces options peuvent sauvegarder et restaurer\n"
-"tous les fichiers du dossier de configuration systčme Ť /etc ť\n"
+"tous les fichiers du répertoire de configuration systčme Ť /etc ť\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
-msgstr "Sauvegarder le dossier de configuration systčme (dossier /etc)"
+msgstr "Sauvegarder le répertoire de configuration systčme (répertoire /etc)"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Sauvegardes incrémentales (économie d'espace)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Ne pas inclure les fichiers critiques (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
"Note : la sauvegarde incrémentale n'écrase pas les anciennes sauvegardes."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Veuillez cocher tous les comptes utilisateurs ŕ sauvegarder"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Ne pas inclure le cache du navigateur internet (fichiers tampon)"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Sauvegardes incrémentales (économie d'espace)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Supprimer sélection"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Utilisateurs..."
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Sauvegarder par FTP"
+#: ../../standalone/drakbackup_.c:1257
+msgid "Use network connection to backup"
+msgstr "Sauvegarder via le réseau"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Nom d'hôte ou adresse IP de la machine de sauvegarde"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "Dossier oů poser la sauvegarde sur cette machine"
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Nom de connexion sur cette machine"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Veuillez entrer votre mot de passe"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Se souvenir du mot de passe"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "par connexion FTP..."
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "par connexion sécurisée..."
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Sauvegarder sur CDR (ou DVDR)"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Veuillez choisir la taille de votre CD"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "CD Réinscriptible"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Effacer le CDRW avant sauvegarde"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9982,7 +10372,7 @@ msgstr ""
"Veuillez vérifier que vous voulez inclure\n"
"le lanceur de l'installation sur votre CD"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9990,144 +10380,151 @@ msgstr ""
"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
"(détecter avec Ť cdrecord -scanbus ť. Par exemple : 0,1,0 )"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Sauvegarde sur cartouche"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Nom de périphérique du matériel de sauvegarde (/dev/...?)"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+msgid "Please check if you want to erase your tape before the backup."
+msgstr ""
+"Etes vous sur de vouloir effacer votre bande magnétique avant de faire la "
+"sauvegarde."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr "Taille maximale de sauvegarde :"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Dossier oů poser la sauvegarde :"
+#: ../../standalone/drakbackup_.c:1497
+msgid "Please enter the directory to save to:"
+msgstr "Veuillez indiquer le dossier oů sauvegarder:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Limiter la taille de la sauvegarde"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "par transfert réseau..."
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
-msgstr "Dans un dossier (local ou partagé)..."
+msgstr "Dans un répertoire (local ou partagé)..."
+
+#: ../../standalone/drakbackup_.c:1595
+msgid "Tape"
+msgstr "Bande"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "toutes les heures"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "tous les jours"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "toutes les semaines"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "tous les mois"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Sauvegarde périodique"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Veuillez choisir l'intervalle de temps entre les sauvegardes"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Quelle sauvegarde sera périodique ?"
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "celle sur Disque dur / NFS"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "celle par FTP"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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 ""
-"ATTENTION : Le Ť cron ť doit ętre actif dans vos services. (voir le Ť Centre "
-"de Contrôle Mandrake ť section Ť systčme / services ť)"
+"Veuillez vérifier que le démon Ť cron ť fait partie de vos services.\n"
+"\n"
+"Tenez compte du fait qu'actuellement tous les médias réseaux utilisent "
+"également le disque dur."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Envoyer un rapport par mail aprčs chaque sauvegarde ŕ :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Quoi..."
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Oů..."
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Quand..."
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Plus d'options..."
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Configuration de sauvegarde Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Veuillez choisir oů stocker la sauvegarde"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "sur disque dur"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "par réseau"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Veuillez choisir ce que vous voulez sauvegarder"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Sauvegarder le systčme"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Sauvegarder les comptes utilisateurs"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Sélectionner individuellement les utilisateurs"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -10135,7 +10532,7 @@ msgstr ""
"\n"
"Sources de sauvegarde : \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -10143,7 +10540,7 @@ msgstr ""
"\n"
"- Fichiers systčme:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -10151,42 +10548,73 @@ msgstr ""
"\n"
"- Données des utilisateurs :\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
"\n"
-"- Autres fichiers ou dossiers :\n"
+"- Autres fichiers ou répertoires :\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
"\n"
-"- Sauvegarde sur le disque dur dans le dossier : %s\n"
+"- Sauvegarde sur le disque dur dans le répertoire : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+"\n"
+"- Graver le CD"
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr "RW"
+
+#: ../../standalone/drakbackup_.c:1978
+#, c-format
+msgid " on device : %s"
+msgstr "sur le périphérique : %s"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Sauvegarde sur bande via le péphérique : %s"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
-"- Sauvegarde par FTP sur la machine : %s\n"
+"- Sauvegarde via %s sur la machine : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
"\t\t nom de connexion : %s\n"
-"\t\t dans le dossier : %s \n"
+"\t\t dans le répertoire : %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -10194,19 +10622,19 @@ msgstr ""
"\n"
"- Options:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tFichiers systčmes non inclus\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tLe sauvegarde utilise Ť tar ť et Ť bzip2 ť\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tLa sauvegarde utilise Ť tar ť et Ť gzip ť\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -10215,30 +10643,44 @@ msgstr ""
"\n"
"- Le Démon (%s) comprend :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-celle sur Disque dur.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-celle sur CDR.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr "\t-Bande\n"
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-celle par transfert FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-celle par transfert SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-celle par transfert FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-celle par transfert FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"La configuration de sauvegarde n'est pas encore définie. \n"
"Veuillez cliquer sur Ť Configuration par assistant ť, ou Ť Configuration "
"manuelle ť\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -10246,7 +10688,7 @@ msgstr ""
"Liste de données ŕ restaurer :\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10254,139 +10696,142 @@ msgstr ""
"Liste des données corrompues :\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Veuillez le décocher ou le retirer la prochaine fois"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Les fichiers de sauvegarde sont corrompus"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Toutes vos données sélectionnées ont été "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-" correctement restaurées en prenant Ť %s ť comme dossier racine "
+" correctement restaurées en prenant Ť %s ť comme répertoire racine "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Restauration de la configuration "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK pour restaurer les autres fichiers."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Fichiers de sauvegarde ŕ restaurer (seul le plus récent compte)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Sauvegarder les fichiers systčme avant :"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Veuillez choisir la date ŕ restaurer"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Sauvegarde sur disque dur"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Dossier oů poser la sauvegarde :"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "par connexion FTP..."
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "par connexion sécurisée..."
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
-msgstr "Restaurer ŕ partir d'un dossier"
+msgstr "Restaurer ŕ partir d'un répertoire"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr "Veuillez entrer le dossier oů résident les sauvegardes"
+msgstr "Veuillez entrer le répertoire oů résident les sauvegardes"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Choisir un autre support de sauvegarde"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Autre support"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Restaurer le systčme"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Restaurer les comptes utilisateurs"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
-msgstr "Restaurer les autres fichiers ou dossiers"
+msgstr "Restaurer les autres fichiers ou répertoires"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
-msgstr "Choisir un autre dossier racine de restauration ( au lieu de / )"
+msgstr "Choisir un autre répertoire racine de restauration ( au lieu de / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Nouvelle sauvegarde avant restauration (seulement pour l'incrémental)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
-msgstr "Retirer les dossiers personnels ds utilisateurs avant restauration"
+msgstr "Retirer les répertoires personnels ds utilisateurs avant restauration"
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Restaurer toutes les sauvegardes..."
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Restauration personnalisée..."
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Aide"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "<- Précédent"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Valider"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Sauvegarder !"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Restaurer !"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Suivant ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
"Merci de vouloir faire une sauvegarde avant de vouloir restaurer... (ou bien "
-"vérifiez que votre dossier de sauvegarde est correct)"
+"vérifiez que votre répertoire de sauvegarde est correct)"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10396,31 +10841,34 @@ msgstr ""
" Votre rapport n'a pas été envoyé\n"
" Veuillez configurer Ť sendmail ť"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Liste des paquetages ŕ installer"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Les paquetages suivants vont ętre installés"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-"Erreur pendant l'envoi par FTP.\n"
-" Veuillez corriger votre configuration FTP"
+"Erreur pendant l'envoi du fichier par FTP.\n"
+" Veuillez corriger votre configuration FTP"
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Veuillez choisir les données ŕ restaurer..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Veuillez choisir le support de sauvegarde..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Veuillez choisir les données ŕ sauvegarder..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10429,77 +10877,77 @@ msgstr ""
"Veuillez cliquer sur Ť Configuration par assistant ť, ou Ť Configuration "
"manuelle ť"
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "En développement ... veuillez patienter."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Sauvegarde des fichiers systčmes..."
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Sauvegarde des comptes utilisateurs..."
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
-msgstr "Sauvegarde des autres fichiers ou dossiers..."
+msgstr "Sauvegarde des autres fichiers ou répertoires..."
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "TOTAL :"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "Envoi par FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Envoi des fichiers..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Liste ŕ include sur le CDR"
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Veuillez taper la vitesse de gravure :"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
"(détecter avec Ť cdrecord -scanbus ť. Par exemple : 0,1,0 )"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Veuillez vérifier si vous voulez Inclure l'install boot sur le CD"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Sauvegarder ŕ partir de la configuration définie"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Voir la configuration de sauvegarde"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Configuration par assistant"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Configuration manuelle"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Sauvegarder !"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10550,7 +10998,7 @@ msgstr ""
" - le mode .backupignore :\n"
"\n"
" Comme avec CVS, Drakbackup va ignorer les références\n"
-" incluses dans les fichiers .backupignore de chaque dossier.\n"
+" incluses dans les fichiers .backupignore de chaque répertoire.\n"
" ex: \n"
" /*> cat .backupignore*/\n"
" *.o\n"
@@ -10559,7 +11007,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10573,7 +11021,7 @@ msgstr ""
" configurer le nom de machine ou de domaine dans /etc/postfix/main.cf.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10617,7 +11065,7 @@ msgstr ""
"\n"
" - Sauvegarde des fichiers systčmes :\n"
" \n"
-"\tCette option vous permet de sauvegarder votre dossier /etc,\n"
+"\tCette option vous permet de sauvegarder votre répertoire /etc,\n"
"\tqui contient tous les fichiers de configuration. Faites attention\n"
"\tpendant la restauration de ne pas écraser :\n"
"\t\t/etc/passwd \n"
@@ -10629,7 +11077,7 @@ msgstr ""
"\tCette option vous permet de choisir les utilisateurs \n"
"\tŕ sauvegarder.\n"
"\tPour préserver l'espace disque, il est recommandé\n"
-"\tde ne pas inclure les dossier Ť cache ť des navigateurs.\n"
+"\tde ne pas inclure les répertoire Ť cache ť des navigateurs.\n"
"\n"
" - Sauvegarde des autres fichiers : \n"
"\n"
@@ -10651,7 +11099,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10689,13 +11137,18 @@ msgstr ""
"\n"
"Sinon, vous ne pouvez en choisir qu'une\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft par DUPONT Sébastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -10726,7 +11179,7 @@ msgstr ""
"en męme temps que ce programme; sinon, écrivez ŕ la Ť Free Software\n"
"Foundation ť, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10783,10 +11236,10 @@ msgstr ""
"\t- Webdav.\n"
"\t- Cartouche.\n"
"\n"
-" Drakbackup peut restaurer votre systčme vers un dossier choisi\n"
+" Drakbackup peut restaurer votre systčme vers un répertoire choisi\n"
"\n"
" Par défaut toute sauvegarde sera stockée dans le\n"
-" dossier /var/lib/drakbackup\n"
+" répertoire /var/lib/drakbackup\n"
"\n"
" Fichier de configuration :\n"
"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
@@ -10795,13 +11248,13 @@ msgstr ""
"Étape de restauration :\n"
" \n"
" Pendant l'étape de restauration, DrakBackup va retirer \n"
-" votre dossier d'origine et vérifier que tous les \n"
+" votre répertoire d'origine et vérifier que tous les \n"
" fichiers de sauvegarde ne sont pas corrompus. Il est recommandé \n"
" de faire une derničre sauvegarde avant restauration.\n"
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10819,7 +11272,7 @@ msgstr ""
"avant de l'envoyer vers le serveur.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10835,12 +11288,12 @@ msgstr ""
"Problčmes de restauration :\n"
"\n"
"Avant l'étape de restauration, Drakbackup va vérifier tous vos\n"
-"fichiers de sauvegarde. Les dossiers originaux seront effacés\n"
+"fichiers de sauvegarde. Les répertoires originaux seront effacés\n"
"et vous allez perdre toutes vos données. Il est important de \n"
"faire les choses avec précaution et de ne pas modifier ŕ la main\n"
"les fichiers de sauvegarde.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10896,10 +11349,10 @@ msgstr ""
"\t- Webdav.\n"
"\t- Cartouche.\n"
"\n"
-" Drakbackup peut restaurer votre systčme vers un dossier choisi\n"
+" Drakbackup peut restaurer votre systčme vers un répertoire choisi\n"
"\n"
" Par défaut toute sauvegarde sera stockée dans le\n"
-" dossier /var/lib/drakbackup\n"
+" répertoire /var/lib/drakbackup\n"
"\n"
" Fichier de configuration :\n"
"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
@@ -10908,7 +11361,7 @@ msgstr ""
"Étape de restauration :\n"
" \n"
" Pendant l'étape de restauration, DrakBackup va retirer \n"
-" votre dossier d'origine et vérifier que tous les \n"
+" votre répertoire d'origine et vérifier que tous les \n"
" fichiers de sauvegarde ne sont pas corrompus. Il est recommandé \n"
" de faire une derničre sauvegarde avant restauration.\n"
"\n"
@@ -10919,99 +11372,518 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "L'installation de %s a échoué pour la raison suivante :"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Outil de signalement de bug Mandrake"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Assistant de premičre connection"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Outil de synchronisation"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Utilitaires console"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Contrôle ŕ distance"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Gestionnaire de programmes"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Outil de migration windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Assistants de configuration"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Application:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Paquetage:"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Noyau:"
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Version: "
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+msgid "Not installed"
+msgstr "Non installé"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Signaler"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Connection ŕ l'assistant Bugzilla ..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Pas de navigateur disponible! Veuillez en installer un"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuration du réseau (%d cartes réseaux)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil : "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Effacer le profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil ŕ effacer :"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nouveau profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nom du profil ŕ créer (le nouveau profil est créé comme une copie du profil "
+"courant :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nom de machine : "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Accčs internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Type :"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Passerelle :"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interface :"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "État :"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Veuillez patienter"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configurer l'accčs ŕ Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuration LAN (réseau local)"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Pilote"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interface"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocole"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "État"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configurer le réseau local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Cliquez ici pour lancer l'assistant ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistant..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Appliquer"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Veuillez patienter... mise en place de la configuration"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Connecté"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Non connecté"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Se connecter..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Se déconnecter..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Attention, une autre connexion internet a été détectée, peut-ętre utilisant "
+"votre réseau"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Vous n'avez aucune interface réseau configurée.\n"
+"Vous pouvez en configurer une en cliquant sur Ť Configurer ť"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuration du LAN (réseau local)"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Carte réseau %s : %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocole d'amorçage"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Lancer au démarrage"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "activer maintenant"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "désactiver maintenant"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Cette interface n'a pas encore été configurée.\n"
+"Lancez l'assistant de configuration dans la fenętre principale"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Vous n'avez aucune connection internet.\n"
+"Vous pouvez en créer une en cliquant sur Ť Configurer ť"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuration de la connexion internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuration de la connexion internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Type de connexion : "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Paramčtres"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Passerelle"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Carte ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "mode d'emploi : drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nom du module"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Taille"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "création d'une disquette d'amorçage"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "par défaut"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Erreur DrakFloppy : %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "version du noyau"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Général"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Mode Expert"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "arguments optionnels pour mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Ajouter un module"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forcer"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "si besoin est"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "ne pas tenir compte des modules SCSI"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "ne pas tenir compte des modules RAID"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Retirer un module"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Sortie"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Créer la disquette"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Assurez-vous qu'un médium est présent dans le périphérique %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Il n'y a aucune disquette dans le lecteur %s ou alors elle est \n"
+"protégée contre l'écriture. Veuillez vérifier ou en insérer une."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne peut dédoubler (fork) : %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ne peut terminer correctement mkbootdisk : \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Chercher les polices installées"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Désélectionner les polices installées"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "Parcourir toutes les polices"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "aucune fonte trouvée"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "terminé"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "impossible de trouver des polices dans vos disques"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Résélectionnez des polices correctes"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "impossible de trouver des polices.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Chercher des polices dans la liste des installées"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Copie des fontes"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Installation de polices Ť True Type ť"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "Veuillez patienter pendant Ť ttmkfdir ť"
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Installation Ť True Type ť terminée"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Conversion de polices"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "création de type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Inscription dans ghoscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "Conversion de polices Ť True Type ť"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "Conversion de polices Ť pfm ť"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Supprimer les fichiers temporaires"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Relancer le serveur de polices"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Supprimer les fichiers de polices"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "redémarrage du serveur de fonte"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11026,167 +11898,167 @@ msgstr ""
"cas,\n"
"des polices boguées peuvent bloquer votre serveur d'affichage XFree."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Importation de polices"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Récupérer les polices de Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Désinstaller des polices"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Options avancées"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Liste des polices"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Choisissez les applications qui supporteront ces polices"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Imprimante générique"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
-msgstr "Sélectionnez les polices ou dossiers et cliquez sur Ť Ajouter ť"
+msgstr "Sélectionnez les polices ou répertoires et cliquez sur Ť Ajouter ť"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Installe la liste"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "Cliquez ici si vous ętes sűr"
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "Ici sinon"
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Désélectionne tout"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Sélectionne tout"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Désinstalle la liste"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Tests initiaux"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Copier les polices sur votre systčme"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Installe et convertit des polices"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post-installation"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Retirer des polices de votre systčme"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post-désinstallation"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Partage de la connexion internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Désolé, nous ne prenons en charge que les noyaux (kernel) 2.4 ."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Le partage de la connexion internet est activé"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""
-"La configuration du partage de la connexion ŕ l'internet a déjŕ été\n"
+"La configuration du partage de la connexion ŕ Internet a déjŕ été\n"
"effectuée. Elle est actuellement activée.\n"
"\n"
"Que voulez-vous faire ?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "désactiver"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "ne rien faire"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "reconfigurer"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Désactivation des serveurs..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
-msgstr "Le partage de la connexion ŕ l'internet est maintenant désactivé."
+msgstr "Le partage de la connexion ŕ Internet est maintenant désactivé."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
-msgstr "Le partage de la connexion ŕ l'internet est désactivé"
+msgstr "Le partage de la connexion ŕ Internet est désactivé"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""
-"La configuration du partage de la connexion ŕ l'internet a déjŕ été\n"
+"La configuration du partage de la connexion ŕ Internet a déjŕ été\n"
"effectuée. Elle est actuellement désactivée.\n"
"\n"
"Que voulez-vous faire ?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "activer"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Activation des serveurs..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Le partage de la connexion internet est maintenant activé."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11203,21 +12075,21 @@ msgstr ""
"Veuillez noter que vous avez besoin d'une carte réseau dédiée ŕ votre réseau "
"local."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (utilisant le module %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Aucune carte réseau n'est présente dans votre systčme"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11225,11 +12097,11 @@ msgstr ""
"Aucune carte réseau n'a été détectée sur votre systčme. Veuillez utiliser "
"l'outil de configuration du matériel."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Carte réseau"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11244,18 +12116,18 @@ msgstr ""
"\n"
"Je vais configurer votre réseau local avec cette carte réseau."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Veuillez choisir quelle carte réseau sera connectée ŕ votre réseau local"
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Interface réseau déjŕ configurée"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11270,15 +12142,15 @@ msgstr ""
"\n"
"Vous pouvez le faire manuellement, mais vous devez savoir ce que vous faites."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Reconfiguration automatique"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Montrer la configuration actuelle"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11295,7 +12167,7 @@ msgstr ""
"Attribution de l'adresse : %s\n"
"Pilote : %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11320,34 +12192,34 @@ msgstr ""
"DHCP.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Réseau Local de class C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "Adresse IP du serveur DHCP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Re-configurer l'interface et le serveur DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Le réseau local ne finissait pas par `.0', j'abandonne."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Conflit potentiel d'adresses du réseau local trouvé dans la configuration de "
"%s !\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Configuration du Firewall détectée"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11355,22 +12227,22 @@ msgstr ""
"Attention ! Une configuration existante du Firewall a été détectée. Vous "
"devrez peut-ętre modifier la configuration manuellement aprčs l'installation."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configuration en cours..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configuration des scripts, installation des logiciels, démarrage des "
"serveurs..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Des problčmes sont apparus en installant le paquetage %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11381,25 +12253,25 @@ msgstr ""
"ordinateurs sur votre réseau local, en utilisant la configuration réseau "
"automatique (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"La configuration a déjŕ été effectuée, mais elle est actuellement désactivée."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"La configuration a déjŕ été effectuée, et elle est actuellement activée."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Le partage de la connexion internet n'a encore jamais été configuré."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configuration du partage de la connexion internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11414,216 +12286,6 @@ msgstr ""
"\n"
"Cliquez sur Configurer pour lancer l'assistant de configuration."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuration du réseau (%d cartes réseaux)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil : "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Effacer le profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil ŕ effacer :"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nouveau profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nom du profil ŕ créer (le nouveau profil est créé comme une copie du profil "
-"courant :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nom de machine : "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accčs internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Type :"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Passerelle :"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface :"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "État :"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Veuillez patienter"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurer l'accčs ŕ l'internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuration LAN (réseau local)"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Pilote"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocole"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "État"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurer le réseau local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Cliquez ici pour lancer l'assistant ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistant..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Appliquer"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Veuillez patienter... mise en place de la configuration"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connecté"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Non connecté"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Se connecter..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Se déconnecter..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Attention, une autre connexion internet a été détectée, peut-ętre utilisant "
-"votre réseau"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Vous n'avez aucune interface réseau configurée.\n"
-"Vous pouvez en configurer une en cliquant sur Ť Configurer ť"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuration du LAN (réseau local)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Carte réseau %s : %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocole d'amorçage"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Lancer au démarrage"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "activer maintenant"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "désactiver maintenant"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Cette interface n'a pas encore été configurée.\n"
-"Lancez l'assistant de configuration dans la fenętre principale"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Vous n'avez aucune connection internet.\n"
-"Vous pouvez en créer une en cliquant sur Ť Configurer ť"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuration de la connexion internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuration de la connexion internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Type de connexion : "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Paramčtres"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Passerelle"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Carte ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Mise en place du niveau de sécurité"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centre de contrôle"
@@ -11632,63 +12294,92 @@ msgstr "Centre de contrôle"
msgid "Choose the tool you want to use"
msgstr "Choisissez l'outil que vous voulez utiliser"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+"XawTV n'est pas installé!\n"
+"\n"
+"\n"
+"Si vous avez une carte TV mais que DrakX n'e l'a pas détectée (pas de\n"
+"module bttv dans Ť /etc/modules ť) ou que DrakX n'a pas installé xawtv,\n"
+"envoyez, s'il vous plaît, le résultat de la commande Ť lspcidrake -v -f ť\n"
+"ŕ Ť install\\@mandrakesoft.com ť avec comme sujet Ť undetected TV card ť.\n"
+"\n"
+"\n"
+"Vous pouvez quand męme l'installer en tapant Ť urpmi xawtv ť dans un "
+"terminal en tant que root."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Canada (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr "USA (hertzien)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable ou HRC)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr "Chine (hertzien)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr "Japon (hertzien)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japon (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Europe de l'est"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "France [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irlande"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Europe de l'ouest"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nouvelle Zélande"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Afrique du Sud"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentine"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11696,27 +12387,43 @@ msgstr ""
"SVP,\n"
"Veuillez choisir votre région et votre norme de TV"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Norme TV :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Zone :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Recherche des canaux de télévision en cours ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Recherche des canaux de télévision"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Une erreur est survenue pendant la recherche des chaînes TV."
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV n'est pas installé!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Passez une bonne journée!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Maintenant vous pouvez lancer xawtv (sous X-Window) !\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "Aucune carte TV détectée !"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11727,7 +12434,8 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Aucune carte TV n'a été détectée sur votre ordinateur. Veuillez vérifier qu'une carte TV/Vidéo supportée par Linux est correctement branchée.\n"
+"Aucune carte TV n'a été détectée sur votre ordinateur. Veuillez vérifier "
+"qu'une carte TV/Vidéo supportée par Linux est correctement branchée.\n"
"\n"
"\n"
"Vous pouvez visiter notre base de données de support matériel ŕ :\n"
@@ -11774,7 +12482,7 @@ msgstr ""
"Les changements ont été effectués mais ne seront effectifs qu'aprčs votre "
"déconnection"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11800,7 +12508,7 @@ msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr "/Fichier/_Enregistrer"
+msgstr "/Fichier/Enregi_strer"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
@@ -11808,7 +12516,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Fichier/Enregistrer _Sous"
+msgstr "/Fichier/_Enregistrer sous"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11822,10 +12530,6 @@ msgstr "/_Options"
msgid "/Options/Test"
msgstr "/Options/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Aide"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Aide/_A propos..."
@@ -11886,7 +12590,7 @@ msgstr "Calendrier"
msgid "Content of the file"
msgstr "Contenu du fichier"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Alerte mail/SMS"
@@ -11895,11 +12599,11 @@ msgstr "Alerte mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "s'il vous plaît attendez, examen du fichier : %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Configuration des alertes mail/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11909,64 +12613,89 @@ msgstr ""
"\n"
"Vous allez pouvoir configurer ici vos les alertes systčmes.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr "Apache (serveur www)"
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nom de domaine"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+msgid "Ftp Server"
+msgstr "Serveur Ftp"
+
+#: ../../standalone/logdrake_.c:420
+msgid "Postfix Mail Server"
+msgstr "Serveur de courrier Postfix"
+
+#: ../../standalone/logdrake_.c:421
+msgid "Samba Server"
+msgstr "Serveur Sambe"
#: ../../standalone/logdrake_.c:422
+msgid "SSH Server"
+msgstr "Serveur SSH"
+
+#: ../../standalone/logdrake_.c:423
+msgid "Webmin Service"
+msgstr "Service Webmin"
+
+#: ../../standalone/logdrake_.c:424
+msgid "Xinetd Service"
+msgstr "Service Xinetd"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "configuration des services"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Vous recevrez une alerte si l'un des services sélectionnés ne tourne plus"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "chargement des paramčtres"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Vous recevrez une alerte si la charge machine dépasse cette valeur"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "configuration des alertes"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Configurer les moyens de vous alerter"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Enregistrer sous..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Veuillez choisir le type de votre souris."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "aucun périphérique USB série trouvé\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Émuler le troisičme bouton ?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Lecture des données de l'imprimante..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Détection des périphériques..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -12013,7 +12742,22 @@ msgid ""
"applications menu."
msgstr ""
"Votre scanner %s a été configuré.\n"
-"Vous pouvez maintenant scanner des documents en utilisant Ť XSane ť ŕ partir de Multimédia/Graphisme dans le menu des applications."
+"Vous pouvez maintenant scanner des documents en utilisant Ť XSane ť ŕ partir "
+"de Multimédia/Graphisme dans le menu des applications."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Certains matériels listés dans la classe Ť %s ť ont été enlevés:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Certains matériels listés dans la classe Ť %s ť ont été ajoutés :\n"
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -12144,7 +12888,7 @@ msgid ""
"re-running this application!"
msgstr ""
"Nous allons maintenant vous poser des questions sur quels services vous\n"
-"souhaitez pouvoir connecter ŕ l'internet. Veuillez réfléchir avec soin sur\n"
+"souhaitez pouvoir connecter ŕ Internet. Veuillez réfléchir avec soin sur\n"
"chacune de ces questions, car la sécurité de votre ordinateur est\n"
"importante.\n"
"\n"
@@ -12160,7 +12904,7 @@ msgid ""
"\n"
msgstr ""
"Utilisez-vous un serveur web sur cette machine, que vous avez besoin de\n"
-"rendre visible depuis tout l'internet ? Si vous utilisez un serveur web\n"
+"rendre visible depuis tout Internet ? Si vous utilisez un serveur web\n"
"pour seulement cette machine, vous pouvez répondre NON ici.\n"
"\n"
@@ -12173,7 +12917,7 @@ msgid ""
msgstr ""
"Utilisez-vous un serveur de nom sur cette machine ? Si vous n'avez pas\n"
"configuré un tel serveur pour donner des informations d'IP et de zone\n"
-"pour tout l'internet, veuillez répondre NON.\n"
+"pour tout Internet, veuillez répondre NON.\n"
"\n"
#: ../../tinyfirewall.pm_.c:31
@@ -12210,7 +12954,7 @@ msgid ""
"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
"attackers, since FTP also uses no encryption for transferring passwords.\n"
msgstr ""
-"Utilisez-vous un serveur FTP, que vous voulez visible depuis l'internet ?\n"
+"Utilisez-vous un serveur FTP, que vous voulez visible depuis Internet ?\n"
"Si c'est le cas, nous recommandons fortement de ne l'utiliser que\n"
"pour les transferts en mode anonyme. Tous les mots de passe envoyés\n"
"par FTP peuvent ętre volés par des pirates, car FTP n'utilise pas\n"
@@ -12427,10 +13171,6 @@ msgid "Multimedia - Sound"
msgstr "Multimédia - Son"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitaires"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentation"
@@ -12537,10 +13277,6 @@ msgstr ""
"mutt), des news (tin), et pour naviguer sur le Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivage, émulateurs, surveillance"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Gestion Financičre"
@@ -12587,3 +13323,217 @@ msgstr "Multimédia - Gravage de CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Applications scientifiques"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck a échoué avec le code de sortie %d ou le signal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Indentification de la carte graphique : %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Choisissez les options du serveur d'affichage"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Le moniteur n'est pas configuré"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "La carte graphique n'est pas encore configurée"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "La résolution n'a pas encore été choisie"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "essayez de modifier quelques paramčtres"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Une erreur est survenue :"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Fin du test dans %d secondes"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ętes-vous satisfait(e) ?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr ""
+#~ "Une erreur est survenue, essayez de modifier\n"
+#~ "quelques paramčtres"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Serveur XFree86 : %s"
+
+#~ msgid "Show all"
+#~ msgstr "Tout montrer"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Préparation de la configuration de X Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Que désirez-vous faire ?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Choisir un type de moniteur"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Choisir un type de carte graphique"
+
+#~ msgid "Change Server options"
+#~ msgstr "Changer les options du serveur d'affichage"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Changer la résolution"
+
+#~ msgid "Show information"
+#~ msgstr "Afficher la configuration actuelle"
+
+#~ msgid "Test again"
+#~ msgstr "Tester ŕ nouveau"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Votre appareil multifonction HP a été configuré automatiquement pour ętre "
+#~ "capable de scanner. Maintenant vous pouvez scanner avec Ť tal-hp %s "
+#~ "scan ... ť dans une fenętre de commandes. L'acquisition par interface "
+#~ "graphique ou grace ŕ Ť Gimp ť n'est pas encore suportée avec cet "
+#~ "appareil. Vous trouverez plus d'informations dans le fichier /usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html sur votre systčme. Si vous avez une HP "
+#~ "LaserJet 1100 ou 1200, vous pouvez seulement scanner si vous avez "
+#~ "l'option Ť scanner ť installée.\n"
+#~ "\n"
+#~ "N'utilisez pas Ť scannerdrake ť pour cet appareil ! "
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "celle sur Disque dur / NFS"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "celle par FTP"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Liste des paquetages ŕ installer"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Mise en place du niveau de sécurité"
+
+#~ msgid "Graphics card"
+#~ msgstr "Carte graphique"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Choisissez une carte graphique"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Choisissez un pilote d'affichage X11"
+
+#~ msgid "X driver"
+#~ msgstr "serveur X11"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Attention : tester cette carte vidéo peut bloquer votre ordinateur"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA standard, 640x480 ŕ 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 ŕ 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 ŕ 87 Hz entrelacé (sans 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ŕ 87 Hz entrelacé, 800x600 ŕ 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA étendu, 800x600 ŕ 60 Hz, 640x480 ŕ 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA non entrelacé, 1024x768 ŕ 60 Hz, 800x600 ŕ 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA haute fréquence, 1024x768 ŕ 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-fréquences supportant le 1280x1024 ŕ 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-fréquences supportant le 1280x1024 ŕ 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-fréquences supportant le 1280x1024 ŕ 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Moniteur supportant le 1600x1200 ŕ 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Moniteur supportant le 1600x1200 ŕ 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr ""
+#~ "La taille totale pour les groupes sélectionnés est approximativement de %"
+#~ "d Mo.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Si vous voulez réduire la taille de votre installation,\n"
+#~ "choisissez le pourcentage de paquetages que vous souhaitez installer.\n"
+#~ "\n"
+#~ "Un faible pourcentage ne conservera que les paquetages les plus "
+#~ "importants.\n"
+#~ "Un pourcentage de 100%% installera tous les paquetages sélectionnés."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Vous n'avez d'espace sur votre disque que pour %d%% de ces paquetages.\n"
+#~ "\n"
+#~ "Si vous souhaitez réduire encore la taille de l'installation,\n"
+#~ "choisissez un pourcentage encore plus faible.\n"
+#~ "\n"
+#~ "Un faible pourcentage ne conserve que les paquetages les plus "
+#~ "importants.\n"
+#~ "Un pourcentage de %d%% installera le maximum possible de packages."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr ""
+#~ "Vous pourrez affiner la sélection des paquetages lors de la prochaine "
+#~ "étape."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Pourcentage de paquetages ŕ installer"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Choisissez le niveau de sécurité"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index 30649a12a..e43baf63e 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -1,117 +1,123 @@
-# Irish translations for DrakX, the Mandrake Installer.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Irish Linux Users Group <ilug@linux.ie>, 1999
-#
-# Credits where due:
-# Proinnsias Breathnach <breatpro@dublin.ml.com-nospam>
-# Donncha Ó'Caoimh <donncha.ocaoimh@tradesignals.com-nospam>
-# Barra Ó'Caoimh <Care of donncha.ocaoimh@tradesignals.com-nospam>
-# John McDonnell <johnmc@student.nuigalway.ie-nospam>
-# <Alastair McKinstry <mckinstry@computer.org>
-# Who've all contributed so far.
-# Proinnsias 16-Dec-1999
-#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 1999-12-16 10:33+0100\n"
-"Last-Translator: Proinnsias Breathnach <breatpro@dublin.ml.com>\n"
-"Language-Team: Gaeilge <ga@li.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2000-08-24 12:00-0000\n"
+"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
+"Language-Team: Irish <ga@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Cumraigh gach cinn ar leith"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Cumraigh carta \"%s\" (%s) amhain"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB nó níos mó"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Roghnaigh freastalaí X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X freastalaí"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Cumraíochti gach cinn iolrach"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Carta Grafach"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Roghnaigh an méid cuimhne atá id' charta grafachach"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Roghnaigh carta grafachach"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Cumraíocht XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Roghnaigh freastalaí X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X freastalaí"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Cumraigh gach cinn ar leith"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Roghnaigh freastalaí X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X freastalaí"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Cumraigh carta \"%s\" (%s) amhain"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "Freastalaí XFree86: %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s le luadghearú crua-earraí 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s le luadghearú crua-earraí 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "Freastalaí XFree %s le luasghearú crua-earraí 3D TRIALACH"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -119,31 +125,52 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Cumraíocht XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Roghnaigh an méid cuimhne atá id' charta grafachach"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Roghnaigh cumraíocht an freastalaí"
+#: ../../Xconfig/main.pm_.c:60
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr "Coimead an cumraíocht IP atá ann"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Roghnaigh scáileán"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Scáileán"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Socraithe"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Gnáth"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Leasú"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -157,506 +184,325 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Ráta athnuachana cothrománach"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Ráta athnuachana ingearach"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Níl aon scáileán cumraithe"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Níl aon carta grafachach cumraithe"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Níl aoin réiteach cumraithe"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Trialaigh an cumraíocht"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 dath (8 giotáin)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"bain trial as roinnt paraiméadair a athrú"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 míle dath (15 giotáin)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tharla Earráid:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 míle dath (16 giotáin)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Ag éalú i %d siocand"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milliún dath (24 giotáin)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "An bhfuil seo ceart?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 billiún dath (32 giotáin)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tharla earráid, bain trial as roinnt paraiméadair a athrú"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Réiteachaí"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Réiteach"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Roghnaigh Réiteach agus an méid dath"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Carta Grafach: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Freastalaí XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mór"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cealaigh"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ceart go Leor"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mód Saineolaí"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Taispéan gach ceann"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Réiteachaí"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Trialaigh an cumraíocht"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Leagan amach eocharchlára: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Cineál luchóg: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Gaireas luchóige: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Scáileán: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Scáileán HorizSync: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Scáileán VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Carta Grafach: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Carta Grafach: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Cuimhne grafach: %s kb\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, fuzzy, c-format
msgid "Color depth: %s\n"
msgstr "Scáileán VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Réiteachaí: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Freastalaí XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Tiománaí XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ag ullmhú cumraíocht X-Windows"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Céard a theastaíonn uait a dhéanamh?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Athraigh Scáileán"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Athraigh carta grafach"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Athraigh cumraíocht an freastalaí"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Athraigh Réiteach"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Taispeán Eolas"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Bain trial as arís"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Éalaigh"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr "Coimead an cumraíocht IP atá ann"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ag tús"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Éirigh as le do thoil agus Crtl-Alt-BackSpace a úsáid"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 dath (8 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 míle dath (15 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 míle dath (16 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milliún dath (24 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 billiún dath (32 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB nó níos mó"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Gnáth VGA, 640x480 ag 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ag 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Cinéal 8514, 1024x768 ag 87 Hz Idirdhuillith (gan 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ag 87 Hz Idirdhuillithe, 800x600 ag 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "SVGA Leathnaithe, 800x600 ag 60 Hz, 640x480 ag 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA Neamh-idirdhuillithe, 1024x768 ag 60 Hz, 800x600 ag 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA d'árd minicíocht, 1024x768 ag 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Scáileán a bhfuil in ann do 1600x1200 ag 70Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Scáileán a bhfuil in ann do 1600x1200 ag 76Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr ""
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr ""
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Roghnaigh rang feistiú"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Feistiú LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO le chlár teacs"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO le Chlár Graphaice"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Bootáil as DOS/Windows (loadin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Príomhroghanna bootáil"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Ríomhchlar Tosnaithe a úsáid "
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Feistiú cód tosnaithe"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Gaireas bootáil"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr ""
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mód fís"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr ""
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Pasfhocal"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Pasfhocal (arís)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Teorannaigh roghanna líne ordú"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "teorannaigh"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Glan /tmp nuair a thosnaigh an coráis"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr ""
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Tabhair na Méid Cuimhne as MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Aththrialaigh"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Ní mar a chéile na pasfhocail"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Scéal Tosnú"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS Loiceadh?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -665,81 +511,81 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Suim"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Críochnithe"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Athraigh"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Cén sort iontráil a suimigh do"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "CO Eile (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "CO Eile (MunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "CO Eile (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Iomha"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Léamh-Scríobh"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Table"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Baolach"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Lipéad"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Gnáth"
@@ -772,53 +618,72 @@ msgstr "Níl aon ranna agat!"
msgid "This label is already used"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fuair %s %s comhéadan"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "An bhfuil comhéadan %s agat?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Níl"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Tá"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Leámh an t-eolais crua-earra"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ag feistáil tiomanaí do %s, carta %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modíl %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Roghachais modúil:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr ""
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -830,115 +695,101 @@ msgid ""
"not cause any damage."
msgstr ""
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr ""
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Cumraigh roghanna"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Roghachais modúil:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr ""
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Tá an pasfhocal seo ro-shimplí"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr ""
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Is ann cheana don ainm úsáideora seo"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Suimigh úsáideoir"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr ""
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Fíor ainm"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Ainm úsáideora"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Blaosc"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Dealbh"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Uath-Logann"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -947,181 +798,162 @@ msgstr ""
"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Roghnagih an úsáidoer gneás:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Gach Rud"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Suimigh úsáideoir"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Socraithe"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "Ag Tosnaigh CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cealaigh"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr ""
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Bocht"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Árd"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Árd"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranóid"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
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:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Roghnaigh liebhéal slándáil"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Roghnaigh liebhéal slándáil"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Roghnaigh cumraíocht an freastalaí"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1142,52 +974,52 @@ msgstr ""
# FIXME
#. -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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Fáile go GRUB, an roghnóir Choráis "
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr ""
#. -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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Deasc"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Clár Tosnú"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
@@ -1200,15 +1032,19 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr "Cumraíocht Stíl Tosnú"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/C_omhad"
+msgstr "/_Comhad"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Comhad/_Ealu"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>E"
@@ -1243,12 +1079,12 @@ msgstr "Mód Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Cumraigh"
@@ -1258,7 +1094,7 @@ msgid "System mode"
msgstr "Mód Coras"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1269,14 +1105,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Ceart go Leor"
@@ -1325,7 +1163,7 @@ msgstr "Ní féidir liom rann eile a cur isteach"
msgid "Screenshots will be available after install in %s"
msgstr ""
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Fraince"
@@ -1333,7 +1171,7 @@ msgstr "Fraince"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgáiris"
@@ -1362,11 +1200,12 @@ msgstr "Ioruais"
msgid "Sweden"
msgstr "Amharc"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Iodálais"
@@ -1376,7 +1215,7 @@ msgstr "Iodálais"
msgid "Austria"
msgstr "srathach"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1384,8 +1223,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Léigh go curamach"
@@ -1396,11 +1235,12 @@ msgid ""
"at the beginning of the disk"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Earráid"
@@ -1408,11 +1248,11 @@ msgstr "Earráid"
msgid "Wizard"
msgstr "Draíodoir"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Roghnaigh gníomh"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1423,148 +1263,153 @@ msgstr ""
"Molaim dhuit an rann sin a athmhéadú ar dtús\n"
"(roghnaigh an rann agus brú ar \"Athméidigh\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Roghnaigh rann le do thoil"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Sonraí"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Malairte"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Folamh"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Eile"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Cineál córais-comhadlanna"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Cruthaigh"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Cineál"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Scríos"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Roghnaigh gníomh"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Leasú"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Éalaigh gan sabháil"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Éalaigh gan an clár-ranna a scríobh?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Glan gach ceann"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Mór"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Tá na ranna príofa uilig úsáidthe"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ní féidir liom rann eile a cur isteach"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1572,34 +1417,34 @@ msgstr ""
"Le breis ranna a bheith agat, dealaigh ceann amháin le bheith in ann "
"rannsínithe a cruthú"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Scriobh clár-ranna"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Scriobh clár-ranna"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Scriobh clár-ranna"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Roghnaigh Comhad"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1607,11 +1452,11 @@ msgstr ""
"Níl an méid céanna ar an rann cúltaca\n"
"Lean ar aghaidh ar aon nós?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Rabhadh"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1619,254 +1464,266 @@ msgstr ""
"Cur diosca flapach sa dioscthiomant\n"
"Caillfear gach sonra ar an dhiosca seo"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Roghnachais"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Athméidigh"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Bog"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formáidigh"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Cur le RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Cur le LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Bain ó RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Bain ó RAID"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Athraigh RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Teascán tosasch: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Méid i MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Cineál córas-comhadlanna:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Tosaíocht: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Athraigh cineál ranna"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Cén rann atá uait?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ag athméadú"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "caillfear gach sonra ar an rann seo"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Roghnaigh an méid nua"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Méid i MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Teascán"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Ag bogadh"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Ag bogadh rann..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Roghnaigh RAID atá ann le méadú"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nua"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
#, fuzzy
msgid "Choose an existing LVM to add to"
msgstr "Roghnaigh RAID atá ann le méadú"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "ainm LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Fíor ainm"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Roghachais modúil:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "gaireas"
+msgstr "feist"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "leibhéal"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "méid smután"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Cén sort rannú atá ort?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Roghnaigh pacáistí ..."
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1878,7 +1735,7 @@ msgstr ""
"Má tá tú ag úsáid LILO ní oibróidh sé, nó níl /boot uait muna n-úsáideann tú "
"LILO"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1889,144 +1746,144 @@ msgstr ""
"sorcóir ar an dhiosca, agus níl aon rann /boot agat.\n"
"Má tá tú chun LILO a úsáid, beidh ort rann /boot a cruthú ar ball."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Scríobhfar clár diosca %s go dhiosca!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Ag formáidiú"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Ag formáidiú rann %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "teip ar 'mkraid'"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Réiteachaí: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Gaireas: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Litir Dioscthiománt DOS: %s (buile faoi thuraim)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Cineál: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ainm: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Tús: teascán %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Méid: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s teascáin"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sorcóir %d go sorcóir %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formáidithe\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Neamhformáidithe\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2034,27 +1891,27 @@ msgstr ""
"Rann tosaithe de ghnáth\n"
" (do thosnú MS-DOS, ní lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Leibhéal %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Méid smután %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Dioscaí RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2062,7 +1919,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2070,65 +1927,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Méid: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Céimseasamh: %s sorcóir, %s ceann, %s teascán\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
#, fuzzy
msgid "Info: "
msgstr "Eolas"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Dioscaí LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Cinéal tabla rann: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "ar bhús %d, id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Roghnachais: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Cineál córas-comhadlanna:"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ní mar a chéile na pasfhocail"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2139,36 +1996,66 @@ msgstr "Athraigh cineál ranna"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Roghnaigh rann le do thoil"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Deimniú"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Idirlíon"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Ainm úsáideora"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Ainm úsáideora"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Fearannas NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "freastalaí DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "Formáidiú %s de %s teipithe"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "níl a fhios agam conas %s a formáidiú go %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2185,67 +2072,319 @@ msgstr ""
msgid "server"
msgstr "Freastalaí"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Earráid ag oscailt %s do scríobh: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Tharla earráid - ní fhuaireadh aon gaireas ar a bhféadfaí córais-comhadlanna "
"nua a cruthu. Ba chóir duit do chuid crua-earraí a seiceáil le cúis an fadhb "
"a aimsiú"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Níl aon ranna agat!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Scríos Printéir"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Gnáth"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Cuimhne Charta (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ag formáidiú"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Athraigh cineál ranna"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Éalaigh"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/C_úidiú"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/C_úidiú"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Cúidiú/_Faoi..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Luchóg"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Cuimhne Charta (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cealaigh"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Luchóg"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Cuntas"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Deimniú"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Roghnaigh Comhad"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gaireas na hInneal Geata"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 cnaipí"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "leagan `kernel'"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Leámh an t-eolais crua-earra"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Taispeán Eolas"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Cumraigh luchóg"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Pointe taca dublach %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Fan tamall"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d siocand"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Scríos Printéir"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2259,7 +2398,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2330,9 +2469,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2514,7 +2652,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2526,9 +2664,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2574,21 +2711,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2604,9 +2740,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2627,9 +2763,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2739,38 +2874,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2844,11 +2973,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2872,7 +3001,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2887,7 +3016,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2902,7 +3031,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2918,29 +3047,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -2962,7 +3091,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -2984,7 +3113,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -2992,7 +3121,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3013,7 +3142,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3026,7 +3155,7 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3035,29 +3164,28 @@ msgid ""
"(MBR)\"."
msgstr ""
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3066,7 +3194,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3091,11 +3219,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3105,9 +3233,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3119,7 +3246,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3145,7 +3272,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3172,18 +3299,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3191,12 +3317,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3212,14 +3337,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3230,7 +3355,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3238,12 +3363,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3258,26 +3383,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Earráid ag léamh comhad %s"
@@ -3302,7 +3427,7 @@ msgstr ""
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3310,73 +3435,76 @@ msgstr ""
"\n"
"x1Lean ar aghaidh ar aon nós?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Úsáid spás saor"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
#, fuzzy
msgid "There is no existing partition to use"
msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Cén rann a bhfuil tú ag iarraidh úsáid mar rann fréamhach"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Roghnaigh an méid nua"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Méid i MB do Rhann Fréamhach:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Méid i MB do rhann malairte:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
#, fuzzy
-msgid "Computing Windows filesystem bounds"
+msgid "Resizing Windows partition"
msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3388,64 +3516,64 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "rann %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Theip ar uathathmhéadú FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Glan diosca ina iomlán"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Dealaigh Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Úsáid fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Níl aon ranna agat!"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Ní féidir liom rann eile a cur isteach"
@@ -3454,16 +3582,16 @@ msgstr "Ní féidir liom rann eile a cur isteach"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Theip ar rannú: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Ag tosnú suas an ghréasán"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Ag dúnadh síos an ghreasán"
@@ -3475,12 +3603,12 @@ msgstr ""
"Ta earraid ann, níl a fhios agam conas é a cheartú.\n"
"Lean ort, ar do phriacal féin."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pointe taca dublach %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3488,12 +3616,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Fáilte go %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Níl dioscthiománt flapach ar fáil"
@@ -3503,195 +3631,161 @@ msgstr "Níl dioscthiománt flapach ar fáil"
msgid "Entering step `%s'\n"
msgstr "Ag tosnú ar céim `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Rann Feistiú"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Méid iomlán: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pacáiste mícheart"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ainm: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Leagan: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Méid: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Tábhacht: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Feistiú"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Sabháil ar dhiosca flapach"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Eirigh as Feistiú"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Ag Feistiú"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Ag meastú"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Am fagtha "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Fan tamall, ag ullmhaigh feistiú"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pacáistí"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Ag feistiál pacáiste %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aontaigh"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Tarrtháil"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3701,17 +3795,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr ""
@@ -3756,11 +3850,11 @@ msgstr "Tharla earráid"
msgid "Do you really want to leave the installation?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Ceadúnas"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3775,7 +3869,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -3881,113 +3975,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Eocharclár"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Cén leagan amach atá ar d'eocharchlársa"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Cén rann feistiú atá uait?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Feistiúi/Uadgrádaigh"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Feistigh nó uasgrádaigh ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Molta"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Saineolaí"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Uasgrádaigh"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Gaireas luchóige"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Cumraigh Cártaí PCMCIA"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Ag cumraigh IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "níl aon ranna saora ann"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -3995,7 +4093,7 @@ msgstr ""
"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
"Leanfaidh mé orm ag cealú droch rainn"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4003,152 +4101,155 @@ msgstr ""
"Theip ar DiskDrake an tabla rainn a léamh i gceart.\n"
"Lean ort, ar do phriacal féin!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Rann Fréamhach"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Céard é an rann fréamhach (/) ded' chóras?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
#, fuzzy
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Ag formáidiú ranna"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Ag curdach do na pacáistí atá ar fáil"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Ag curdach do na pacáistí atá ar fáil"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Ag cúrdach pacáistí le húasgrádú"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Roghnaigh pacáistí ..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Críochnaithe (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Íosta (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Molta (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Aisig ó dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Aisig ó dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Sabháil ar dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Roghnaigh pacáistí a feistiú ..."
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Fan tamall"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
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:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Ag Ullmhaigh feistiú"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4157,23 +4258,23 @@ msgstr ""
"Ag feisteáil pacáiste %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Cumraíocht Iar-feistú"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4210,159 +4311,190 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Cén ceann do chrois ama"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Freastalaí NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Scrios Freastalaí CUPS"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Gan Printéir"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Coimriú"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Luchóg"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Am Críos"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Printéir"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Carta ISDN"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Carta Fuaim"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Carta Telefís"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Dealaigh Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Chomaid Áitiúl"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Socraigh pasfhocal root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Gan pasfhocal"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Deimniú"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Deimniú LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Freastalaí LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Deimniú NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Freastalaí NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Deimniú LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Fearannas NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Freastalaí NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -4380,19 +4512,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Cead dioscthiománt flapach"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Dara dioscthiomáint flapach"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Scipeáil"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4408,7 +4540,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4417,29 +4549,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Brón orm, níl aon dioscthiománt flapach ar fáil"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
#, fuzzy
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Ag Cruthaigh diosca thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Ag Ullmhaigh ríomhchlar thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4447,27 +4579,27 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Feistigh cód tosnaithe"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4478,25 +4610,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4507,19 +4639,23 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Cruthaigh flapach bootáil"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4528,15 +4664,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Athlódaigh"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Roghnú Grúpa Pacáistí"
@@ -4564,418 +4700,402 @@ msgstr ""
msgid "Choose a file"
msgstr "Roghnaigh gníomh"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Réamhioaíocht"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Fan tamall"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Eolas"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Droch rogha, aththrialaigh\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Do rogha? (gnás %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Do rogha? (gnás %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Roghnachais: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Do rogha? (gnás %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Ceichís (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Gearmáinis"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spáinis"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fionlainnais"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francaigh"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Ioruais"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polainnais"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruislís"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Méarchlár UK"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Meárchlár US"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgáiris"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Bulgáiris"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgáiris"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarúisis"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Eilvéis (Stíl Ghearmánais)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Eilvéis (Stíl Francaigh)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Ceichís (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Gearmáinis (gach meachlár marbh)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danmharghais"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (Meiriceá)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Ioruais)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Meiriceá)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Eastóinis"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Greicís"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Ungárais"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Cróitis"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Iodálais"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Seápainis (106 eochair)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Méarchlár Chóiris"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Mheirceá Theas"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Áit"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rúisis (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rúisis (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rúisis (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slóbaicis (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slóbaicis (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Table"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Meárchlár US"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Mearchlár US (idirnaisiúnta)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -4988,7 +5108,31 @@ msgstr ""
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Uimhir fón"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formáidigh ranna"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5031,10 +5175,6 @@ msgstr "1 Cnaipe"
msgid "Generic 2 Button Mouse"
msgstr "Luchóg 2-cnaipe Loiceadh"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Gnáth"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rothar"
@@ -5099,38 +5239,54 @@ msgstr "Ar bith"
msgid "No mouse"
msgstr "Luchóg ar bith"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr ""
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BOG DO ROTHAR!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Fionnlainnis"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "An bhfuil seo ceart?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Eolas"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr ""
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr ""
@@ -5170,7 +5326,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Roghnaigh an cláréadan ghréasán"
@@ -5184,7 +5340,7 @@ msgstr "Cén cinéal luchóg atá agat?"
msgid "no network card found"
msgstr "ní fuaireathas cárta gréasánú"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Cumraigh gréasánú"
@@ -5196,15 +5352,15 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "ÓstAinm"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Draíodóir Cumraíocht Gréasánú"
@@ -5252,7 +5408,7 @@ msgstr "Cumraigh ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
#: ../../network/isdn.pm_.c:183
@@ -5271,12 +5427,12 @@ msgstr "Trialaigh an cumraíocht"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr ""
#: ../../network/isdn.pm_.c:199
@@ -5300,7 +5456,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
#: ../../network/isdn.pm_.c:210
@@ -5312,13 +5469,13 @@ msgid "Continue"
msgstr "Lean"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Cén sort carta ISDN atá uait?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"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
@@ -5334,102 +5491,102 @@ msgstr "Cén cinéal luchóg atá agat?"
msgid "Dialup options"
msgstr "Roghanna 'Dialup'"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Ainm Nasc"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Uimhir fón"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Ainm Login:"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Script-bhunaithe"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Teirminéal-bhunaithe"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Ainm Fearannas"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Cead Freastalaí DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Dara Freastalaí DNS"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Bainteach le hIdirlíon"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Lean"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Cumraigh gréasánú"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5441,12 +5598,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Cumraíocht Gréasánú"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5454,105 +5611,111 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Roghnagih an úsáidoer gneás:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mód Saineolaí"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Pointe taca dublach %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Cumraigh ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Nasc LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Cláréadan Gréasán"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Nasc LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
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:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Nasc Printéir"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Cumraíocht Gréasánú"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5560,73 +5723,78 @@ msgid ""
"%s"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
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:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
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:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Ag cumrú gléas gréasánú %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr " (tiomáint $module)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Seoladh IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr ""
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Uath-IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Cruthaigh an diosca "
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5634,374 +5802,379 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "freastalaí DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gaireas na hInneal Geata"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Cumraigh seach-freastalaí"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Seach-HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Seach-FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr ""
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
#, fuzzy
msgid "Do you want to try to connect to the Internet now?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Cumraíocht Idirlíon."
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ na Carta"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Cuimhne Charta (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "I/A Carta"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "I/A_0 Carta"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "I/A_1 Carta"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
#, fuzzy
msgid "Your personal phone number"
msgstr "Uimhir fón"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Uimhir fón"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "Roghanna Printéir"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "Roghanna Printéir"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Roghnaigh mhéarchlár"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Athraigh cineál ranna"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Ainm Nasc"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr ""
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Pasfhocal"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr ""
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Droch comhad chúltaca"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Earráidh ag scríobh comhad %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "riachtanas"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "tábhachtach"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "an-dheas"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "deas"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "b'fhéidir"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Printéir áitiúl"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Scríos Printéir"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Scrios Freastalaí CUPS"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Scrios freastalaí lpd"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Printéir Gréasán (lpd)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Freastalaí Printéir"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Gaireas Printéir (URI)"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Printéir áitiúl"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Scríos Printéir"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Earráidh ag scríobh comhad %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modíl %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP freastalaí SMP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
#, fuzzy
msgid " (Default)"
msgstr "Gnáth"
@@ -6021,12 +6194,12 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "cumraíocht"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Scrios Freastalaí CUPS"
@@ -6056,7 +6229,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6065,7 +6238,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP freastalaí SMP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Poirt"
@@ -6074,21 +6247,13 @@ msgstr "Poirt"
msgid "Automatic CUPS configuration"
msgstr "Cumraigh ADSL"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6101,14 +6266,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Printéir áitiúl"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6126,12 +6291,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6145,11 +6310,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6159,35 +6324,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Pointe taca dublach %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6195,43 +6364,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Printéir áitiúl"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6239,7 +6408,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6247,100 +6416,110 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Ag feistiál pacáiste %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Ag feistiál pacáiste %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Ag feistiál pacáiste %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "ÓstAinm"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Roghanna Printéir SMB (Fuinneoga 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6348,35 +6527,35 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "freastalaí óstann SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP freastalaí SMP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Comh. ainm"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grupa na hOibre"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6400,7 +6579,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6409,7 +6588,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6417,11 +6596,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Roghanna Printéir NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6429,28 +6608,28 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Freastalaí Printéir"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Roghanna Printéir NetWare"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6458,59 +6637,55 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Ainm Printéir"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Cuntas"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Áit"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6525,28 +6700,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "An bhfuil seo ceart?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Cén sort printéir atá ort?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6555,18 +6730,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6576,12 +6751,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6589,7 +6764,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6602,7 +6777,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6612,34 +6787,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Bain trial as arís"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6647,42 +6822,42 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Printéir"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Uirlisí gnáth"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6692,22 +6867,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -6716,15 +6891,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -6733,49 +6908,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -6785,7 +6960,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -6794,30 +6969,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Dún"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ag dúnadh síos an ghreasán"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Dún"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Roghanna Printéir"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -6825,37 +7011,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -6865,51 +7051,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -6917,61 +7103,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Cumraigh Printéir"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Cumraigh gréasánú"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Níl aon scáileán cumraithe"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -6979,12 +7165,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Cumraigh gréasánú"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -6994,34 +7180,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Árd"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranóid"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7036,11 +7222,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7054,69 +7240,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Cén rann atá uait?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Cumraigh printéir"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Ag feistiál pacáiste %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Roghanna Printéir"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Cumraigh printéir"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "An dteastaěonn uait printéir a chumrú?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Clódóir"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7124,146 +7310,150 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Cumraigh gréasánú"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Luchóg ar bith"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Éalaigh"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr ""
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "Scríos Printéir"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Printéir áitiúl"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Scríos Printéir"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7342,24 +7532,52 @@ msgstr "Ní mar a chéile na pasfhocail"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, fuzzy, c-format
msgid "Can't write file %s"
msgstr "Earráidh ag scríobh comhad %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "teip ar 'mkraid'"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/msec.pm_.c:144
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+
+#: ../../security/msec.pm_.c:150
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Éirigh as cumraíocht"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Roghnachais"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7402,7 +7620,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7458,7 +7676,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -7515,7 +7733,7 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -7593,7 +7811,7 @@ msgstr "Idirlíon"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mód Coras"
@@ -7713,6 +7931,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Bainteach le hIdirlíon"
@@ -7817,6 +8036,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Ag feistiál pacáiste %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Éirigh as le do thoil agus Crtl-Alt-BackSpace a úsáid"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr ""
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -7825,6 +8053,158 @@ msgstr ""
"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
"Leanfaidh mé orm ag cealú droch rainn"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Cumraigh Idirlíon"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Freastalaí Printéir"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Freastalaí Printéir"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Freastalaí NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Freastalaí NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Suimigh úsáideoir"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/C_úidiú"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Scríos"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Roghnaigh Comhad"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Suimigh úsáideoir"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Ag cumraigh IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Cur isteach diosca sa dioscthiomant %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Níl dioscthiománt flapach ar fáil"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -7866,6 +8246,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Cruthaigh flapach bootáil"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -7874,47 +8259,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Comhghairdeas!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Feistiú"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Suimigh úsáideoir"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -7922,15 +8300,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -7938,707 +8308,769 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Earráid ag léamh comhad $f"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Scrios ciú"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Dealaigh Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Gan pasfhocal"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Nasc LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Nasc Printéir"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Cén leagan amach atá ar d'eocharchlársa"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Roghnaight do theangam le do thoil."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Cláréadan Gréasán"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Cineál"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Athraigh cumraíocht an freastalaí"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Athraigh cumraíocht an freastalaí"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Fan tamall"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Roghachais modúil:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Gaireas luchóige: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Roghnachais"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Teastáil an luchóg, le do thoil"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Nasc LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Nasc Printéir"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Aisig ó dhiosca flapach"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Eile"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Feistigh córas"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Socraithe"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/C_úidiú"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Clár Tosnú"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Teacs"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Roghnaigh pacáistí ..."
+#: ../../standalone/drakbackup_.c:2933
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Sabháil i gcomhad"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "cumraíocht"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Éirigh as cumraíocht"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -8670,7 +9102,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -8679,7 +9111,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -8720,7 +9152,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -8748,12 +9180,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -8770,7 +9207,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -8810,7 +9247,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -8821,7 +9258,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -8834,7 +9271,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -8878,104 +9315,537 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr ""
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Bainteach le hIdirlíon"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "sainordaitheach"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Luchóg"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Scríos Printéir"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Comh. ainm"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Clódóir"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Draíodóir Cumraíocht Gréasánú"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Deimniú"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Roghnú Grúpa Pacáistí"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Fan tamall"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Eirigh as Feistiú"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Poirt"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+msgid "No browser available! Please install one"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Cumraíocht Gréasánú"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Ainm úsáideora"
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "suimiúil"
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Cineál: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Inneal Geata:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "suimiúil"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Cumraigh gréasánú"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Tiománaí"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "Cláréadan Gréasán"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Clár Tosnú"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Cumraigh gréasánú"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Draíodoir..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Trialaigh an cumraíocht"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Ainm Nasc"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "cumraíocht"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Nasc na hIdirlíon agus cumraíocht"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Nasc na hIdirlíon agus cumraíocht"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Athraigh cineál ranna"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Inneal Geata:"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "Úsáid: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Ainm Modúl"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Méid"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Trialaigh an cumraíocht"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "gnáth"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Earraidh DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "leagan `kernel'"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Gnáth"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Roghnachais Saineoiaí"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Suimigh Modúil"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forsáil"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "Luchóg ar bith"
+
+#: ../../standalone/drakfloppy_.c:164
+#, fuzzy
+msgid "omit raid modules"
+msgstr "Scríos modúil"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Scríos modúil"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Aschur"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Teip ar glaoch `fork': %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "Teip ag cuardach %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Críochnithe"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formadaigh flapach"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ag Ullmhaigh feistiú"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "teorannaigh"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -8984,121 +9854,120 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formáidigh ranna"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Éirigh as cumraíocht"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr ""
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Oifig"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Tobscoir"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Printéir"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Feistigh córas"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Roghnaigh Comhad"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Scríos Printéir"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Scéal Tosnú"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Feistiú"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Eirigh as Feistiú"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr ""
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9106,32 +9975,32 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9139,20 +10008,20 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9162,31 +10031,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "suimiúil"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Cláréadan Gréasán"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9196,18 +10065,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Níl aon scáileán cumraithe"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9217,17 +10086,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Cumraigh ADSL"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9238,7 +10107,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9250,78 +10119,78 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP freastalaí SMP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "Ag cumraigh IDE"
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "Ag feistiál pacáiste %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9331,222 +10200,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr ""
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Ainm úsáideora"
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "suimiúil"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Cineál: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Inneal Geata:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "suimiúil"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Cumraigh gréasánú"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Tiománaí"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Cláréadan Gréasán"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Clár Tosnú"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Cumraigh gréasánú"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Draíodoir..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Trialaigh an cumraíocht"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Ainm Nasc"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "cumraíocht"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Athraigh cineál ranna"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Inneal Geata:"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr ""
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -9556,93 +10209,128 @@ msgstr "Bainteach le hIdirlíon"
msgid "Choose the tool you want to use"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Eorap"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Fraince"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Athlódaigh"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Eorap"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "srathach"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -9684,7 +10372,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -9732,10 +10420,6 @@ msgstr "/_Roghanna"
msgid "/Options/Test"
msgstr "/Roghnachais/Teastáil"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/C_úidiú"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Cúidiú/_Faoi..."
@@ -9798,7 +10482,7 @@ msgstr "Feilire"
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -9807,81 +10491,110 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "Ag Parsáil an comhad %s, fan tamall"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Cumraigh Lilo/Grub"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "scáil"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ainm Fearannas"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Freastalaí NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Freastalaí Printéir"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Freastalaí NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Freastalaí NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Seirbishí"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Freastalaí Printéir"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "suimiúil"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Ag formáidiú"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Cumraigh Idirlíon"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Sábháil mar..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr ""
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Scríos Printéir"
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr ""
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -9925,6 +10638,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10272,10 +10997,6 @@ msgid "Multimedia - Sound"
msgstr "Ilmheánach"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
#, fuzzy
msgid "Documentation"
msgstr "Áit"
@@ -10380,10 +11101,6 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr ""
@@ -10431,593 +11148,108 @@ msgstr "Ilmheánach"
msgid "Scientific Workstation"
msgstr "Stáisiún Oibre"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Tobscoir"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Ar bith"
+#~ msgid "Choose options for server"
+#~ msgstr "Roghnaigh cumraíocht an freastalaí"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Roghnagih an úsáidoer gneás:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Scríos Printéir"
-
-#~ msgid "Low"
-#~ msgstr "Bun"
+#~ msgid "Monitor not configured"
+#~ msgstr "Níl aon scáileán cumraithe"
-#~ msgid "Medium"
-#~ msgstr "Gnáth"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Níl aon carta grafachach cumraithe"
-#, fuzzy
-#~ msgid "mount failed"
-#~ msgstr "teip ar 'mkraid'"
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Ilmheánach"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Níl aoin réiteach cumraithe"
-#~ msgid "Boot mode"
-#~ msgstr "Mód Bootáil"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Saineolaí"
-
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Cumraigh nasc ghréasán"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Cén cinéal luchóg atá agat?"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Eolas"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Stáisiún Gnome"
-
-#~ msgid "authentification"
-#~ msgstr "údarú"
-
-#~ msgid "user"
-#~ msgstr "úsáideoir"
-
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Cén cinéal luchóg atá agat?"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Éalaigh"
-
-#~ msgid "Active"
-#~ msgstr "Gníomhach"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Níl"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Gaireas na Printéir Áitiúl"
-
-#~ msgid "Printer Device"
-#~ msgstr "Gaireas Printéir"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Scrios Freastalaí CUPS"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mód Coras"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Eile"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Cén leagan amach atá ar d'eocharchlársa"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Roghnaigh rann le do thoil"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Cineál: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Droch comhad chúltaca"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Cumraigh X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Gaireas Printéir"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Cealaigh"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ceart go Leor"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Dún"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Nasc Printéir"
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Cumraigh nasc ghréasán"
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#~ msgid "Total size: "
-#~ msgstr "Méid iomlán: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Fan tamall, "
-
-#~ msgid "Total time "
-#~ msgstr "Am iomlán "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Bain úsáid as an cumraíocht X11 atá ann?"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid "New"
-#~ msgstr "Nua"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Scríos"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
+#~ "try to change some parameters"
+#~ msgstr ""
#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Roghnaigh rann le do thoil"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Débhríoch (%s), bí níos cruinn\n"
+#~ "bain trial as roinnt paraiméadair a athrú"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (gnás %s)"
+#~ msgid "An error occurred:"
+#~ msgstr "Tharla Earráid:"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Do rogha? (gnás %s úsáid `none' do ceann ar bith) "
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Ag éalú i %d siocand"
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Rithléibheal Loiceadh"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Scríobh /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formáidigh gach ceann"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "I ndhiadh na rann ar fad formáidiú,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "caillfear gach sonra ar na ranna"
-
-#~ msgid "Error reading file $f"
-#~ msgstr "Earráid ag léamh comhad $f"
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Ceichis (FIXME)"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Cumraigh nasc ghréasán"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "An bhfuil seo ceart?"
-#~ msgid "Choose"
-#~ msgstr "Rogha"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Tharla earráid, bain trial as roinnt paraiméadair a athrú"
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Freastalaí XFree86: %s"
-#~ msgid "Remote queue"
-#~ msgstr "Scrios ciú"
+#~ msgid "Show all"
+#~ msgstr "Taispéan gach ceann"
-#~ msgid "Paper Size"
-#~ msgstr "Méid Páipéir"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Ag ullmhú cumraíocht X-Windows"
-#~ msgid "Uniprint driver options"
-#~ msgstr "Roghanna tiománaí Uniprint"
-
-#~ msgid "Name of queue"
-#~ msgstr "Ainm ciú"
-
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Table"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Table"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Cumraíocht Gréasánú"
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Bainteach le hIdirlíon"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Bainteach le hIdirlíon"
-
-#~ msgid "yellow pages"
-#~ msgstr "leathanaigh buí"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Cumraigh ADSL"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Roghnaigh Comhad"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Cumraigh nasc ghréasán"
-
-#~ msgid "Configure..."
-#~ msgstr "Cumraigh..."
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "cumraíocht"
-
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Trialaigh an cumraíocht"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Cumraigh LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Cruthaigh flapach bootáil"
-
-#~ msgid "Choice"
-#~ msgstr "Rogha"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Eile"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Ceisteanna eile"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Cead Freastalaí DNS"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Dara Freastalaí DNS"
-
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Luchóg ar bith"
-
-#, fuzzy
-#~ msgid "Development, Database"
-#~ msgstr "Forbairt"
-
-#, fuzzy
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Déan iarracht móideam a aimsiú?"
-
-#, fuzzy
-#~ msgid "Configure local network"
-#~ msgstr "Cumraigh gréasánú"
-
-#, fuzzy
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#, fuzzy
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "Tá gréasánú lóganta cumraithe cheana féin. An dteastaíonn uait:"
-
-#, fuzzy
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Cumraigh Cártaí PCMCIA"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Uirlisí Idirlíon"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Forbairt C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Cumraigh crios ama"
-
-#, fuzzy
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Printéir Gréasán (lpd)"
-
-#, fuzzy
-#~ msgid "Enable num lock at startup"
-#~ msgstr "X ag tús"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Pasfhocal (arís)"
-
-#~ msgid "Gateway device:"
-#~ msgstr "Gaireas na hInneal Geata:"
-
-#~ msgid "default"
-#~ msgstr "gnáth"
-
-#, fuzzy
-#~ msgid "What is your system used for?"
-#~ msgstr "Cén ceann do chrois ama"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Úsáid diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Socraithe"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Bain úsáid as scáilcomhad"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Bain úsáid as pasfhocail MD5"
-
-#~ msgid "Search"
-#~ msgstr "Cuardaigh"
-
-#~ msgid "Package"
-#~ msgstr "Pacáiste"
-
-#~ msgid "Tree"
-#~ msgstr "Crann"
-
-#~ msgid "Category"
-#~ msgstr "Saghas"
-
-#~ msgid "Installed packages"
-#~ msgstr "Pacáistí feistiú"
-
-#~ msgid "Available packages"
-#~ msgstr "Pacáistí le fáil"
-
-#~ msgid "Find Package"
-#~ msgstr "Cuardaigh Pacáiste"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Directory"
-#~ msgstr "Eolaire"
-
-#~ msgid "Other countries"
-#~ msgstr "Tír Eile"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "móideim alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "móideim ECI"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "ná úsáid pppoe"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (tábhachtach)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (an-dheas)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (deas)"
-
-#~ msgid "Czech"
-#~ msgstr "Ceichís"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Athchumraigh an gréasánú áitiúl"
-
-#, fuzzy
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Uath-Réiteach"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Uath-cuardaigh réiteach"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Feistiú/Tarrtháil"
-
-#~ msgid "Rescue"
-#~ msgstr "Tarrtháil"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Luchóg ADB Apple"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Luchóg ADB Apple (2 Cnaipí)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Luchóg Apple ADB (3+ Cnaipí)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Luchóg USB Apple"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Luchóg USB Apple (2 Cnaipí)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Luchóg USB Apple (3+ Cnaipí)"
-
-#~ msgid "Generic Mouse (PS/2)"
-#~ msgstr "Mouse Gnáth (PS/2)"
-
-#~ msgid "Logitech MouseMan/FirstMouse (ps/2)"
-#~ msgstr "Logitech MouseMan/FirstMouse (ps/2)"
-
-#~ msgid "ASCII MieMouse (PS/2)"
-#~ msgstr "ASCII MieMouse (PS/2)"
-
-#~ msgid "Genius NetMouse Pro (PS/2)"
-#~ msgstr "Genius NetMouse Pro (PS/2)"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "Luchóg Bus ATI"
+#~ msgid "What do you want to do?"
+#~ msgstr "Céard a theastaíonn uait a dhéanamh?"
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Luchóg Bus Microsoft"
+#~ msgid "Change Monitor"
+#~ msgstr "Athraigh Scáileán"
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "Luchóg USB (3 cnaipí nó níos mó)"
+#~ msgid "Change Graphics card"
+#~ msgstr "Athraigh carta grafach"
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A nó barr (srathach)"
+#~ msgid "Change Server options"
+#~ msgstr "Athraigh cumraíocht an freastalaí"
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (srathach)"
+#~ msgid "Change Resolution"
+#~ msgstr "Athraigh Réiteach"
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (srathach)"
+#~ msgid "Show information"
+#~ msgstr "Taispeán Eolas"
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (srathach)"
+#~ msgid "Test again"
+#~ msgstr "Bain trial as arís"
-#~ msgid "Microsoft IntelliMouse (serial)"
-#~ msgstr "Microsoft IntelliMouse (srathach)"
+#~ msgid "Graphics card"
+#~ msgstr "Carta Grafach"
-#~ msgid "Logitech MouseMan/FirstMouse (serial)"
-#~ msgstr "Logitech MouseMan/FirstMouse (srathach)"
+#~ msgid "Select a graphics card"
+#~ msgstr "Roghnaigh carta grafachach"
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Luchóg de gnáth (srathach)"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Gnáth VGA, 640x480 ag 60Hz"
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft nó comhoriúnach (srathach)"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 ag 56 Hz"
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Luchóg 3-cnaipe de gnáth (srathach)"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Cinéal 8514, 1024x768 ag 87 Hz Idirdhuillith (gan 800x600)"
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (srathach)"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 ag 87 Hz Idirdhuillithe, 800x600 ag 56 Hz"
-#~ msgid "What do you wish to do?"
-#~ msgstr "Céard a theastaíonn uait a dhéanamh?"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "SVGA Leathnaithe, 800x600 ag 60 Hz, 640x480 ag 72 Hz"
-#~ msgid "pump"
-#~ msgstr "pump"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA Neamh-idirdhuillithe, 1024x768 ag 60 Hz, 800x600 ag 72 Hz"
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA d'árd minicíocht, 1024x768 ag 70 Hz"
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 60 Hz"
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Cén cinéal luchóg atá agat?"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 74 Hz"
-#~ msgid "Cryptographic"
-#~ msgstr "Rúnscríobhach"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 76 Hz"
-#~ msgid "Configure LAN"
-#~ msgstr "Cumraigh LAN"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Scáileán a bhfuil in ann do 1600x1200 ag 70Hz"
-#~ msgid "Show less"
-#~ msgstr "Taispéan níos lú"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Scáileán a bhfuil in ann do 1600x1200 ag 76Hz"
-#~ msgid "Show more"
-#~ msgstr "Taispeán níos mo"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Roghnaigh liebhéal slándáil"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index a0f63f21a..1c219d281 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -1,82 +1,108 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999, 2000 Mandrakesoft.
-# Copyright (C) 2000 Jesús Bravo Álvarez.
-# José Manuel Cambre <asforber@asforber.com>, 1999
-# Jesús Bravo Álvarez <jba@pobox.com>, 2000
-#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-06-08 18:14+0200\n"
+"Project-Id-Version: drakfloppy\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-03-17 19:17+0100\n"
"Last-Translator: Jesús Bravo Álvarez (mdk) <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../Xconfigurator.pm_.c:243
-#, fuzzy
-msgid "Use Xinerama extension"
-msgstr "Usar detección automática"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ou máis"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Escolla un servidor X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "lendo a configuración"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Tarxeta gráfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccione a cantidade de memoria da tarxeta gráfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccione unha tarxeta gráfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuración de XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolla un servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "żQue configuración de XFree quere usar?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
+#: ../../Xconfig/card.pm_.c:375
#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolla un servidor X"
+msgid "Use Xinerama extension"
+msgstr "Usar detección automática"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Axudante da configuración de rede"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "żQue configuración de XFree quere usar?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s con aceleración 3D por hardware"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,33 +112,18 @@ msgstr ""
"XFree %s. A tarxeta está soportada por XFree %s, que pode ter un mellor\n"
"soporte en 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"A súa tarxeta pode ter soporte de aceleración 3D por hardware con XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con aceleración 3D por hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"A súa tarxeta pode ter soporte de aceleración 3D por hardware, pero só con\n"
-"XFree %s, ADVIRTA QUE ESTE SOPORTE É EXPERIMENTAL E PODE COLGAR O SISTEMA."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleración 3D por hardware EXPERIMENTAL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +135,58 @@ msgstr ""
"A súa tarxeta está soportada por XFree %s, que pode ter un mellor soporte en "
"2D."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"A súa tarxeta pode ter soporte de aceleración 3D por hardware, pero só con\n"
+"XFree %s, ADVIRTA QUE ESTE SOPORTE É EXPERIMENTAL E PODE COLGAR O SISTEMA."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuración de XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccione a cantidade de memoria da tarxeta gráfica"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolla as opcións para o servidor"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"żManter os cambios?\n"
+"A configuración actual é:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Escolla o monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalizado"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Xenérico"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Refacer"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,515 +209,327 @@ msgstr ""
"xa que pode danalo.\n"
"No caso de dúbida, escolla unha configuración conservadora."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Frecuencia de actualización horizontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Frecuencia de actualización vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "O monitor non está configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "A tarxeta gráfica aínda non está configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolucións aínda non escollidas"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "żDesexa probar a configuración?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Aviso: probar esta tarxeta gráfica pode colgar o ordenador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Proba da configuración"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 cores (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probe a cambiar algúns parámetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil cores (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ocorreu un erro:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil cores (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Saíndo en %d segundos"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millóns de cores (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "żÉ esta a configuración correcta?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 mil millóns de cores (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ocorreu un erro, probe a cambiar algúns parámetros"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolucións"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolución"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Escolla a resolución e a profundidade de cor"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Tarxeta gráfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Máis"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancelar"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Aceptar"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo experto"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ver todo"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "żDesexa probar a configuración?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolucións"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Proba da configuración"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Disposición do teclado: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo de rato: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo do rato: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frecuencia horizontal do monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frecuencia vertical do monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Tarxeta gráfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Tarxeta gráfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memoria da tarxeta gráfica: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profundidade de cor: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolución: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador de XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparando a configuración de X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "żQué desexa facer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Mudar o monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Mudar a tarxeta gráfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Mudar as opcións do servidor"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Mudar a resolución"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar información"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Probar de novo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Saír"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"żManter os cambios?\n"
-"A configuración actual é:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Lanzar X11 ó arrincar"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Pódese configurar o seu ordenador para que entre automaticamente\n"
"en X ó arrincar. żDesexa que se execute X ó reiniciar?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Entre de novo en %s para activar os cambios"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Saia da sesión e use Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 cores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil cores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil cores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millóns de cores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 mil millóns de cores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB ou máis"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estándar, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA estendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA non-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor soportando 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor soportando 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primeiro sector da partición de arranque"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primeiro sector do disco (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalación do SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "żOnde quere instalar o cargador de arrinque?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalación do LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO con menú de texto"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO con menú gráfico"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrincar dende DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opcións principais do cargador de arrinque"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Cargador de arrinque que usar"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalación do cargador de arrinque"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositivo de arrinque"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (non funciona en BIOS antigas)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacto"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modo de vídeo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Retardo antes de arrincar a imaxe por omisión"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Contrasinal"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Restrinxir opcións da lińa de comandos"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "restrinxir"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Baleirar /tmp en cada arrinque"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tamańo exacto de memoria se for necesario (atopáronse %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Activar perfís múltiples"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Indicar o tamańo da memoria en MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"A opción ``restrinxir opcións da lińa de comandos'' non ten sentido sen "
"contrasinal"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Tente de novo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Os contrasinais non coinciden"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Mensaxe inicial"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "żPermitir o arrinque de CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "żSO por omisión?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -688,83 +538,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas máis ou cambiar as que xa existen."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Engadir"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Feito"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "żQue tipo de entrada desexa engadir?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Outros SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Outros SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imaxe"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Raíz"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Agregar"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lectura-escritura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Táboa"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Por omisión"
@@ -797,53 +647,75 @@ msgstr "Debe ter unha partición de intercambio"
msgid "This label is already used"
msgstr "Esta etiqueta xa se está a usar"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s interfaces %s atopadas"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "żTen algunha outra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "żTen algunha interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Si"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Mire a información sobre o hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando o controlador para a tarxeta %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(módulo %s)"
+#: ../../any.pm_.c:697
+#, 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:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Aquí deben ir as diferentes opcións para o módulo %s.\n"
+"As opcións son da forma Ťnome=valor nome2=valor2 ...ť.\n"
+"Por exemplo pode ter Ťio=0x300 irq=7ť"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcións do módulo:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "żQue controlador de %s desexa probar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -861,37 +733,15 @@ msgstr ""
"analizar o equipo pode provocar que se pare, pero non debería\n"
"causar ningún dano."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Autodetección"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especificar as opcións"
-#: ../../any.pm_.c:725
-#, 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:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Aquí deben ir as diferentes opcións para o módulo %s.\n"
-"As opcións son da forma Ťnome=valor nome2=valor2 ...ť.\n"
-"Por exemplo pode ter Ťio=0x300 irq=7ť"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcións do módulo:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -900,49 +750,54 @@ msgstr ""
"Fallo o cargar o módulo %s\n"
"żDesexa retentalo con outros parámetros?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Este contrasinal é demasiado simple"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Indique o nome de usuario"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "O nome de usuario (login) só debe conter letras, números, '-' e '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Este nome de usuario xa está engadido"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Este nome de usuario xa está engadido"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -951,32 +806,32 @@ msgstr ""
"Introduza un usuario\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aceptar usuario"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nome de usuario"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Login automático"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -986,123 +841,103 @@ msgstr ""
"como un usuario. Se non quere usar esta característica, prema o botón\n"
"cancelar."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Escolla o usuario por defecto:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Escolla o xestor de fiestras para executar:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Escolla a lingua que desexe usar."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 "Pode escoller outras linguas que estarán dispońibles trala instalación"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Todas"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizado"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS iniciando"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Este paquete ten que ser actualizado\n"
"żEstá seguro de que quere deseleccionalo?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
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:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Benvida ós crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Estándar"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alto"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1112,7 +947,7 @@ msgstr ""
"sinxelo de utilizar, pero é moi sensible: non debe usarse nunha máquina\n"
"conectada a outras ou á Internet. Non hai contrasinais de acceso."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1120,7 +955,7 @@ msgstr ""
"Os contrasinais están activados, pero o uso como ordenador de rede aínda\n"
"non se recomenda."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1129,60 +964,61 @@ msgstr ""
"Esta é a seguridade recomendada para un ordenador usado para conectar\n"
"á Internet como cliente. Agora hai más comprobacións de seguridade."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Con este nivel de seguridade, é posible usar este sistema coma servidor.\n"
"A seguridade é agora alta dabondo para usar o sistema coma un servidor\n"
"que acepta conexións de múltiples clientes."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Tómanse características do nivel 4, pero agora o sistema está completamente\n"
"pechado. As características de seguridade están ó máximo nivel."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escola o nivel de seguridade"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Establecendo o nivel de seguridade"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolla as opcións para o servidor"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1206,53 +1042,53 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "­Benvido ao GRUB, o selector de sistemas operativos!"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use as teclas %c e %c para seleccionar a entrada marcada."
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Prema enter para arrincar o SO seleccionado, 'e' para editar os"
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandos antes de arrincar, ou 'c' para a li¤a de comandos."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "A entrada marcada arrincarase automaticamente en %d segundos."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "non hai espacio dabondo en /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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Escritorio"
# Manter o 'ú' en iso-8859-1
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Menú Inicio"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "żOnde quere instalar o cargador de arrinque?"
@@ -1265,15 +1101,19 @@ msgstr "axuda aínda non implementada.\n"
msgid "Boot Style Configuration"
msgstr "Configuración do estilo de arrinque"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ficheiro"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ficheiro/_Saír"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1312,12 +1152,12 @@ msgstr "Modo de arrinque"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
#, fuzzy
msgid "Configure"
@@ -1328,7 +1168,7 @@ msgid "System mode"
msgstr ""
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar o sistema X-Window ó iniciar"
#: ../../bootlook.pm_.c:148
@@ -1339,14 +1179,16 @@ msgstr "Non, non quero login automático"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Si, quero login automático con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Aceptar"
@@ -1395,7 +1237,7 @@ msgstr "Non é posible engadir máis particións"
msgid "Screenshots will be available after install in %s"
msgstr "Pode escoller outras linguas que estarán dispońibles trala instalación"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francia"
@@ -1403,7 +1245,7 @@ msgstr "Francia"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
@@ -1432,11 +1274,12 @@ msgstr "Noruegués"
msgid "Sweden"
msgstr "Mirar"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italiano"
@@ -1446,7 +1289,7 @@ msgstr "Italiano"
msgid "Austria"
msgstr "serie"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1454,8 +1297,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Faga primeiro unha copia de seguridade dos seus datos"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "ĄLea coidadosamente!"
@@ -1468,11 +1311,12 @@ msgstr ""
"Se ten pensado usar aboot, teńa coidado de deixar un espacio libre (2048\n"
"sectores abondan) no inicio do disco"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Erro"
@@ -1480,11 +1324,11 @@ msgstr "Erro"
msgid "Wizard"
msgstr "Axudante"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Escolla a acción"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1496,150 +1340,155 @@ msgstr ""
"Aconséllase que primeiro a redimensione\n"
"(prema nela, e logo en \"Redimensionar\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Prema nunha partición"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalles"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "mount fallou"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Intercambio"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Baleiro"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Outros"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipos de sist. de ficheiros:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crear"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' no seu lugar"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Borrar"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ó mudar o tipo da partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Escolla a acción"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Crear unha nova partición"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Mudar a modo experto"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Mudar a modo normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Refacer"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "żContinuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Saír sen gardar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "żSaír do programa sen gardar a táboa de particións?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "żDesexa probar a configuración?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Asignación automática"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Borrar todas"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Máis"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Información do correo"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Tódalas particións primarias están usadas"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Non é posible engadir máis particións"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1647,35 +1496,35 @@ msgstr ""
"Para ter máis particións, borre unha para poder crear unha partición "
"estendida"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Escribir táboa de particións"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Automonta-las unidades extraíbles"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Seleccione un ficheiro"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1683,11 +1532,11 @@ msgstr ""
"A táboa de particións de rescate non ten\n"
"o mesmo tamańo. żContinuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advertencia"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1695,124 +1544,131 @@ msgstr ""
"Insira un disquete na unidade\n"
"Perderanse tódolos datos no disquete"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Tentando recuperar a táboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Información do correo"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punto de montaxe"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcións"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Desprazar"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatar"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Engadir ó RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Engadir ó LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Quitar do RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Quitar do LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificar o RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crear unha nova partición"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector inicial: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Tamańo en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punto de montaxe: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Mudar o tipo de partición"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "żQué sistema de ficheiros desexa?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "żOnde desexa montar o ficheiro loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "żOnde desexa montar o dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1821,129 +1677,136 @@ msgstr ""
"usar de loopback.\n"
"Quite primeiro o loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Calculando os límites do sistema de ficheiros FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Esta partición non se pode redimensionar"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Debería facer unha copia de seguridade dos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ó redimensionar a partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Escoller o novo tamańo"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Tamańo en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "żA que disco desexa desprazala?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "żA que sector desexa desprazala?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Desprazando"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Desprazando partición..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Escolla un dos RAID para engadirlle"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novo"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Escolla un dos LVM para engadirlle"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "żNome do LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Esta partición non pode usarse para loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nome do ficheiro loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Nome real"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "O ficheiro xa está a ser usado por outro loopback, escolla outro"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "O ficheiro xa existe. żUsalo?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Opcións do módulo:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "tamańo do bloque de datos"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Teńa coidado: esta operación é perigosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "żQué tipo de particionamento quere?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Este paquete ten que ser actualizado\n"
+"żEstá seguro de que quere deseleccionalo?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1954,7 +1817,7 @@ msgstr ""
"(nun cilindro > 1024). Se usa o LILO, non funcionará, e se non o\n"
"usa, non necesita /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1966,7 +1829,7 @@ msgstr ""
"Se pensa usar o selector de SO de arrinque LILO, lembre engadir unha\n"
"partición /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1977,138 +1840,138 @@ msgstr ""
"partición /boot.\n"
"Lembre polo tanto engadir unha partición /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "ĄEscribirase ó disco a táboa de particións da unidade %s!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Necesitará reiniciar o equipo para que a modificación sexa tomada en conta"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ó formatar a partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatando"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatando a partición %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid fallou"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Resolución: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra de unidade DOS: %s (aproximación)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Inicio: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Tamańo: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindro %d a cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Non formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Ficheiro(s) loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2116,27 +1979,27 @@ msgstr ""
"Partición de arrinque por omisión\n"
" (para arrincar en MS-DOS, non para lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamańo do bloque de datos %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome do ficheiro loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2144,7 +2007,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2152,65 +2015,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Tamańo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Xeometría: %s cilindros, %s cabezas, %s sectores\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de táboa de particións: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "no bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcións: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Este contrasinal é demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Os contrasinais non coinciden"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2221,36 +2084,66 @@ msgstr "Mudar o tipo de partición"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Prema nunha partición"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autenticación"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nome de usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nome de usuario"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Dominio NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Servidor DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "O formato %s de %s fallou"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Descońécese o xeito de formatar %s de tipo %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
@@ -2267,69 +2160,323 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Non pode usar JFS para particións máis pequenas que 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Non pode usar ReiserFS para particións máis pequenas que 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Os puntos de montaxe deben empezar por /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Xa existe unha partición co punto de montaxe %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Non pode usar un volume lóxico LVM para o punto de montaxe %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio debería permanecer dentro do sistema de ficheiros raíz"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Necesita un sistema de ficheiros real (ext2, reiserfs) para este punto de "
"montaxe\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Non pode usar un volume lóxico LVM para o punto de montaxe %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro ó abrir %s para escritura: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ocorreu un erro - non se atopou ningún dispositivo válido para crear novos "
"sistemas de ficheiros. Verifique o seu equipo para ver a razón deste problema"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "ĄNon ten ningunha partición!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Usar detección automática"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Xenérico"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memoria da tarxeta (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatando"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Mudar o tipo de partición"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Saír"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/A_xuda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/A_xuda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Axuda/_Acerca..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Rato"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoria da tarxeta (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancelar"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Rato"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Descrición"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autenticación"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Seleccione un ficheiro"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositivo de pasarela"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botóns"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detectar discos duros"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Mire a información sobre o hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostrar información"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configurar o rato"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectado no porto %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Agarde, por favor"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segundos"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Lendo a base de datos de controladores de CUPS..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Autodetección"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2343,7 +2490,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2414,9 +2561,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2606,7 +2752,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2618,9 +2764,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2667,21 +2812,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2697,9 +2841,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Neste punto, ten que escoller onde quere instalar o sistema operativo\n"
"Mandrake Linux no disco duro. Se está baleiro, ou se hai outro sistema\n"
@@ -2784,9 +2928,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2896,38 +3039,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3002,11 +3139,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3063,7 +3200,7 @@ msgstr ""
"cońecemento de GNU/Linux. Polo tanto, non\n"
" escolla esta clase de instalación a menos que saiba o que está a facer."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3078,7 +3215,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3093,7 +3230,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3109,7 +3246,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3118,23 +3255,23 @@ msgstr ""
"Seleccione o porto correcto. Por exemplo, o porto\n"
"COM1 en MS Windows chámase ttyS0 en GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3156,7 +3293,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3178,7 +3315,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3186,7 +3323,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3207,7 +3344,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3233,7 +3370,7 @@ msgstr ""
"poidendo borrar as entradas correspondentes. Pero neste caso, precisará\n"
"un disquete de arrinque para poder usalos."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3249,29 +3386,28 @@ msgstr ""
"A menos que sepa exactamente o que fai, elixa sempre\n"
"\"Primeiro sector do disco (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3280,7 +3416,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3305,11 +3441,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3319,9 +3455,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3333,7 +3468,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3359,7 +3494,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3386,18 +3521,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3405,12 +3539,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3426,14 +3559,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3444,7 +3577,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3452,12 +3585,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3472,20 +3605,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insira un disquete formatado con FAT na unidade %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3493,7 +3626,7 @@ msgstr ""
"Para usar esta selección de paquetes gardada, arrinque a instalación con "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo o ficheiro %s"
@@ -3523,7 +3656,7 @@ msgstr "Debe ter unha partición de intercambio"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3531,60 +3664,60 @@ msgstr ""
"\n"
"żDesexa continuar de calquera xeito?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe ter unha partición de intercambio"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Usar espacio libre"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Usar partición existente"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Non hai ningunha partición existente para usar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Usar a partición de Windows para loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "żQue partición desexa usar para Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Escolla os tamańos"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Tamańo da partición raíz en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Tamańo da partición de intercambio en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Usar o espacio libre da partición de Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "żQue partición desexa redimensionar?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Calculando os límites do sistema de ficheiros de Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3593,13 +3726,16 @@ msgstr ""
"O redimensionador de FAT non é capaz de manexar a súa partición,\n"
"ocorreu o seguinte erro: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"A partición de Windows está demasiado fragmentada, execute primeiro o "
"``defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3620,56 +3756,56 @@ msgstr ""
"Tamén é aconsellable facer unha copia de seguridade dos seus datos.\n"
"Cando estea seguro, prema Aceptar."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "żQue tamańo desexa manter para o Windows en"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partición %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "O redimensionamento da FAT fallou: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Non hai particións FAT para redimensionar ou para usar como loopback (ou non "
"hai espacio libre dabondo)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Borrar o disco completo"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Borrar Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Ten máis dunha unidade de disco duro, żen cal delas desexa instalar linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Perderanse TODAS as particións existentes e os seus datos na unidade %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionamento de disco personalizado"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3678,11 +3814,11 @@ msgstr ""
"Pode agora particionar %s.\n"
"Cando remate, non esqueza gravar usando `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Non ten espacio libre dabondo na partición de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Non se pode atopar espacio para a instalación"
@@ -3690,16 +3826,16 @@ msgstr "Non se pode atopar espacio para a instalación"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "O axudante de particionamento do DrakX atopou as seguintes solucións:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "O particionamento fallou: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Activando a rede"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Desactivando a rede"
@@ -3711,12 +3847,12 @@ msgstr ""
"Ocorreu un erro, e o programa non sabe como manexalo de\n"
"maneira limpa. Continúe ó seu propio risco."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto de montaxe %s duplicado"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3728,12 +3864,12 @@ msgstr ""
"Comprobe o cdrom nun ordenador xa instalado usando \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Benvido a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Ningunha disqueteira dispońible"
@@ -3743,9 +3879,9 @@ msgstr "Ningunha disqueteira dispońible"
msgid "Entering step `%s'\n"
msgstr "Entrando na etapa '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3755,203 +3891,158 @@ msgstr ""
"en modo texto. Para iso, prema 'F1' cando arrinque o CDROM, e escriba\n"
"'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Clase de instalación"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Escolla unha das seguintes clases de instalación:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "O tamańo total dos grupos que seleccionou é aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se quere instalar menos deste tamańo,\n"
-"seleccione a porcentaxe de paquetes que desexe.\n"
-"\n"
-"Unha porcentaxe baixa instalará só os paquetes máis importantes;\n"
-"unha porcentaxe dun 100%% instalará tódolos paquetes seleccionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Ten espacio no seu disco para unicamente o %d%% destes paquetes.\n"
-"\n"
-"Se desexa instalar menos ca isto,\n"
-"seleccione a porcentaxe de paquetes que quere instalar.\n"
-"Unha porcentaxe baixa instalará só os paquetes máis importantes;\n"
-"unha porcentaxe de %d%% instalará tódolos paquetes posibles."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Vostede poderá escollelos máis especificamente na seguinte etapa."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Porcentaxe de paquetes a instalar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Selección individual de paquetes"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamańo total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paquete erróneo"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versión: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamańo: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importancia: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Non pode seleccionar este paquete xa que non hai espacio dabondo para "
"instalalo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Vanse instalar os seguintes paquetes"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Vanse eliminar os seguintes paquetes"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Non pode seleccionar/deseleccionar este paquete"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este é un paquete obrigatorio, non se pode deseleccionar"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Non pode deseleccionar este paquete. Xa está instalado"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Este paquete ten que ser actualizado\n"
"żEstá seguro de que quere deseleccionalo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Non pode deseleccionar este paquete. Ten que ser actualizado"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Gardar a selección de paquetes"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Desinstalar"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Escolla os paquetes que desexa instalar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Por favor, agarde, preparando a instalación"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquetes"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instalando o paquete %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aceptar"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rexeitar"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3965,17 +4056,17 @@ msgstr ""
"Por favor, insira o Cd-Rom etiquetado \"%s\" na unidade e prema Aceptar. Se "
"non o ten, prema Cancelar para omitir a instalación deste Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "żSeguir adiante?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Houbo un erro ó ordenar os paquetes:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Houbo un erro ó instalar os paquetes:"
@@ -4020,11 +4111,11 @@ msgstr "Ocorreu un erro"
msgid "Do you really want to leave the installation?"
msgstr "żDesexa reiniciar a rede?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Acordo da licencia"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4039,7 +4130,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4145,113 +4236,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclado"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Escolla a disposición do seu teclado."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Esta é a lista completa de teclados dispońibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "żQué clase de instalación desexa?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalar/Actualizar"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "żÉ isto unha instalación ou unha actualización?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomendada"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Experto"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Actualización"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Gardar a selección de paquetes"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porto do rato"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Escolla o porto serie onde está conectado o seu rato."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Configurando tarxetas PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Configurando o IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "ningunha partición dispońible"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Examinando as particións para atopar os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Seleccione os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4264,7 +4359,7 @@ msgstr ""
"\n"
"żConcorda coa perda de tódalas particións?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4272,144 +4367,147 @@ msgstr ""
"O DiskDrake non puido ler correctamente a táboa de particións.\n"
"ĄContinúe ó seu propio risco!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Elixa as particións que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partición raíz"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "żCal é a partición raíz (/) do seu sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reiniciar o equipo para que a modificación da táboa\n"
"de particións se tome en conta"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Elixa as particións que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "żComprobar os bloques erróneos?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatando as particións"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando e formatando o ficheiro %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Non hai espacio de intercambio dabondo para finalizar a instalación,\n"
"por favor, engada algún"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Buscando os paquetes dispońibles"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Buscando os paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Atopando os paquetes para actualizar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Non pode deseleccionar este paquete. Xa está instalado"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"O seu sistema non ten espacio libre dabondo para a instalación ou "
"actualización (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completo (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mínimo (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendado (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Elixa o paquete a instalar"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Agarde"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4419,16 +4517,16 @@ msgstr ""
"Se non ten ningún deses CDs, prema Cancelar.\n"
"Se só faltan algúns dos CDs, desmárqueos, e prema Aceptar."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etiquetado \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Preparando a instalación"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4437,23 +4535,23 @@ msgstr ""
"Instalando o paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Configuración trala instalación"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4522,167 +4620,198 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Contactando co espello para obter a lista dos paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Escoller un espello do que coller os paquetes"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Contactando co espello para obter a lista dos paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "żCal é a súa zona horaria?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "żO reloxo interno do seu ordenador usa a hora GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Sen impresora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "żTen algunha outra?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resume"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Rato"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Zona horaria"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Tarxeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Tarxeta de son"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Tarxeta de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows(FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Impresora local"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasinal de root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Sen contrasinal"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Este contrasinal é demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "Autenticación NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autenticación"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Dominio NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NIS"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4711,19 +4840,19 @@ msgstr ""
"de Mandrake, facendo así moito máis fácil a recuperación no caso de fallo\n"
"grave do sistema. żDesexa crear un disco de arrinque para o seu sistema?"
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primeira unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segunda unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4750,7 +4879,7 @@ msgstr ""
"grave do sistema. żDesexa crear un disco de arrinque para o seu sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4759,28 +4888,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, pero non hai ningunha disqueteira dispońible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Escolla a disqueteira que quere usar para crear o disco de arranque"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Creando o disco de arrinque"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Preparando o cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4788,11 +4917,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "żDesexa usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4800,16 +4929,16 @@ msgstr ""
"Erro instalando aboot, \n"
"żprobar a forzar a instalación mesmo se iso destrúe a primeira partición?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "A instalación do xestor de arrinque fallou. Ocorreu o seguinte erro:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4820,18 +4949,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Creando un disquete de auto-instalación"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4841,7 +4969,8 @@ msgstr ""
"\n"
"żDesexa realmente saír agora?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4852,7 +4981,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4866,18 +4995,22 @@ msgstr ""
"de Mandrake Linux, consulte o ficheiro de erratas dispońibles en\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Para información sobre a configuración do seu sistema, despois\n"
"da instalación, hai un capítulo na Guía do Usuario Oficial\n"
"de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Xerar disquete de auto-instalación"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4891,15 +5024,15 @@ msgstr ""
"\n"
"Pode preferir realizar novamente a instalación.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Gardar a selección de paquetes"
@@ -4927,422 +5060,406 @@ msgstr ""
msgid "Choose a file"
msgstr "Escolla a acción"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanzado"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Agarde, por favor"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir árbore"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Pechar árbore"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Mudar entre lista completa e ordenada por grupos"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Elección incorrecta, tente de novo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "żA súa escolla? (por omisión %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "żA súa escolla? (por omisión %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcións: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "żDesexa usar aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "żA súa escolla? (por omisión %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Checo (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alemán"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Teclado dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espańol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finlandés"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francés"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noruegués"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruso"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Británico"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Estadounidense"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenio (antigo)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenio (máquina de escribir)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenio (fonético)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaianí (latín)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenio (fonético)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Búlgaro"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielorruso"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suízo (alemán)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suízo (francés)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Checo (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alemán (sen teclas acentuadas)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dinamarqués"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (EUA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruegués)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (EUA)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Xeorxiano (\"ruso\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Xeorxiano (\"latino\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grego"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Húngaro"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelí"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelí (Fonético)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandés"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Xaponés de 106 teclas"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Británico"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinoamericano"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (antigo)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (novo)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"ringleira de números\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fonético\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Localización"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedonio"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandés"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polaco (disposición qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polaco (disposición qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugués"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadiano (Québec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Esloveno"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslovaco (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslovaco (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaianí (cirílico)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Táboa"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (tradicional modelo \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (moderno modelo \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucraíno"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Estadounidense (internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"ringleira de números\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslavo (latín/cirílico)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5355,7 +5472,31 @@ msgstr "Puntos de montaxe circulares %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Quitar primeiro os volumes lóxicos\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Número de teléfono"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatar particións"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5396,10 +5537,6 @@ msgstr "1 botón"
msgid "Generic 2 Button Mouse"
msgstr "Rato de 2 botóns xenérico"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Xenérico"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Roda"
@@ -5464,38 +5601,54 @@ msgstr "ningún"
msgid "No mouse"
msgstr "Ningún rato"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Probe o seu rato"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Para activar o rato,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "ĄMOVA A RODA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finalizar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Seguinte ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "żÉ isto correcto?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandir árbore"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Pechar árbore"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Mudar entre lista completa e ordenada por grupos"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectar á Internet"
@@ -5542,7 +5695,7 @@ msgstr ""
"Non se detectou ningún adaptador de rede ethernet no seu sistema.\n"
"Non se pode configurar este tipo de conexión."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Escolla a interface de rede"
@@ -5555,7 +5708,7 @@ msgstr "Escolla o adaptador de rede que desexa usar para conectar á Internet"
msgid "no network card found"
msgstr "non se atopou ningunha tarxeta de rede"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Configurando a rede"
@@ -5571,15 +5724,15 @@ msgstr ""
"Este nome debe ser completamente cualificado,\n"
"como ``mińamaquina.meulab.mińacomp.es''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nome de máquina"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Axudante da configuración de rede"
@@ -5627,7 +5780,7 @@ msgstr "Configuración da RDSI"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Seleccione o seu provedor.\n"
" Se non está na lista, escolla 'Unlisted'"
@@ -5650,14 +5803,14 @@ msgstr "Resto do mundo"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Resto do mundo \n"
" sen canle-D (lińas dedicadas)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "żQué protocolo desexa usar?"
#: ../../network/isdn.pm_.c:199
@@ -5681,7 +5834,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Se ten unha tarxeta ISA, os valores na seguinte pantalla deberían ser os "
@@ -5698,13 +5852,13 @@ msgid "Continue"
msgstr "Continuar"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "żCal é a sua tarxeta RDSI?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Detectouse unha Tarxeta RDSI PCI, pero se descońece o tipo. Seleccione unha "
"tarxeta PCI na seguinte pantalla."
@@ -5722,47 +5876,47 @@ msgstr "Escolla o porto serie onde está conectado o seu módem."
msgid "Dialup options"
msgstr "Opcións de chamada"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nome da conexión"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Número de teléfono"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID do login"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Baseado nun script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Baseado nun terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nome de dominio"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primeiro Servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segundo Servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5770,7 +5924,7 @@ msgstr ""
"\n"
"Pode desconectar ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -5778,11 +5932,11 @@ msgstr ""
"\n"
"Pode reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Está neste intre conectado á internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -5790,36 +5944,36 @@ msgstr ""
"\n"
"Pode conectar á Internet ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Non está neste intre conectado á Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Conectar"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "conexión por RDSI"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Configurar a rede"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Conexión e configuración de Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Pode desconectar ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5833,12 +5987,12 @@ msgstr ""
"\n"
"Pode desconectar ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuración da rede"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5849,10 +6003,10 @@ msgstr ""
"Prema Aceptar para manter a configuración, ou Cancelar para reconfigurar a "
"conexión de rede e Internet.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
#, fuzzy
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -5862,93 +6016,99 @@ msgstr ""
"Vaise configurar a súa conexión á internet/rede.\n"
"Se non quere usar a detección automática, desmarque a caixa.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Escolla o perfil para configurar"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Usar detección automática"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Modo experto"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detectando os dispositivos..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Conexión normal por módem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectado no porto %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "conexión por RDSI"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detectouse %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Conexión LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectouse na interface %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Conexión por cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Conexión por cable"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Conexión LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "tarxeta(s) ethernet detectada(s)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elixa a ferramenta que queira usar"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
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:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Compartición da conexión á Internet"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "żDesexa que a conexión se inicie ó arrincar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuración da rede"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5956,7 +6116,7 @@ msgid ""
"%s"
msgstr "żDesexa reiniciar a rede?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -5966,7 +6126,7 @@ msgstr ""
"\n"
"Agora vai ser aplicada ó seu sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -5974,16 +6134,16 @@ msgstr ""
"Tras facer iso, aconséllase reiniciar o sistema X para\n"
"evitar os problemas de mudar o nome de máquina."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -5993,7 +6153,7 @@ msgstr ""
"Simplemente acepte para manter o dispositivo configurado.\n"
"Se modifica os campos de embaixo, subsituirá esta configuración."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6003,38 +6163,43 @@ msgstr ""
"Cada valor ten que ser introducido coma un enderezo IP en\n"
"notación decimal con puntos (por exemplo: 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Configurar o dispositivo de rede %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Enderezo IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Máscara de rede"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP automático"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciado o arrincar"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6046,64 +6211,64 @@ msgstr ""
"como ``mińamaquina.meulab.mińacomp.es''.\n"
"Pode tamén introducir o enderezo IP da pasarela se usa unha"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositivo de pasarela"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuración dos proxys"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "O proxy debería ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "O proxy debería ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuración de Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "żQuere probar agora a conexión á Internet?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Probando a conexión..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "O sistema está conectado á Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6111,114 +6276,119 @@ msgstr ""
"Semella que o sistema non está conectado á internet.\n"
"Probe reconfigurando a conexión."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuración da conexión"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Encha ou marque os campos de embaixo"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ da tarxeta"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memoria da tarxeta (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "E/S da tarxeta"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "E/S_0 da tarxeta"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "E/S_1 da tarxeta"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "O seu número de teléfono persoal"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nome do provedor (p.ex provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Número de teléfono do provedor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns 1 do provedor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns 2 do provedor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Escoller teclado"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Modo de marcación"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Tipo de conexión: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Tipo de conexión: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login da conta (nome de usuario)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Contrasinal da conta"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "mount fallou: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "As particións estendidas non están soportadas nesta plataforma"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Ten un burato na táboa de particións, pero non se pode usar.\n"
"A única solución é desprazar as particións primarias para que\n"
"o burato esté despois das particións estendidas"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Fallou a restauración a partir do ficheiro %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Ficheiro de backup incorrecto"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Erro escribindo ó ficheiro %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6228,193 +6398,193 @@ msgstr ""
"A proba para verificar a integridade dos datos fallou.\n"
"Isto significa que calquera escritura no disco producirá lixo aleatorio"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "debe telo"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "importante"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "moi bo"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bo"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "indiferente"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impresora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remoto"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impresora de rede (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Impresora SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servidor de impresión"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI do dispositivo de impresión"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Impresora local"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Erro escribindo ó ficheiro %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(módulo %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP do servidor CUPS"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Por omisión)"
@@ -6437,12 +6607,12 @@ msgstr ""
"ningunha impresora, xa que serán detectadas automaticamente.\n"
"No caso de dúbida, seleccione \"Servidor CUPS remoto\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuración da LAN"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Servidor CUPS remoto"
@@ -6473,7 +6643,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "O número de porto debe ser numérico"
@@ -6482,7 +6652,7 @@ msgstr "O número de porto debe ser numérico"
msgid "CUPS server IP"
msgstr "IP do servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Porto"
@@ -6491,22 +6661,13 @@ msgstr "Porto"
msgid "Automatic CUPS configuration"
msgstr "Configuración do estilo de arrinque"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detectando os dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probar portos"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6519,14 +6680,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6544,12 +6705,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6563,11 +6724,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6577,35 +6738,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Usar detección automática"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Probar portos"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "detectouse %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6613,43 +6778,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6657,7 +6822,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6665,73 +6830,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Escolla o porto serie onde está conectado o seu módem."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Configuración"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instalando o paquete %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcións da impresora remota lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6741,31 +6916,31 @@ msgstr ""
"que indique o nome do servidor de impresión e o nome da fila\n"
"nese servidor."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcións de impresora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6780,35 +6955,35 @@ msgstr ""
"da impresora que quere usar, así como calquera nome de usuario,\n"
"grupo de traballo ou contrasinal que for necesario."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Servidor de SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP do servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nome de recurso compartido"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grupo de traballo"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6832,7 +7007,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6841,7 +7016,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6849,11 +7024,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcións de impresora NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6867,28 +7042,28 @@ msgstr ""
"que desexa usar, así como calquera nome de usuario ou contrasinal\n"
"que for necesario."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nome da fila de impresión"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opcións da impresora de socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6899,60 +7074,56 @@ msgstr ""
"Para imprimir nunha impresora de socket, ten que fornecer\n"
"o nome do servidor da impresora, e opcionalmente o número do porto."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nome da impresora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descrición"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Localización"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6967,28 +7138,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "żÉ isto correcto?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Conexión da impresora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "żQué tipo de impresora ten?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6997,18 +7168,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7018,12 +7189,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7031,7 +7202,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7044,7 +7215,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7054,34 +7225,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "żDesexa probar a impresión?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Probar portos"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7089,45 +7260,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Si, imprimir ambas páxinas de proba"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Impresora"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Ferramentas estándar"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7143,7 +7314,7 @@ msgstr ""
"\n"
"żFunciona correctamente?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7153,16 +7324,16 @@ msgstr ""
"Pode que lle leve un pouco ata que a impresora comece.\n"
"żFunciona correctamente?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7171,15 +7342,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7188,49 +7359,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7240,7 +7411,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7249,31 +7420,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Rato"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Desactivando a rede"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Rato"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Opcións da impresora"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7281,38 +7463,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7322,51 +7504,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7374,62 +7556,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Configurar a impresora"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Probando a conexión..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Configurar a rede"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "O monitor non está configurado"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7437,12 +7619,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Configurando a rede"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7452,34 +7634,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "żQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alto"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoico"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7494,12 +7676,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "żQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7513,69 +7695,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Selección da conexión da impresora"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "żQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Configurar impresora"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcións da impresora"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Configurar impresora"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "żDesexa configurar unha impresora?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7586,7 +7768,7 @@ msgstr ""
"Estas son as filas de impresión.\n"
"Pode engadir unha nova ou cambiar as que xa existen."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7596,139 +7778,143 @@ msgstr ""
"Estas son as filas de impresión.\n"
"Pode engadir unha nova ou cambiar as que xa existen."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Configurar a rede"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Saír"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "żDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "żDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Compartición da conexión á Internet"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Conexión da impresora"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Imprimindo páxina(s) de proba..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "żDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "żDesexa reiniciar a rede?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Lendo a base de datos de controladores de CUPS..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7812,24 +7998,60 @@ msgstr "Os contrasinais non coinciden"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Non se pode engadir unha partición ó RAID _formatado_ md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Non se pode escribir o ficheiro %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid fallou"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid fallou (żpode que non estean as raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non hai particións dabondo para o nivel RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Este nivel hai que usalo con coidado. Fai que o seu sistema sexa máis\n"
+"sinxelo de utilizar, pero é moi sensible: non debe usarse nunha máquina\n"
+"conectada a outras ou á Internet. Non hai contrasinais de acceso."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Con este nivel de seguridade, é posible usar este sistema coma servidor.\n"
+"A seguridade é agora alta dabondo para usar o sistema coma un servidor\n"
+"que acepta conexións de múltiples clientes."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Configuración da LAN"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcións"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7884,7 +8106,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7953,7 +8175,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8029,7 +8251,7 @@ msgstr ""
"como NFS e NIS. O servidor portmap ten que estar a se executar en máquinas\n"
"que actúan de servidores de protocolos que usan o mecanismo RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8128,7 +8350,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8251,6 +8473,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Centro de control"
@@ -8355,6 +8578,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalando o paquete %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Saia da sesión e use Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Entre de novo en %s para activar os cambios"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8363,6 +8595,160 @@ msgstr ""
"Non se pode ler a táboa de particións, está demasiado deteriorada :-(\n"
"Probarase a ir pońendo en branco as particións erróneas"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuración de Internet"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Bases de datos"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Bases de datos"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Engadir usuario"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Axuda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Non conectado"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Borrar"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Seleccione un ficheiro"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Engadir usuario"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Configurando..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "reconfigurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Insira un disquete na unidade %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Ningunha disqueteira dispońible"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8404,6 +8790,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Creando un disquete de auto-instalación"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8412,47 +8803,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "ĄNoraboa!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Instalar"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Engadir usuario"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8460,15 +8844,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8476,707 +8852,771 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Erro lendo o ficheiro %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Eliminar fila"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Sen contrasinal"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Conexión LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Selección da conexión da impresora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Escolla a disposición do seu teclado."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Escolla os paquetes que desexa instalar."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Interface de rede"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Nome de usuario"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Usar optimizacións de disco duro"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Usar optimizacións de disco duro"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+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:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Agarde"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Opcións do módulo:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
#, fuzzy
msgid ""
"\n"
"- User Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
#, fuzzy
msgid ""
"\n"
"- Other Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositivo do rato: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcións"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Escolla o porto serie onde está conectado o seu módem."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Probe o seu rato"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Conexión LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Selección da conexión da impresora"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurar a partir dun disquete"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Outros"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Instalar sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizado"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Axuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Estado:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Texto"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Seleccionar paquetes"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Vanse instalar os seguintes paquetes"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Gardar nun ficheiro"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9208,7 +9648,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9217,7 +9657,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9258,7 +9698,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9286,12 +9726,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -9308,7 +9753,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9348,7 +9793,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9359,7 +9804,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9372,7 +9817,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9416,104 +9861,524 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Fallou a instalación do %s. Ocorreu o erro seguinte:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Ferramentas de consola"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Centro de control"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "obrigatorio"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Rato"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impresora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nome de recurso compartido"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Axudante da configuración de rede"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autenticación"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Selección dos grupos de paquetes"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Agarde, por favor"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Saír da instalación"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Porto"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Pode escoller outras linguas que estarán dispońibles trala instalación"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuración de rede (%d adaptadores)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Borrar perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil para borrar:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novo perfil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nome de máquina: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Acceso á Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipo:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Pasarela:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interface:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Estado:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configurar o acceso á Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuración da LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Controlador"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interface"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocolo"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Estado"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configurar a rede de área local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Axudante..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Por favor, agarde... Aplicando a configuración"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Non conectado"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#, fuzzy
+msgid "Disconnect..."
+msgstr "Conectar..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuración da LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocolo de arrinque"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciado o arrincar"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Activar"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Activar"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuración da conexión á Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuración da conexión á Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipo de conexión: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parámetros"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Pasarela"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Tarxeta Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Cliente DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uso: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nome do módulo"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Tamańo"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creación do disquete de arrinque"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "defecto"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Erro do DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versión do núcleo"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Xeral"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Área de experto"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "argumentos opcionais para o mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Engadir un módulo"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forzar"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "se for necesario"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omitir os módulos scsi"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omitir os módulos raid"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Quitar un módulo"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Saída"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Crear o disco"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s non atopado"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "feito"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formatar disquete"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Preparando a instalación"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "restrinxir"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "restrinxir"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9522,123 +10387,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formatar particións"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Desinstalando os RPMs"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Punto de montaxe"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Elixa as particións que desexa formatar"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Office"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Abortar"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Impresora"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Instalar sistema"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Seleccione un ficheiro"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Impresora remota"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Mensaxe inicial"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Instalar"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Saír da instalación"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Compartición da conexión á Internet"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "A compartición da conexión á Internet está activada"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9650,31 +10514,31 @@ msgstr ""
"\n"
"żQue desexa facer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "desactivar"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Desactivando os servidores..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "A compartición da conexión á Internet está agora desactivada."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "A compartición da conexión á Internet está desactivada"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9686,19 +10550,19 @@ msgstr ""
"\n"
"żQue desexa facer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "activar"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Activando os servidores..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "A compartición da conexión á Internet está agora activada."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9714,21 +10578,21 @@ msgstr ""
"Nota: necesita un adaptador de rede dedicado para configurar unha rede de "
"área local (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (usando o módulo %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9736,11 +10600,11 @@ msgstr ""
"Non se detectou ningún adaptador de rede ethernet no seu sistema. Execute a "
"ferramenta de configuración de hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interface de rede"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9755,19 +10619,19 @@ msgstr ""
"\n"
"Vaise configurar a rede de área local usando ese adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Escolla o adaptador de rede que vai estar conectado á rede de área local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "O monitor non está configurado"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9777,17 +10641,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuración do estilo de arrinque"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuración de Internet"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9798,7 +10662,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9810,35 +10674,35 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP do servidor CUPS"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ĄAtopouse un conflicto potencial de enderezos da LAN na configuración actual "
"de %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "ĄDetectouse unha configuración de firewall!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9846,21 +10710,21 @@ msgstr ""
"ĄAtención! Detectouse unha configuración de firewall existente. Pode que "
"teńa que facer algún arranxo manual trala instalación."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configurando os scripts, instalando o software, iniciando os servidores..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas instalando o paquete %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -9870,7 +10734,7 @@ msgstr ""
"Agora pode compartir a conexión á Internet con outros ordenadores da rede de "
"área local, usando a configuración automática de rede (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
@@ -9879,23 +10743,23 @@ msgstr ""
"\n"
"żQue desexa facer?"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"A configuración da compartición da conexión á Internet xa foi feita.\n"
"Actualmente está activada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "A compartición da conexión á Internet está activada"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Conexión e configuración de Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9905,210 +10769,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuración de rede (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Borrar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil para borrar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nome de máquina: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acceso á Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Pasarela:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar o acceso á Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Controlador"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Estado"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar a rede de área local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Axudante..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor, agarde... Aplicando a configuración"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Non conectado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-#, fuzzy
-msgid "Disconnect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo de arrinque"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado o arrincar"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Activar"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Activar"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuración da conexión á Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuración da conexión á Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de conexión: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parámetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Pasarela"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Tarxeta Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Establecendo o nivel de seguridade"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Centro de control"
@@ -10117,94 +10777,130 @@ msgstr "Centro de control"
msgid "Choose the tool you want to use"
msgstr "Elixa a ferramenta que queira usar"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Canadiano (Québec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francia"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islandés"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "serie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Houbo un erro ó instalar os paquetes:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10249,7 +10945,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -10298,10 +10994,6 @@ msgstr "/_Opcións"
msgid "/Options/Test"
msgstr "/Opcións/Proba"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/A_xuda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Axuda/_Acerca..."
@@ -10366,7 +11058,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10375,80 +11067,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nome de dominio"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Bases de datos"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "dispositivo"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de impresión"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interesante"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatando"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Configuración"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Gardar como..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "non se atopou ningún serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "żEmular o terceiro botón?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Lendo a base de datos de controladores de CUPS..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Detectando os dispositivos..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10492,6 +11215,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10840,10 +11575,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia - Son"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilidades"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentación"
@@ -10949,10 +11680,6 @@ msgstr ""
"e para navegar na Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arquivado, emuladores, monitorizaxe"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Finanzas persoais"
@@ -11001,1241 +11728,153 @@ msgstr "Multimedia - Gravación de CD"
msgid "Scientific Workstation"
msgstr "Estación de traballo científica"
-#~ msgid "None"
-#~ msgstr "Ningún"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Agora pode indicar as opcións para o módulo %s."
-
-#~ msgid "Low"
-#~ msgstr "Baixo"
-
-#~ msgid "Medium"
-#~ msgstr "Medio"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Poucas melloras neste nivel de seguridade, a principal é que hai máis\n"
-#~ "avisos e comprobacións de seguridade."
-
-#~ msgid "mount failed"
-#~ msgstr "mount fallou"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linux xestiona a hora en GMT ou \"Hora do Meridiano de Greenwich\", e a\n"
-#~ "traslada á hora local dependendo da zona que vostede escolla."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Conectar á Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Desconectar de Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configurar a conexión de rede (LAN ou Internet)"
-
-#~ msgid "Active"
-#~ msgstr "Activar"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Unha impresora, de modelo \"%s\", foi detectada en "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Dispositivo de impresión local"
-
-#~ msgid "Printer Device"
-#~ msgstr "Dispositivo da impresora"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Escolla o tamańo que quere instalar"
-
-#~ msgid "Total size: "
-#~ msgstr "Tamańo total: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Agarde, por favor, "
-
-#~ msgid "Total time "
-#~ msgstr "Tempo total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "żUsar a configuración existente para X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "żA que dispositivo está conectada a súa impresora?\n"
-#~ "(advirta que /dev/lp0 é equivalente a LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Atención, o adaptador de rede xa está configurado. Vai ser reconfigurado."
-
-#~ msgid "New"
-#~ msgstr "Novo"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigüidade (%s), sexa máis preciso\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (por omisión %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "żA súa escolla? (por omisión %s, escriba 'none' para ningunha)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "non se pode abrir /etc/sysconfig/autologin para lectura: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "żDesexa reiniciar a rede?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "żConcorda?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Está a piques de se reiniciar o dispositivo de rede:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Está a piques de se reiniciar o dispositivo de rede %s. żConcorda?"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Escolla a lingua que prefira para a instalación e para o sistema."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Ten que aceptar os termos da licencia de enriba para continuar coa "
-#~ "instalación.\n"
-#~ "\n"
-#~ "\n"
-#~ "Por favor, prema \"Aceptar\" se concorda con eses termos.\n"
-#~ "\n"
-#~ "\n"
-#~ "Por favor, prema \"Rexeitar\" se non concorda con eses termos. A "
-#~ "instalación rematará sen modificar a súa configuración actual."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Escolla a disposición do teclado que corresponda ó seu na lista"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Se desexa ter outras linguas (á parte da que escolleu ó principio da\n"
-#~ "instalación) dispońibles trala instalación, escóllaas na lista de "
-#~ "enriba.\n"
-#~ "Se quere seleccionar todas, só ten que usar \"Todas\"."
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seleccione:\n"
-#~ "\n"
-#~ " - Personalizada: Se xa está familiarizado con GNU/Linux, pode entón "
-#~ "escoller\n"
-#~ " o uso principal da súa máquina. Mire embaixo para os detalles.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Experto: Isto supón que vostede manexa ben GNU/Linux e quere facer\n"
-#~ " unha instalación altamente personalizada. Do mesmo xeito que coa\n"
-#~ " clase de instalación \"Personalizada\", poderá escoller o uso do seu\n"
-#~ " sistema. Pero, por favor, ĄNON ESCOLLA ISTO A MENOS QUE SAIBA O QUE\n"
-#~ " ESTÁ A FACER!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Agora ten que definir o uso da súa máquina. As escollas son:\n"
-#~ "\n"
-#~ "* Estación de traballo: esta é a escolla ideal se pretende usar a súa "
-#~ "máquina principalmente para o uso cotián,\n"
-#~ " na oficina ou na casa.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Desenvolvemento: se pretende usar a súa máquina principalmente para o "
-#~ "desenvolvemento de software, esta é unha boa escolla.\n"
-#~ " Terá unha completa colección de software instalado para compilar, "
-#~ "depurar e formatar código fonte, ou\n"
-#~ " para crear paquetes de software.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servidor: se pretende usar esta máquina coma servidor, é a escolla "
-#~ "correcta. Sexa un servidor de ficheiros (NFS\n"
-#~ " ou SMB), un servidor de impresión (estilo Unix ou Microsoft Windows), "
-#~ "un servidor de autenticación (NIS), un servidor\n"
-#~ " de bases de datos, etc... Como tal, non espere que haxa cousas como "
-#~ "KDE, GNOME, etc. instaladas."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Agora pode selecciona-lo grupo de paquetes que desexa instalar\n"
-#~ "ou actualizar.\n"
-#~ "\n"
-#~ "DrakX comprobará se ten espacio dabondo para instalalos todos. Se non,\n"
-#~ "avisaralle diso. Se quere seguir aínda así, procederá coa instalación\n"
-#~ "de tódolos grupos seleccionados, pero deixará algún de menor interese.\n"
-#~ "Ó final da lista pode marca-la opción \"Selección individual de paquetes"
-#~ "\";\n"
-#~ "neste caso terá que percorrer máis de 1000 paquetes..."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Se ten tódolos CDs da lista superior, prema Aceptar. Se non ten\n"
-#~ "ningún deses CDs, prema Cancelar. Se só faltan algúns dos CDs,\n"
-#~ "desmárqueos, e prema Aceptar."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Acenda o seu módem e escolla o correcto."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Vostede pode agora introduci-las opcións de chamada. Se non está seguro "
-#~ "de\n"
-#~ "que escribir, a información correcta pode obtela do seu ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Introduza:\n"
-#~ "\n"
-#~ " - Dirección IP: se non a cońece, pregúntelle ó seu administrador de "
-#~ "rede\n"
-#~ "ou ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Máscara de Rede: \"255.255.255.0\" é normalmente unha boa elección. "
-#~ "Se\n"
-#~ "non está seguro, pregunte ó seu administrador de rede ou ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP automática: Se a súa rede usa o protocolo bootp ou dhcp, escolla\n"
-#~ "esta opción. Neste caso, non é necesario ningún valor en \"Dirección IP"
-#~ "\".\n"
-#~ "Se non está seguro, pregunte ó seu administrador de rede ou ISP.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Se a súa rede usa NIS, escolla \"Usar NIS\". Se non o sabe, pregúntelle "
-#~ "ó\n"
-#~ "seu administrador de rede."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Agora pode introducir as opcións de marcado. Se non está seguro do\n"
-#~ "que escribir, a información correcta pode obtela do seu ISP."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Se vai usar proxys, configúreos agora. Se non sabe se vai usar proxys,\n"
-#~ "pregunte ó seu administrador de rede ou ó seu ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Pode instalar paquetes de criptografía se xa configurou a súa conexión a\n"
-#~ "internet correctamente. Primeiro escolla un espello do que quere baixa-"
-#~ "los\n"
-#~ "paquetes, e entón escolla os paquetes que desexa instalar.\n"
-#~ "\n"
-#~ "Percátese de que ten que escolle-lo espello e os paquetes criptográficos\n"
-#~ "de acordo coa súa lexislación."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr ""
-#~ "Agora pode seleccionar a zona horaria dependendo do lugar onde viva."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Agora pode introduci-lo contrasinal do superusuario para o seu sistema\n"
-#~ "Mandrake Linux. O contrasinal deberá ser tecleado dúas veces para\n"
-#~ "comprobar que ámbolos dous son idénticos.\n"
-#~ "\n"
-#~ "\n"
-#~ "O superusuario (root) é o administrador do sistema, e é o único usuario\n"
-#~ "ó que se lle permete modifica-la configuración do sistema. ĄPor tanto,\n"
-#~ "escolla o contrasinal con coidado! O uso non autorizado da conta de root\n"
-#~ "pode ser extremadamente perigoso para a integridade do sistema e os seus\n"
-#~ "datos, e para os outros sistemas conectados a el. O contrasinal debería\n"
-#~ "ser unha mestura de caracteres alfanuméricos e de 8 caracteres de longo,\n"
-#~ "polo menos. NUNCA debe ser anotado. Non escolla un contrasinal longo\n"
-#~ "de máis ou complicado: ten que ser capaz de lembralo sen moito esforzo."
-
-# Non é realmente fuzzy, é só para revisala. :)
-#, fuzzy
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Pode agora crear unha ou varias contas de usuarios Ťnormaisť, como\n"
-#~ "contraposición á conta de usuario Ťprivilexiadoť, root. Vostede\n"
-#~ "pode crear unha ou máis contas para cada persoa á que vostede queira\n"
-#~ "permitirlle o uso do ordenador. Note que cada conta de usuario terá\n"
-#~ "as súas preferencias (ambiente gráfico, configuración dos programas, "
-#~ "etc.)\n"
-#~ "e o seu propio directorio (chamado \"home\"), no que se almacenan esas\n"
-#~ "preferencias.\n"
-#~ "\n"
-#~ "\n"
-#~ "Antes que nada, Ącree unha conta para vostede mesmo! Aínda se é a única\n"
-#~ "persoa que vai usa-la máquina, NON debe entrar como root para o uso\n"
-#~ "diario do sistema: é un risco de seguridade elevado. Facer que o\n"
-#~ "sistema fique totalmente inoperante, pode ser moitas veces causa dun\n"
-#~ "simple erro ó teclear.\n"
-#~ "\n"
-#~ "\n"
-#~ "Polo tanto, debe entrar no sistema usando a conta de usuario normal que\n"
-#~ "vai crear aquí, e entrar como root só para as tarefas de administración\n"
-#~ "que o precisen."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "As opcións principais do LILO e do grub son:\n"
-#~ " - Dispositivo de arrinque: Establece o nome do dispositivo (p.ex unha\n"
-#~ "partición dun disco duro) que contén o sector de arrinque. A menos que\n"
-#~ "saiba específicamente que é outro, escolla \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retardo antes de arrinca-la imaxe por omisión: Indica o número de\n"
-#~ "décimas de segundo que agardará o cargador de inicio antes de arrincar a\n"
-#~ "primeira imaxe. Isto é útil nos sistemas que arrincan inmediatamente do\n"
-#~ "disco duro tras activa-lo teclado. O boot loader non agarda se o \"retardo"
-#~ "\"\n"
-#~ "é cero ou non se indica.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Modo de vídeo: Indica o modo de texto VGA que será utilizado ó\n"
-#~ "arrincar. Os seguintes valores están dispońibles:\n"
-#~ " * normal: escoller modo de texto normal 80x25.\n"
-#~ " * <número>: usa-lo modo de texto correspondente."
-
-#, fuzzy
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "LILO (O LInux LOader) e Grub son cargadores de arrinque: poden arrincar\n"
-#~ "Linux ou outro sistema operativo presente no seu ordenador.\n"
-#~ "Normalmente, estes outros sitemas son detectados correctamente e "
-#~ "instalados.\n"
-#~ "Se non é o caso, pode engadir unha entrada a man nesta pantalla. Sexa\n"
-#~ "coidadoso na escolla dos parámetros correctos.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tamén pode non querer dar acceso a eses outros sitemas operativos a "
-#~ "calquera,\n"
-#~ "poidendo borrar as entradas correspondentes. Pero neste caso, precisará\n"
-#~ "un disquete de arrinque para poder usalos."
-
-#, fuzzy
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "As opcións principais do LILO e do grub son:\n"
-#~ " - Dispositivo de arrinque: Establece o nome do dispositivo (p.ex unha\n"
-#~ "partición dun disco duro) que contén o sector de arrinque. A menos que\n"
-#~ "saiba específicamente que é outro, escolla \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retardo antes de arrinca-la imaxe por omisión: Indica o número de\n"
-#~ "décimas de segundo que agardará o cargador de inicio antes de arrincar a\n"
-#~ "primeira imaxe. Isto é útil nos sistemas que arrincan inmediatamente do\n"
-#~ "disco duro tras activa-lo teclado. O boot loader non agarda se o \"retardo"
-#~ "\"\n"
-#~ "é cero ou non se indica.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Modo de vídeo: Indica o modo de texto VGA que será utilizado ó\n"
-#~ "arrincar. Os seguintes valores están dispońibles:\n"
-#~ " * normal: escoller modo de texto normal 80x25.\n"
-#~ " * <número>: usa-lo modo de texto correspondente."
+#~ msgid "Choose options for server"
+#~ msgstr "Escolla as opcións para o servidor"
-#, fuzzy
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Agora é o momento de configura-lo sistema de fiestras X, que é\n"
-#~ "o centro da interface gráfica de Linux. Para iso necesita configura-\n"
-#~ "-la súa tarxeta de vídeo e o seu monitor. A maioría deses pasos están\n"
-#~ "automatizados, así que probablemente a súa tarea limitarase a verificar\n"
-#~ "o que se fixo e aceptar a configuración proposta :-)\n"
-#~ "\n"
-#~ "\n"
-#~ "Cando a configuración estea rematada, lanzarase o servidor X\n"
-#~ "(a menos que vostede lle pida a DrakX que non), de xeito que\n"
-#~ "poida comprobar se todo está ben e corresponde ó que desexa.\n"
-#~ "Se non, pode voltar atrás e troca-la configuración; tantas\n"
-#~ "veces como sexa necesario."
+#~ msgid "Monitor not configured"
+#~ msgstr "O monitor non está configurado"
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Se algo vai mal coa configuración de X, use estas opcións para "
-#~ "configurar\n"
-#~ "correctamente o sistema X Window."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "A tarxeta gráfica aínda non está configurada"
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Se prefire usar un login gráfico, escolla \"Si\". Doutro xeito,\n"
-#~ "seleccione \"Non\"."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Resolucións aínda non escollidas"
#~ msgid ""
-#~ "Your system is going to reboot.\n"
#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "O sistema vaise reiniciar.\n"
#~ "\n"
-#~ "Despois de reiniciar, o seu novo sistema Mandrake Linux cargarase\n"
-#~ "automaticamente. Se vostede quere iniciar outro sistema operativo que xa\n"
-#~ "exista, lea as instruccións adicionais."
+#~ "probe a cambiar algúns parámetros"
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Checo (Programadores)"
+#~ msgid "An error occurred:"
+#~ msgstr "Ocorreu un erro:"
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Eslovaco (Programadores)"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Saíndo en %d segundos"
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Nome do perfil para crear:"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "żÉ esta a configuración correcta?"
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Escribir /etc/fstab"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Ocorreu un erro, probe a cambiar algúns parámetros"
-#~ msgid "Format all"
-#~ msgstr "Formatar todas"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servidor XFree86: %s"
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Logo de formatar tódalas particións,"
+#~ msgid "Show all"
+#~ msgstr "Ver todo"
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "perderanse os datos nesas particións"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Preparando a configuración de X-Window"
-#~ msgid "Reload"
-#~ msgstr "Recargar"
+#~ msgid "What do you want to do?"
+#~ msgstr "żQué desexa facer?"
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "żQuere realmente xerar un disquete de instalación para replicar linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Configuración de ADSL"
+#~ msgid "Change Monitor"
+#~ msgstr "Mudar o monitor"
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Cun servidor CUPS remoto, non terá que configurar aquí\n"
-#~ "ningunha impresora, xa que serán detectadas automaticamente,\n"
-#~ "a menos que teńa un servidor nunha rede diferente. Neste\n"
-#~ "caso, terá que indicar o enderezo IP do servidor de CUPS\n"
-#~ "e opcionalmente o número de porto."
+#~ msgid "Change Graphics card"
+#~ msgstr "Mudar a tarxeta gráfica"
-#~ msgid "Remote queue"
-#~ msgstr "Fila de impresión remota"
+#~ msgid "Change Server options"
+#~ msgstr "Mudar as opcións do servidor"
-#~ msgid "Profile "
-#~ msgstr "Perfil "
+#~ msgid "Change Resolution"
+#~ msgstr "Mudar a resolución"
-#~ msgid "NetWare"
-#~ msgstr "Impresora Netware"
+#~ msgid "Show information"
+#~ msgstr "Mostrar información"
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Non foi posible interpretar o contido do ficheiro de configuración."
+#~ msgid "Test again"
+#~ msgstr "Probar de novo"
-#~ msgid "Unrecognized config file"
-#~ msgstr "Ficheiro de configuración non recońecido"
+#~ msgid "Setting security level"
+#~ msgstr "Establecendo o nivel de seguridade"
-#~ msgid "Adapter"
-#~ msgstr "Adaptador"
+#~ msgid "Graphics card"
+#~ msgstr "Tarxeta gráfica"
-#~ msgid "Disable network"
-#~ msgstr "Desactivar a rede"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Conexión DSL (ou ADSL)"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Pode especificar directamente o URI para acceder á impresora co CUPS."
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccione unha tarxeta gráfica"
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Si, imprimir unha páxina ASCII de proba"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Aviso: probar esta tarxeta gráfica pode colgar o ordenador"
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Si, imprimir unha páxina PostScript de proba"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA estándar, 640x480 a 60 Hz"
-#~ msgid "Paper Size"
-#~ msgstr "Tamańo do papel"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 56 Hz"
-#~ msgid "Eject page after job?"
-#~ msgstr "żExtraer a páxina trala impresión?"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (no 800x600)"
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opcións do controlador Uniprint"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-#~ msgid "Color depth options"
-#~ msgstr "Opcións da profundidade de cor"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA estendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#~ msgid "Print text as PostScript?"
-#~ msgstr "żImprimir texto como PostScript?"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA non-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "żCorrixir o efecto escaleira?"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Número de páxinas por páxina de saída"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Monitor multi-frecuencia soportando 1280x1024 a 60 Hz"
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Marxes dereita/esquerda en puntos (1/72 dunha polgada)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Monitor multi-frecuencia soportando 1280x1024 a 74 Hz"
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Marxes superior/inferior en puntos (1/72 dunha polgada)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Monitor multi-frecuencia soportando 1280x1024 a 76 Hz"
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Opcións extra do Ghostscript"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor soportando 1600x1200 a 70 Hz"
-#~ msgid "Extra Text options"
-#~ msgstr "Opcións extra para texto"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inverter a orde das páxinas"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Seleccionar a conexión á impresora remota"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Cada impresora necesita un nome (por exemplo lp).\n"
-#~ "Pódense definir outros parámetros como a descrición da\n"
-#~ "impresora ou a súa localización. żQue nome quere usar para\n"
-#~ "esta impresora e como está conectada?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Cada fila de impresión (á que se dirixen os traballos de impresión)\n"
-#~ "necesita un nome (frecuentemente lp) e un directorio spool asociado\n"
-#~ "a el. żQué nome e directorio quere que se utilicen para esta fila e como\n"
-#~ "está conectada a impresora?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nome da fila"
-
-#~ msgid "Spool directory"
-#~ msgstr "Directorio spool"
-
-#~ msgid "Disable"
-#~ msgstr "Desactivar"
-
-#~ msgid "Enable"
-#~ msgstr "Activar"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Para ter un sistema máis seguro, debería seleccionar \"Usar ficheiro "
-#~ "shadow\"\n"
-#~ "e \"Usar contrasinais MD5\"."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor soportando 1600x1200 a 76 Hz"
#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
-#~ "Se a súa rede usa NIS, escolla \"Usar NIS\". Se non o sabe, pregúntelle "
-#~ "ó\n"
-#~ "seu administrador de rede."
+#~ "O tamańo total dos grupos que seleccionou é aproximadamente %d MB.\n"
-#~ msgid "yellow pages"
-#~ msgstr "páxinas amarelas (yp)"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Dns 1 do provedor"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Dns 2 do provedor"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "żComo quere conectar á Internet?"
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Configuración do estilo de arrinque"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#, fuzzy
#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Vostede pode agora escoller algunhas opcións diversas para o sistema.\n"
-#~ "\n"
-#~ " - Usar optimizacións de disco duro: esta opción pode mellora-lo "
-#~ "rendemento\n"
-#~ " do disco duro, pero é só para usuarios avanzados: algúns chipsets que "
-#~ "non\n"
-#~ " funcionan ben poden estraga-los seus datos. O kernel ten unha lista "
-#~ "negra\n"
-#~ " de unidades e chipsets, pero se quere evitar sorpresas "
-#~ "desagradables,\n"
-#~ " deixe esta opción desactivada.\n"
-#~ "\n"
-#~ " - Escoller un nivel de seguridade: pode escoller un nivel de "
-#~ "seguridade\n"
-#~ " para o seu sistema. Vaia ó manual para información completa. "
-#~ "Basicamente:\n"
-#~ " se non sabe cal, escolla \"Medio\"; se quere realmente ter unha "
-#~ "máquina\n"
-#~ " segura, escolla \"Paranoico\", pero teńa coidado: ĄNESTE NIVEL, ROOT "
-#~ "NON\n"
-#~ " PODE FACER LOGIN NA CONSOLA! Se quere ser root, terá que facer login "
-#~ "como\n"
-#~ " usuario e entón usar \"su\". Máis xeralmente, non agarde usa-la súa\n"
-#~ " máquina para outra cousa que non sexa un servidor. Xa foi avisado.\n"
+#~ "Se quere instalar menos deste tamańo,\n"
+#~ "seleccione a porcentaxe de paquetes que desexe.\n"
#~ "\n"
-#~ " - Tamańo exacto da memoria se se necesita: por desgracia, no mundo "
-#~ "actual\n"
-#~ " de PCs, non hai un método estándar para preguntarlle á BIOS acerca "
-#~ "da\n"
-#~ " cantidade de RAM no seu ordenador. Por iso, Linux pode non ser capaz "
-#~ "de\n"
-#~ " detectar correctamente a cantidade de RAM. Se é o caso, indique a\n"
-#~ " cantidade correcta. Nota: unha diferencia de 2 ou 4 MB é normal.\n"
-#~ "\n"
-#~ " - Automonta-las unidades extraíbles: Se vostede prefere non montar\n"
-#~ " manualmente as unidades extraíbles (CD-ROM, disquete, Zip), "
-#~ "escribindo\n"
-#~ " \"mount\" e \"umount\", escolla esta opción.\n"
-#~ "\n"
-#~ " - Activar Bloq Num ó iniciar: Se quere que Bloq Num estea activado\n"
-#~ " tralo arrinque, escolla esta opción (Nota: Bloq Num pode ou non pode\n"
-#~ " funcionar nas X)."
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Varios"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Dependencias automáticas"
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "Tamańo seleccionado %d%s"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Preguntas varias"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Non se pode usar o supermount no nivel de seguridade alto"
-
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "atención: NESTE NIVEL DE SEGURIDADE, A AUTENTICACIÓN DO ROOT NA CONSOLA\n"
-#~ "NON ESTÁ PERMITIDA! Se quere ser root, terá que conectar coma\n"
-#~ "usuario e logo usar o \"su\". De xeito máis xeral, non agarde que a\n"
-#~ "máquina actúe doutro modo distinto a un servidor.\n"
-#~ "Xa foi avisado."
+#~ "Unha porcentaxe baixa instalará só os paquetes máis importantes;\n"
+#~ "unha porcentaxe dun 100%% instalará tódolos paquetes seleccionados."
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
-#~ msgstr ""
-#~ "Teńa coidado, ter o bloqueo numérico activado causa que moitas teclas\n"
-#~ "dean díxitos en vez de letras normais (p.ex: premer `p' dá un `6')"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Desculpe, a configuración do correo aínda non está implementada. Sexa "
-#~ "paciente."
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Benvido ó axudante da configuración de rede.\n"
-#~ "żQue compońentes desexa configurar?\n"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Acceso a Internet/Rede"
-
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Agora que a conexión á Internet está configurada,\n"
-#~ "o seu ordenador pode ser configurado para compartila.\n"
-#~ "Nota: Necesita un adaptador de rede dedicado para configurar unha rede de "
-#~ "área local (LAN).\n"
+#~ "Ten espacio no seu disco para unicamente o %d%% destes paquetes.\n"
#~ "\n"
-#~ "żDesexa configurar a compartición da conexión á Internet?\n"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr ""
-#~ "Este script de inicialización tenta cargar os módulos para o rato usb."
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Configuración do LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Creación dun disquete de arrinque"
-
-#~ msgid "Choice"
-#~ msgstr "Escolla"
-
-#~ msgid "Actions"
-#~ msgstr "Accións"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Aplicacións científicas"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Ficheiro/Impresión/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "DNS/DHCP "
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "żQue cargador(es) de arrinque quere usar?"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Zona horaria"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Disquete de auto-instalación"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Usar diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Personalizada"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "żEstá seguro de que é un experto? \n"
-#~ "Permitiráselle facer cousas máis potentes pero perigosas.\n"
-#~ "Vánselle preguntar cuestións como: ``żUsar ficheiro shadow para os "
-#~ "contrasinais?'', żestá preparado para responder a este tipo de cuestións?"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "żCal é o uso do seu sistema?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Escolla o tamańo que quere instalar"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Usar ficheiro shadow"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Usar contrasinais MD5"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(pode provocar corrupción dos datos)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Activar Bloq Num ó iniciar"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Confirmar Contrasinal"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Atopouse unha tarxeta RDSI:\n"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "żDesexa que se tente atopar un módem?"
-
-#~ msgid "Other countries"
-#~ msgstr "Outros países"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "żEn que país se atopa vostede?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Módem alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "Módem ECI"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr "Se o seu módem adsl é Alcatel, escolla Alcatel. Doutro xeito, ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "non usar pppoe"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Desactivar a Conexión a Internet"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Configurar a conexión a Internet / Configurar a Rede local"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "A rede local xa foi configurada.\n"
-#~ "Desexa:"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (importante)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (moi bo)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (bo)"
-
-#~ msgid "using module"
-#~ msgstr "usando un módulo"
-
-#~ msgid "Search"
-#~ msgstr "Buscar"
-
-#~ msgid "Package"
-#~ msgstr "Paquete"
-
-#~ msgid "Tree"
-#~ msgstr "Árbore"
-
-#~ msgid "Sort by"
-#~ msgstr "Ordenar por"
-
-#~ msgid "Category"
-#~ msgstr "Categoría"
-
-#~ msgid "Installed packages"
-#~ msgstr "Paquetes instalados"
-
-#~ msgid "Available packages"
-#~ msgstr "Paquetes dispońibles"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Amosar só as pólas"
-
-#~ msgid "Expand all"
-#~ msgstr "Expandir todos"
-
-#~ msgid "Collapse all"
-#~ msgstr "Pechar todos"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Engadir localización dos paquetes"
-
-#~ msgid "Update location"
-#~ msgstr "Actualizar lugar"
-
-#~ msgid "Configuration: Add Location"
-#~ msgstr "Configuración: Engadir Lugar"
-
-#~ msgid "Find Package"
-#~ msgstr "Buscar Paquete"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Buscar paquete que conteńa un ficheiro"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Trocar entre Instalado e Dispońible"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Comprobando dependencias"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Os seguintes paquetes van ser desinstalados"
-
-#~ msgid "Regexp"
-#~ msgstr "Expr.Reg"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Que paquetes buscar"
-
-#~ msgid "No match"
-#~ msgstr "Sen coincidencias"
-
-#~ msgid "No more match"
-#~ msgstr "Non hai máis coincidencias"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake está en modo ``baixa memoria''.\n"
-#~ "Vaise reiniciar rpmdrake para permitir a busca de ficheiros"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "żQue ficheiro está a buscar?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "żQue está a buscar?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Dea un nome (ex: `extra', `commercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Directorio"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Non hai cdrom dispońible (nada en /mnt/cdrom)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL do directorio que contén os RPMs"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Para FTP e HTTP, ten que indicar o lugar de hdlist\n"
-#~ "Ten que ser relativo á URL anterior"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Por favor, envíe a seguinte información"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s xa está en uso"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Actualizando a base de RPMs"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Vaise borra-la entrada %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Buscando as pólas"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "A busca das pólas leva un tempo"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Manipulación de Gráficos"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, bibliotecas, ferramentas"
-
-#~ msgid "Development applications"
-#~ msgstr "Aplicacións de desenvolvemento"
-
-#~ msgid "Sciences"
-#~ msgstr "Ciencias"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "Programas de Chat (IRC ou mensaxería instantánea) como o xchat, licq, "
-#~ "gaim e ferramentas de transferencia de ficheiros"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Facilidades de Comunicación"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Development other"
-#~ msgstr "Outros de desenvolvemento"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Clientes e servidores de Bases de Datos (mysql e postgresql)"
+#~ "Se desexa instalar menos ca isto,\n"
+#~ "seleccione a porcentaxe de paquetes que quere instalar.\n"
+#~ "Unha porcentaxe baixa instalará só os paquetes máis importantes;\n"
+#~ "unha porcentaxe de %d%% instalará tódolos paquetes posibles."
-#~ msgid "Development C/C++"
-#~ msgstr "Desenvolvemento en C/C++"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Vostede poderá escollelos máis especificamente na seguinte etapa."
-#~ msgid "Czech"
-#~ msgstr "Checo"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Porcentaxe de paquetes a instalar"
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "żA qué porto serie está conectado o rato?"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Escola o nivel de seguridade"
diff --git a/perl-install/share/po/help-fr.pot b/perl-install/share/po/help-fr.pot
index ee17d2e5b..36b1dc8a1 100644
--- a/perl-install/share/po/help-fr.pot
+++ b/perl-install/share/po/help-fr.pot
@@ -2,29 +2,6 @@
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (the LInux LOader) and GRUB are boot loaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
@@ -254,17 +231,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Choose the hard drive you want to erase to install your new Mandrake Linux\n"
-"partition. Be careful, all data present on it will be lost and will not be\n"
-"recoverable!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
"own preferences, his own files and so on. You can read the ``User Guide''\n"
"to learn more. But unlike \"root\", which is the administrator, the users\n"
@@ -341,72 +307,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot is a boot loader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful as\n"
-"to choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message that is displayed before the boot\n"
-"prompt.\n"
-"\n"
-" * Boot Device: indicate where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you setup a bootstrap partition earlier to\n"
-"hold this information.\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux.\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected.\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose \"C\" for CD\n"
-"at the first boot prompt.\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose \"N\" for\n"
-"Open Firmware at the first boot prompt.\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
@@ -431,15 +331,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under GNU/Linux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
"your installed hardware, you may - or not, see the following entries:\n"
"\n"
@@ -703,69 +594,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"More than one Microsoft Windows partition has been detected on your hard\n"
-"drive. Please choose the one you want resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"The first time you try the X configuration, you may not be very satisfied\n"
"with its display (screen is too small, shifted left or right...). Hence,\n"
"even if X starts up correctly, DrakX then asks you if the configuration\n"
@@ -1013,13 +841,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Please be patient. This operation can take several minutes."
-msgstr ""
-"Please be patient. This operation can take several minutes."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
"local time according to the time zone you selected. It is however possible\n"
"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
@@ -1148,88 +969,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installs. If you make any changes, you must at least define a root\n"
-"partition (Ť / ť). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for Ť /home ť\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Click on Ť OK ť if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on Ť OK ť, you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on Ť Cancel ť to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
@@ -1433,21 +1172,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose Ť First sector of drive\n"
-"(MBR) ť."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"OK\" to reboot the system. You can start\n"
"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
@@ -1568,230 +1292,3 @@ msgstr ""
"site du fabricant (si vous avez un accčs ŕ Internet) ou ŕ partir des menus\n"
"de Microsoft Windows (si vous utilisiez ce peripherique avec Windows)."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OS's, the entry consists only of a label and the root partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option.\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension.\n"
-"\n"
-" * Root: the Ť root ť device or \"/\" for your Linux installation.\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" \n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation.\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used.\n"
-"\n"
-" * Read-write: normally the Ť root ť partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes \"live\".\n"
-"Here, you can override this option.\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in \"novideo\" mode, with\n"
-"native frame buffer support.\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a \"*\", if you press [Tab] to see the boot\n"
-"selections."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy.\n"
-"Useful for later partition-table recovery if necessary. It is strongly\n"
-"recommended to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you\n"
-"can try to recover it using this option. Please be careful and remember\n"
-"that it can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your\n"
-"initial partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force\n"
-"users to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
-"your hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on\n"
-"partitions (type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
-"\n"
-" * Ctrl-d to delete a partition;\n"
-"\n"
-" * Ctrl-m to set the mount point.\n"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"At this point, you need to choose what partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have been already\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second, \"sda\" for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * Ť Clear all ť: this option deletes all partitions on the selected hard\n"
-"drive.\n"
-"\n"
-" * Ť Auto allocate ť: this option allows you to automatically create Ext2\n"
-"and swap partitions in free space of your hard drive.\n"
-"\n"
-" * Ť Rescue partition table ť: if your partition table is damaged, you can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail.\n"
-"\n"
-" * Ť Undo ť: use this option to cancel your changes.\n"
-"\n"
-" * Ť Reload ť: you can use this option if you wish to undo all changes and\n"
-"load your initial partitions table.\n"
-"\n"
-" * Ť Assistant ť: use this option if you wish to use a assistant to\n"
-"partition your hard drive. This is recommended if you do not have a good\n"
-"knowledge of partitioning.\n"
-"\n"
-" * Ť Restore from floppy ť: this option will allow you to restore a\n"
-"previously saved partition table from floppy disk.\n"
-"\n"
-" * Ť Save to floppy ť: saves the partition table to a floppy. Useful for\n"
-"later partition-table recovery if necessary. It is strongly recommended to\n"
-"perform this step.\n"
-"\n"
-" * Ť Done ť: when you have finished partitioning your hard drive, this will\n"
-"save your changes back to disc.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
-"\n"
-" * Ctrl-d to delete a partition;\n"
-"\n"
-" * Ctrl-m to set the mount point.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"\"bootstrap\" partition of at least 1MB which will be used by the yaboot\n"
-"boot loader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-
diff --git a/perl-install/share/po/help-it.pot b/perl-install/share/po/help-it.pot
index 6fd5a0be5..10039201e 100644
--- a/perl-install/share/po/help-it.pot
+++ b/perl-install/share/po/help-it.pot
@@ -346,72 +346,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot is a boot loader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful as\n"
-"to choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message that is displayed before the boot\n"
-"prompt.\n"
-"\n"
-" * Boot Device: indicate where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you setup a bootstrap partition earlier to\n"
-"hold this information.\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux.\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected.\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose \"C\" for CD\n"
-"at the first boot prompt.\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose \"N\" for\n"
-"Open Firmware at the first boot prompt.\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-msgid ""
"At this point, it is time to choose the security level desired for the\n"
"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
"the data stored in it is crucial, the higher the security level should be.\n"
@@ -1682,100 +1616,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OS's, the entry consists only of a label and the root partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option.\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension.\n"
-"\n"
-" * Root: the \"root\" device or \"/\" for your Linux installation.\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation.\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used.\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes \"live\".\n"
-"Here, you can override this option.\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in \"novideo\" mode, with\n"
-"native frame buffer support.\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a \"*\", if you press [Tab] to see the boot\n"
-"selections."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
"defined, either from a previous installation of GNU/Linux or from another\n"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 20347847b..655bd0053 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -1,12 +1,13 @@
# KTranslator Generated File
# Copyright (c) 1999 MandrakeSoft
# Vladimir Vuksan <vuksan@veus.hr>, 1999.
-# Vlatko Kosturjak <kost@iname.com>, 2001.
+# Vlatko Kosturjak <kost@iname.com>, 2001, 2002.
+# Dejan Dakic <ddakic@foi.hr>, 2002.
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 06:59CET\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-03-22 05:58CET\n"
"Last-Translator: Vlatko Kosturjak <kost@iname.com>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
"MIME-Version: 1.0\n"
@@ -14,24 +15,55 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Podesi sve zaslone nezavisno"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama proširenje"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Podesi samo karticu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ili više"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Odaberite X poslužitelj"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X poslužitelj"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Više-zaslonska postava"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,41 +71,44 @@ msgstr ""
"Vaš sustav podržava postavu sa više zaslona.\n"
"Što želite napraviti?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafička kartica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Odaberite količinu memorije na grafičkoj kartici"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Odaberite grafičku karticu"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree postavke"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Odaberite X poslužitelj"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Koju konfiguraciju XFree-a želite imati?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X poslužitelj"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Podesi sve zaslone nezavisno"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Odaberite X upravljački program"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Koristi Xinerama proširenje"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X upravljački program"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Podesi samo karticu \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Koju konfiguraciju XFree-a želite imati?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s sa 3D hardware akceleracijom"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,33 +117,17 @@ msgstr ""
"Vaša video kartica može imati 3D ubrzanje samo sa XFree %s.\n"
"Vaša kartica je podržana od XFree %s koji možda ima bolju podršku u 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaša kartica može imati 3D hardware-sku akceleraciju sa XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s sa 3D hardware akceleracijom"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Vaša kartica može imati 3D hadware akceleraciju podržanu od XFree %s,\n"
-"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODRŠKA I MOŽE ZAMRZNUTI VAŠE "
-"RAČUNALO."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EXPERIMENTALNOM 3D hardware akceleracijom"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -120,31 +139,59 @@ msgstr ""
"RAČUNALO.Vaša kartica je podržana od XFree %s koja može imati bolju podršku "
"u 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Vaša kartica može imati 3D hadware akceleraciju podržanu od XFree %s,\n"
+"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODRŠKA I MOŽE ZAMRZNUTI VAŠE "
+"RAČUNALO."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalacijski zaslonski upravljački program)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree postavke"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Odaberite količinu memorije na grafičkoj kartici"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Postavke poslužitelja"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Zadrži promjene?\n"
+"Trenutna postava je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Odaberite monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Prilagođeno"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generički"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Vrati"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,512 +215,327 @@ msgstr ""
"veći od mogućnosti vašeg monitora jer možete oštetiti vaš monitor.\n"
" Ukoliko ste u nedoumici, izaberite konzervativne postavke."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontalna vrijednost osvježavanja"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikalna vrijednost osvježavanja"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Niste podesili monitor"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Niste podesili grafičku karticu"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Niste podesili rezoluciju"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Da li želite iskušati postavu ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje grafičke kartice može zamrzunti vaše računalo"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Iskušaj postavu"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 boja (8 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"provjerite parametre koje ste unjeli"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tisuća boja (15 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Pojavila se greška:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tisuća boja (16 bita)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Zatvaram nakon %d sekundi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milijuna boja (24 bita)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravno?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milijarde boja (32 bita)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Pojavila se greška, provjerite parametre koje ste unjeli"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolucije"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Odaberite rezoluciju i color depth"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafička kartica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 poslužitelj: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Više"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Odustani"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "U redu"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Pokaži sve"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Da li želite iskušati postavu ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolucije"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Iskušaj postavu"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Raspored tipkovnice: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Vrsta miša: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Uređaj miša: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontalna Sinkronizacija Monitora: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikalno Osvježenje Monitora: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafička kartica: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikacija grafičke kartice: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafička memorija: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dubina boje: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolucija: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 poslužitelj: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 upravljački program: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripremam X-Window postavu"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Što želite napraviti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Promijeni monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Promijeni grafičku karticu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Promijeni postavke poslužitelja"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Promijeni rezoluciju"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Prikaži informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Iskušaj ponovo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Završi"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zadrži promjene?\n"
-"Trenutna postava je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X kod pokretanja sustava"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mogu podesiti da se X podigne automatski kod podizanja sustava.\n"
"Da li želite da se X automatski pokreće?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisuća boja (15 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisuća boja (16 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milijuna boja (24 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde boja (32 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ili više"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardni VGA, 640x480 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibilan, 1024x768 na 87 Hz s preplitanjem (bez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 na 87 Hz s preplitanjem, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Prošireni Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Bez preplitanja SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Visoko frekvencijski SVGA, 1024x768 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor koji ide do 1600x1200 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor koji ide do 1600x1200 na 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvi sektor boot particije"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor pogona (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO instalacija"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite instalirati bootloader?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub instalacija"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO sa grafičkim menijem"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Podizanje sa DOS/Windows-a (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Glavne postavke bootloadera"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Koristiti Bootloader"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot uređaj"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne radi na starim BIOSima)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Zbijeno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "zbijeno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video mod"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Odgoda prije bootiranja uobičajenog imagea"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Lozinka"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Lozinka (provjera)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Ograničene opcije na komandnoj liniji"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ograniči"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Očisti /tmp na svakom podizanju"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veličina RAMa (pronađeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Omogući više obrazaca"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Upišite veličinu RAM u Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Postavka ``Ograničene opcije na komandnoj liniji'' nema svrhe ako ne unesete "
"lozinku"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Molim pokušajte ponovo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Lozinke se ne podudaraju"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init poruka"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Pauza Otvorenog Firmware-a"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Vrijeme čekanja podizanja kernela"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Omogući CD podizanje?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Omogući podizanje?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Uobičajeni OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -687,83 +549,83 @@ msgstr ""
"\n"
"Sa kojeg diska želite podizati?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ovo su trenutni zapisi.\n"
"Možete dodati još koji ili urediti postojeći."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gotov"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Promjeni"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Kakvu vrstu zapisa želite dodati"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Drugi OS (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Drugi OS (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Drugi OS (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Slika (image)"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Dodaj na kraj"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Čitaj-piši"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tablica"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Oznaka"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Uobičajeno"
@@ -795,53 +657,77 @@ msgstr "Morate odrediti root particiju"
msgid "This label is already used"
msgstr "Ova oznaka već postoji"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronašao sam %s %s međusklopova"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Da li imate još koji?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Da li imate %s međusklopova?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Pokaži info o hardveru"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram upravljački program %s za karticu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, 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 ""
+"Sada možete unijeti opcije za modul %s.\n"
+"Primjetite da svaka adresa treba biti unešena sa prefiksom 0x kao '0x123'"
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sada možete unijeti postavke za modul %s.\n"
+"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
+"Na primjer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Postavke modula:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s upravljački program želite isprobati?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -860,39 +746,15 @@ msgstr ""
"računalo za informacije koje treba? Ponekad, isprobavanje može zamrznuti\n"
"vaše računlo, ali ne bi trebalo izazvati nikakvu štetu."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Auto. ispitaj"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Odredi postavke"
-#: ../../any.pm_.c:725
-#, 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 ""
-"Sada možete unijeti opcije za modul %s.\n"
-"Primjetite da svaka adresa treba biti unešena sa prefiksom 0x kao '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sada možete unijeti postavke za modul %s.\n"
-"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Postavke modula:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -901,49 +763,54 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Da li želite pokušati ponovo sa drugim parametrima?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "pristup administracijskim datotekama"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(već postoji %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Lozinka je prejednostavna"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisničko ime"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime može sadržavati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ovaj korisnik već postoji"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ovaj korisnik već postoji"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -952,32 +819,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Puno ime"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Ljuska"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Auto-prijava"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -985,56 +852,56 @@ msgstr ""
"Mogu podesiti da se vaše računalo automatski prijavi kao jedan korisnik.\n"
"Da li želite koristiti tu pogodnost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Izaberite uobičajenog korisnika:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Izaberite prozorski upravitelj koji želite pokrenuti:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Molim izaberite jezik koji želite koristiti."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+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 "Možete izabrati druge jezike koji će biti dostupni nakon instalacije"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Sve"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Prilagođeno"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Nema dijeljenja"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba instalirati. Da li ga želite instalirati?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Možete izvesti koristeći NFS ili Sambu. Koji od njih želite"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nužni paket %s nedostaje"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
@@ -1048,31 +915,11 @@ msgstr ""
"\n"
"\"Proizvoljno\" će omogućiti dozvoljavanje po korisniku.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Odustani"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1080,31 +927,31 @@ msgstr ""
"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
"Možete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Dobrodošli Crackeri"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standardno"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Viši"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidan"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1115,7 +962,7 @@ msgstr ""
"ali vrlo osjetljiv: ne smije biti korišten za računala koja su povezana u "
"mreži ili na Internet. Naime, nema lozinke za pristup."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,7 +970,7 @@ msgstr ""
"Lozinke su sada uključene međutim još ne preporučam korištenje ovog računala "
"u mrežnom okolišu."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,7 +978,7 @@ msgstr ""
"Ovo je standardna sigurnosna razina preporučena za računala koja će biti "
"korištena za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1139,13 +986,14 @@ msgstr ""
"Već postoje neka ograničenja i više automatskih provjera se pokreće svake "
"noći."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Sa ovom sigurnosnom razinom, korištenje ovog sustava kao poslužitelj postaje "
"moguće.\n"
@@ -1153,39 +1001,39 @@ msgstr ""
"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je vaše računalo "
"samo klijent na Internetu, bolje da izaberete nižu razinu."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Temeljeno na prijašnjoj razini, ali je sustav potpuno zatvoren.\n"
"Sigurnosne značajke su na maksimumu."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izaberite sigurnosni nivo"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Sigurnosna razina"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za poslužitelje"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja štiti od prekoračenja spremnika i format string napada."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1208,52 +1056,52 @@ 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:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro dosli u GRUB izbornik operativnih sustava!"
#. -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:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Za mijenjanje izabranog sustava pritisnite tipke %c i %c."
#. -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:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite ENTER za bootiranje izabranog OS, 'e' za promjenu"
#. -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:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "naredbe prije bootiranja ili 'c' za komandnu liniju."
#. -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:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljeni zapis biti će bootiran automatski za %d sekundi."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nema dovoljno mjesta u /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:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Radna površina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
@@ -1266,15 +1114,19 @@ msgstr "nema još implementirane pomoći.\n"
msgid "Boot Style Configuration"
msgstr "Postava Stila Podizanja"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1309,14 +1161,14 @@ msgstr "Yaboot mod"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Trenutno koristite %s kao Upravitelj Boot-a.\n"
"Pritisnite na Podesi za pokretanje čarobnjaka za postavljanje."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Podesi"
@@ -1326,7 +1178,7 @@ msgid "System mode"
msgstr "Sistemski mod"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sustav pri podizanju"
#: ../../bootlook.pm_.c:148
@@ -1337,14 +1189,16 @@ msgstr "Ne, ne želim automatsko prijavljivanje"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, želim automatsko prijavljivanje sa ovim korisnikom i okružjem"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "U redu"
@@ -1392,7 +1246,7 @@ msgstr "Ne mogu napraviti screenshotove prije particioniranja"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshotovi će biti raspoloživi poslije instalaciju u %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francuska"
@@ -1400,7 +1254,7 @@ msgstr "Francuska"
msgid "Costa Rica"
msgstr "Kosta Rika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgija"
@@ -1424,11 +1278,12 @@ msgstr "Norveška"
msgid "Sweden"
msgstr "Švedska"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemska"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italija"
@@ -1436,7 +1291,7 @@ msgstr "Italija"
msgid "Austria"
msgstr "Austrija"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Sjedinjene Američke Države"
@@ -1444,8 +1299,8 @@ msgstr "Sjedinjene Američke Države"
msgid "Please make a backup of your data first"
msgstr "Prvo napravite backup podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Pročitajte pažljivo!"
@@ -1459,11 +1314,12 @@ msgstr ""
"sektora) na\n"
"početku diska"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Greška"
@@ -1471,11 +1327,11 @@ msgstr "Greška"
msgid "Wizard"
msgstr "Čarobnjak"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Izaberite akciju"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1487,77 +1343,77 @@ msgstr ""
"Preporučam da promijenite veličinu particije\n"
"(kliknite prvo na particiju te onda na \"Promijeni veličinu\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Molim kliknite na particiju"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalji"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ostali"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Vrste datotečnih sustava:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Napravi"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Vrsta"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Umjesto toga koristi ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Obriši"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Prvo pritisnite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1565,67 +1421,72 @@ msgstr ""
"Nakon mijenjanja tipa particije %s svi podaci na ovoj particiji biti će "
"obrisani"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Izaberite particiju"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Izaberite drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Normalno > Ekspert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Vrati"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Da završim bez spremanja"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Da završim bez zapisivanje particijske tablice?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Da li želite spremiti /etc/fstab promjene?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Raspodijeli automatski"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Očisti sve"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Više"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Hard disk informacije"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Sve primarne particije su iskorištene"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ne mogu dodati niti jednu dodatnu particiju"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1634,31 +1495,31 @@ msgstr ""
"bi\n"
"mogli stvoriti jednu extended particiju."
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Spremi particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Vrati particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Spasi particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ponovno učitaj particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatsko montiranje prenosivog medija"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Odaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1666,11 +1527,11 @@ msgstr ""
"Backup particijske tablice nema istu veličinu\n"
"Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1678,122 +1539,129 @@ msgstr ""
"Umetnite disketu u pogon\n"
"Svi podaci na disketi biti će izbrisani"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Pokušavam spasiti particijsku tablicu"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Točka montiranja"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Promijeni veličinu"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Premjesti"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Dodaj RAID-u"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Dodaj LVM-u"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Ukloni sa RAID-a"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Ukloni sa LVM-a"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Promijeni RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Stvori novu particiju"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Početni sektor:"
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Veličina u MB:"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Vrsta datotečnog sustava:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Mjesto montiranja:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Postavke:"
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Mijenjam tip particije"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sustav želite?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Mijenjam iz ext2 u ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje želite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje želite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1802,128 +1670,133 @@ msgstr ""
"loop back.\n"
"Uklonite loopback prvo"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice fat datotečnog sustava"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ova particija nije promjenjiva u veličini"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Preporučam da prvo backupirate sve podatke s ove particije"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon mijenjanja veličine particije %s svi podaci na ovoj particiji biti će "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Odaberite novu veličinu"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk se želite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na koji se sektor želite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Premještam"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Premještam particiju..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeći RAID na koji želite dodati "
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeći LVM na koji želite dodati "
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM ime?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne može koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Ime loopback datoteke:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dajte ime datoteke"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Datoteku koristi neki drugi loopback. Molim izaberite neku drugu datoteku"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Da li da nju upotrijebim?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Razno"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "uređaj"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "razina"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "chunk veličina"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Kakav tip particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paket %s treba instalirati. Da li ga želite instalirati?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1935,7 +1808,7 @@ msgstr ""
"Imate dvije opcije ili ćete koristiti LILO pa neće raditi ili nećete\n"
"koristiti LILO pa vam /boot neće ni trebati."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1947,7 +1820,7 @@ msgstr ""
"Ukoliko planirate koristiti LILO boot menadžer, budite pažljivi da dodate/"
"boot particiju"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1957,130 +1830,130 @@ msgstr ""
"Nema bootloader-a koji je u mogućnosti to podržati bez /boot particije.\n"
"Zato budite pažljivi da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Particijska tablica pogona %s će sada biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Trebate ponovo pokrenuti sustav prije nego promjene postanu aktivne"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s svi podaci na ovoj particiji biti će obrisani"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Sakrij datoteku"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Premijesti datoteku na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Direktorij %s već sadrži neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Premiješteam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Uređaj:"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS uređaj slovo: %s (nagađanje)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Vrsta: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatiran\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nije formatiran\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montiran\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2089,7 +1962,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2097,27 +1970,27 @@ msgstr ""
"Podrazumijevana boot particija\n"
" (za MS-DOS boot, ne za LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Razina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Chunk veličina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Ime loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2129,7 +2002,7 @@ msgstr ""
"ustvari particija upravljačkog programa, vjerojatno\n"
"biste ju trebali ostaviti.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2141,64 +2014,64 @@ msgstr ""
"particija je za\n"
"dvostruko-podizanje (dual-boot) vašeg sustava.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Vrsta particijske tabele: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "na sabirnici %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Ključ enkriptiranja datotečnog sustava"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaš ključ za enkriptiranje datotečnog sustava"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Upisani enkripcijski ključ je prejednostavan (mora biti dug najmanje %d "
"znakova)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Enkripcijski ključevi se ne slažu"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Enkripcijski ključ"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Enkripcijski ključ (ponovno)"
@@ -2207,35 +2080,65 @@ msgid "Change type"
msgstr "Promijeni tip"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Molim kliknite na medij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Provjera autentičnosti"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domena"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Poslužitelji za pretraživanje"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne znam kako formatirati %s kao vrstu %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktorij %s neuspješno"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck neuspješan sa izlaznim kodom %d ili signalom %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "greška kod demontiranja %s: %s"
@@ -2252,70 +2155,324 @@ msgstr "sa /usr"
msgid "server"
msgstr "poslužitelj"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS se ne može koristiti na particijama koje su manje od 16 MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS se ne može koristiti na particijama koje su manje od 32 MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Mjesto montiranja mora početi sa /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa mjestom montiranja %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne možete koristiti LVM logički prostor za mjesto montiranja %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij bi trebao ostati unutar root datotečnog sustava"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Treba vam istinski datotečni sustav (ex2, reiserfs) za ovo mjesto "
"montiranja\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Ne možete koristiti enkriptirani datotečni sustav za točku montiranja %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno slobodnog prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nema ništa za uraditi"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Greška prilikom otvaranja %s za pisanje: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Pojavila se greška - ne mogu pronaći niti jedan valjani uređaj na kojem\n"
"bih mogao instalirati datotečni sustav. Provjerite da li je sa vašim "
"hardverom sve u redu."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemate niti jednu particiju!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Koristi auto detekciju"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generički"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Postavka opterećenja"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Promijeni tip"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Završi"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pomoć/_O programu"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Miš"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Odustani"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Miš"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Opis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Provjera autentičnosti"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Odaberite datoteku"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway uređaj"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 gumba"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Otkrivanje hard diskova"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Pokaži info o hardveru"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Prikaži informacije"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Podesi miš"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detektiran na portu %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Molim pričekajte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundi"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Uklanjam pisač \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Auto. ispitaj"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2329,7 +2486,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2475,9 +2632,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2833,6 +2989,23 @@ msgid ""
"server, choose \"FBDev\". This is a failsafe option which works with any\n"
"modern graphics card. Then choose \"Test again\" to be sure."
msgstr ""
+"Kada prvi put isprobate X konfiguraciju, možda nećete biti vrlo zadovoljni\n"
+"prikazom (premaleni ekran, pomaknut ulijevo ili udesno...). Stoga, i ako se\n"
+"Xi pokrenu normalno, DrakX će vas pitati da li vam postavke odgovaraju. "
+"Također\n"
+"će predložiti da ih promijenite izabiranjem jednog od ispravnih modova sa "
+"popisa\n"
+" pronađenih.\n"
+"\n"
+"Kao posljednju mjeru, ako još uvijek niste uspjeli natjerati Xe da rade, "
+"izaberite\n"
+"\"Promijeni grafičku karticu\", opcija \"Nenavedena kartica\", i kada "
+"budete\n"
+"upitani za poslužitelj, izaberite \"FBDev\". Ovo je sigurnosna opcija koja "
+"radi\n"
+"sa svakom suvremenom grafičkom karticom. Potom izaberite \"Ponovno isprobaj"
+"\" da\n"
+"biste bili sigurni."
#: ../../help.pm_.c:249
msgid ""
@@ -2852,7 +3025,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2864,9 +3037,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2876,9 +3048,37 @@ msgid ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
msgstr ""
+"Mandrake Linux CD-ROM ima ugrađeni mod za spašavanje. Možete mu pristupiti\n"
+"pokretanjem sustava sa CD-ROMa, pritiskanjem >>F1<< tipke pri podizanju "
+"sustava\n"
+"i upisivanjem >>rescue<< u komandnoj liniji. Ali ako se sustav ne može "
+"podići\n"
+"sa CD-ROMa, trebali biste se vratiti ovom koraku za pomoć u barem dvije "
+"situacije:\n"
+"\n"
+" * kada instalira bootloader, DrakX će prepisati boot sektor (MBR) vašeg\n"
+"primarnog diska (osim ako već ne koristite neki drugi boot manager), da bi "
+"vam\n"
+"omogućio pokretanje ili Windowsa ili GNU/Linuxa (ako imate Windowse u "
+"računalu).\n"
+"Ako trebate ponovno instalirati Windowse, Microsoftov proces instalacije će\n"
+"prepisati boot sektor, i nećete moći pokrenuti GNU/Linux!\n"
+"\n"
+" * ako se pojavi problem i ne možete pokrenuti GNU/Linux sa tvrdog diska,\n"
+"ova disketa će biti jedini način na koji možete pokrenuti GNU/Linux. Sadrži\n"
+"dovoljan broj sustavskih alata za povrat sustava koji se srušio zbog "
+"nedostatka\n"
+"energije, nesretne greške pri tipkanju, pogreške pri upisivanju lozinke ili "
+"bilo\n"
+"kojeg drugog razloga.\n"
+"\n"
+"Kada kliknete na ovaj korak, pojavit će se zahtjev za ubacivanjem diskete u "
+"pogon.\n"
+"Disketa koju ubacujete mora biti prazna ili sadržavati podatke koji vam "
+"nisu\n"
+"potrebni. Nećete je morati formatirati, jer će je DrakX potpuno prepisati."
#: ../../help.pm_.c:280
-#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2913,21 +3113,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2943,80 +3142,82 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"U ovom trenutku, trebate izabrati gdje ćete instalirati vaš\n"
-"Mandrake Linux operativni sustav na vaš hard disk. Ukoliko je prazan ili "
-"ako\n"
-"postojeći operativni sustav koristi čitav prostor na disku, trebate ga\n"
-"particionirati. Jednostavno, particioniranje hard diska sastoji se od "
-"logičkog\n"
-"dijeljenja kako bi napravili prostor za instalaciju vašeg novog Mandrake "
-"Linux sustava.\n"
-"\n"
-"\n"
-"Zato što su posljedice procesa particioniranja obično ireverzibilne,\n"
+"Mandrake Linux operativni sustav na vašem tvrdom disku. Ukoliko je prazan "
+"ili \n"
+"ako postojeći operativni sustav koristi čitav prostor na disku, trebate ga\n"
+"particionirati. Jednostavno, particioniranje hard diska sastoji se od\n"
+"logičkog dijeljenja kako bi napravili prostor za instalaciju vašeg novog\n"
+"Mandrake Linux sustava.\n"
+"\n"
+"Zato što su posljedice procesa particioniranja obično nepovratne,\n"
"particioniranje može biti strašno i stresno ukoliko ste korisnik bez "
"iskustva.\n"
-"Ovaj čarobnjak pojednostavljuje proces. Prije početka, molimo konzultirajte "
-"upute\n"
-"i uzmite vremena koliko vam je potrebno.\n"
-"\n"
+"Ovaj čarobnjak pojednostavljuje proces. Prije početka, molimo konzultirajte\n"
+"upute i uzmite vremena koliko vam je potrebno.\n"
"\n"
-"Trebate najmanje dvije particije. Jedna je za sam operativni sustav, a\n"
-"druga je za virtualnu memoriju (također zvanu Swap).\n"
+"Ako ste pokrenuli instalaciju u modu za stručnjake, ući ćete u DiskDrake,\n"
+"Mandrake Linuxov alat za particioniranje, s kojim možete fino podešavati\n"
+"particije. Pogledajte DiskDrake odjeljak u ``User Guide''.\n"
+"Iz sučelja instalacije možete koristiti čarobnjake koji su ovdje opisani\n"
+"pritiskom na \"Čarobnjak\" dugme.\n"
"\n"
+"Ako su particije već određene, od prijašnje instalacije, ili nekog drugog\n"
+"alata za particioniranje, samo ih izaberite da bi instalirali vaš Linux "
+"sustav.\n"
"\n"
-"Ukoliko su particije već definirane (iz prijašnje instalacije iliiz\n"
-"drugih particijskih alata), trebate samo izbarati te particije za "
-"instalaciju vašeg\n"
-"Linux sustava.\n"
+"Ako particije nisu definirane, morate ih stvoriti korištenjem čarobnjaka.\n"
+"Ovisno o vašem tvrdom disku, nekoliko opcija je dostupno:\n"
"\n"
+" * \"Koristi slobodni prostor\": ova opcija će jednostavno automatski\n"
+"particionirati vaše prazne diskove. Nećete biti više ništa priupitani;\n"
"\n"
-"Ukoliko particije nisu već definirane, trebate ih napraviti. \n"
-"Da biste to napravili, koristite čarobnjak gore raspoloživ. U zavisnosti od "
-"vaših hard disk\n"
-"postavki, nekoliko rješenja je raspoloživo:\n"
-"\n"
-"* Korištenje postojeće particije: čarobnjak je detektirao jednu ili više "
+" * \"Korištenje postojeće particije\": čarobnjak je detektirao jednu ili "
+"više\n"
"postojećih Linux particija na vašem hard disku. Ukoliko\n"
-" ih želite zadržati, izaberite ovu opciju.\n"
-"\n"
+"ih želite zadržati, izaberite ovu opciju.\n"
"\n"
-"* Obriši cijeli disk: ukoliko želite obrisati sve podatke i sve particije "
+" * \"Obriši cijeli disk\": ukoliko želite obrisati sve podatke i sve "
+"particije\n"
"koje postoje na vašem hard disku i zamjeniti ih sa\n"
-" vašim novim Mandrake Linux sustavom, možete izabrati ovu opciju. Budite "
+"vašim novim Mandrake Linux sustavom, možete izabrati ovu opciju. Budite\n"
"pažljivi sa ovim rješenjem, nećete moći\n"
-" povratiti vaš izbor nakon potvrde.\n"
-"\n"
+"povratiti vaš izbor nakon potvrde.\n"
"\n"
-"* Koristiti slobodan prostor na Windows particiji: ukoliko je Microsoft "
+" * \"Koristiti slobodan prostor na Windows particiji\": ukoliko je "
+"Microsoft\n"
"Windows instaliran na vašem hard disku i zauzima\n"
-" cjeli raspoloživ prostor na njemu, trebate napraviti slobodan prostor za "
+"cjeli raspoloživ prostor na njemu, trebate napraviti slobodan prostor za\n"
"Linux podatke. Da biste to napravili možete obrisati vašu\n"
-" Microsoft Windows particiju i podatke (pogledajte \"Brisanje cijelog diska"
-"\" ili \"Ekspert mod\" rješenja) ili mjenjati veličinu vaše\n"
-" Microsoft Windows particije. Mjenjanje veličine može se obaviti bez "
-"gubitka bilo kakvih podataka. Ovo rješenje je\n"
-" preporučeno ukoliko želite koristiti zajedno Mandrake Linux i Microsoft "
-"Windows-e na istom računalu.\n"
-"\n"
-"\n"
-" Prije izabiranja ovog rješenja, molimo razumite da će veličina vaše "
+"Microsoft Windows particiju i podatke (pogledajte \"Brisanje cijelog diska"
+"\"\n"
+"ili \"Ekspert mod\" rješenja) ili mijenjati veličinu vaše\n"
+"Microsoft Windows particije. Mijenjanje veličine može se obaviti bez\n"
+"gubitka bilo kakvih podataka, ako prethodno defragmentirate Windows "
+"particiju.\n"
+"Ovo rješenje je preporučeno ukoliko želite koristiti zajedno Mandrake Linux\n"
+"i Microsoft Windows-e na istom računalu.\n"
+"\n"
+" Prije izabiranja ovog rješenja, molimo shvatite da će veličina vaše "
"Microsoft\n"
-" Windows partiticije biti manja nego što je sada. To znači da ćete imati "
+"Windows partiticije biti manja nego što je sada. To znači da ćete imati\n"
"manje slobodnog prostora pod\n"
-" Microsoft Windows-ima za spremanje vaših podataka ili instaliranje novog "
+"Microsoft Windows-ima za spremanje vaših podataka ili instaliranje novog "
"software-a.\n"
"\n"
+" * \"Obiši Windowse\": ovo će jednostavno obri sati sve na disku i početi\n"
+"particionirati sve ispočetka. Svi podaci na disku će biti izgubljeni;\n"
"\n"
-"* Ekspertni mod: Ukoliko želite particionirati ručno vaš hard disk, možete "
+" * \"Ekspertni mod\": Ukoliko želite particionirati ručno vaš hard disk, "
+"možete\n"
"izabrati ovu opciju. Budite pažljivi prije\n"
-" izabiranja ovog rješenja. Vrlo je moćno, ali i vrlo opasno. Možete "
+"izabiranja ovog rješenja. Vrlo je moćno, ali i vrlo opasno. Možete\n"
"izgubiti sve vaše podatke vrlo lako. Zato,\n"
-" nemojte izabrati ovo rješenje ukoliko ne znate što radite."
+"nemojte izabrati ovo rješenje ukoliko ne znate što radite."
#: ../../help.pm_.c:347
msgid ""
@@ -3036,9 +3237,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3051,9 +3251,45 @@ msgid ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
+"Eto. Instalacija je završena i vaš GNU/Linux sustav je spreman za "
+"korištenje.\n"
+"Samo pritisnite \"U redu\" da bi ponovno pokrenuli sustav. Možete pokrenuti\n"
+"GNU/Linux ili Windowse, što god želite (ako imate dva sustava), čim se\n"
+"računalo ponovno podigne.\n"
+"\n"
+"\"Napredno\" dugme (samo u modu za stručnjake) će prikazati još dva "
+"dugmeta: \n"
+"\n"
+" * \"napravi disketu za automatsku instalaciju\": za stvaranje "
+"instalacijske\n"
+"diskete koja će automatski izvršiti čitavu instalaciju bez pomoći "
+"operatora,\n"
+"sličnu instalaciji koju ste upravo namjestili.\n"
+"\n"
+" Primjetite da su dvije različite opcije dostupne nakon pritiska na "
+"dugme:\n"
+"\n"
+" * \"Replay\". Ovo je djelomice automatizirana instalacija, pošto\n"
+"particioniranje (i samo to) ostaje interaktivno;\n"
+"\n"
+" * \"Automatska instalacija\". Potpuno automatizirana instalacija: tvrdi\n"
+"disk se u potpunosti prebrisava, svi podaci se gube.\n"
+"\n"
+" Ova opcija je dosta korisna pri instaliranju na veći broj sličnih "
+"mašina.\n"
+"Pogledajte odjeljak za automatsku instalaciju na našem web siteu;\n"
+"\n"
+" * \"Snimi odabir paketa\"(*): snima prethodni odabir paketa. Potom, pri "
+"drugoj\n"
+"instalaciji, stavite disketu u pogon i pokrenite instalaciju odlaskom u\n"
+"ekran za pomoć pritiskom na [F1], te zadavanjem >>linux defcfg=\"floppy\"<<\n"
+"naredbe.\n"
+"\n"
+"(*) Trebate FAT formatiranu disketu (da bi je napravili u GNU/Linuxu, "
+"napišite\n"
+"\"mformat a:\")"
#: ../../help.pm_.c:378
-#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3080,38 +3316,31 @@ msgid ""
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
-"Svaka particija koja je novo definirana mora biti\n"
+"Svaka novo definirana particija mora biti\n"
"formatirana za korištenje (formatiranje znači pravljenje datotečnog "
"sustava).\n"
"\n"
-"\n"
-"Trenutno, možete htjeti ponovno formatirati neke već postojeće particije "
+"Trenutno, možete htjeti ponovno formatirati neke već postojeće particije\n"
"kako bi obrisali\n"
-"podatke koje one posjeduju. Ukoliko želite to napraviti, molimo također "
-"izaberite particije\n"
-"koje želite formatirati.\n"
-"\n"
-"\n"
-"Molimo primjetite da nije nužno ponovno formatirati sve već postojeće "
-"particije.\n"
-"Morate ponovno formatirati particije koje sadrže operativni sustav (poput \"/"
-"\",\n"
-"\"/usr\" ili \"/var\") ali ne morate ponovno formatirati particije koje "
-"sadrže podatke\n"
-"koje želite zadržati (tipično /home).\n"
-"\n"
+"podatke koje one posjeduju. Ukoliko želite to napraviti,\n"
+"izaberite particije koje želite formatirati.\n"
"\n"
-"Molimo budite pažljivi odabirom particija, poslije formatiranja, svi podaci "
-"će biti\n"
-"obrisani i nećete ih moći povratiti.\n"
+"Primjetite da nije nužno ponovno formatirati sve već postojeće particije.\n"
+"Morate ponovno formatirati particije koje sadrže operativni sustav (poput \n"
+"\"/\",\"/usr\" ili \"/var\") ali ne morate ponovno formatirati particije "
+"koje\n"
+"sadrže podatke koje želite zadržati (tipično \"/home\").\n"
"\n"
+"Molimo budite pažljivi odabirom particija, poslije formatiranja, svi podaci\n"
+"će biti obrisani i nećete ih moći povratiti.\n"
"\n"
"Pritisnite na \"U redu\" kada ste spremni za formatiranje particije.\n"
"\n"
+"Pritisnite na \"Odustani\" kada želite izabrati druge particije za\n"
+"instalaciju vašeg novog Mandrake Linux operativnog sustava.\n"
"\n"
-"Pritisnite na \"Odustani\" kada želite izabrati druge particije za "
-"instalaciju vašeg novog\n"
-"Mandrake Linux operativnog sustava."
+"Pritisnite na \"Napredno\" ako želite izabrati particije koje će biti\n"
+"provjeravane radi loših blokova (bad blocks)."
#: ../../help.pm_.c:404
msgid ""
@@ -3144,6 +3373,18 @@ msgid ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
+"Dok instalirate Mandrake Linux, moguće je da su neki paketi već nadograđeni\n"
+"od prvotne inačice. Neki bugovi su možda uklonjeni, i sigurnost poboljšana.\n"
+"Da bi iskoristili prednosti tih nadogradnji, predloženo vam je da ih\n"
+"skinete s Interneta. Izaberite \"Da\" ako ste povezani s Internetom, ili \"Ne"
+"\"\n"
+"ako biste radije instalirali nadograđene pakete kasnije.\n"
+"\n"
+"Odabir \"Da\" prikazuje popis mjesta otkuda se nadogradnje mogu skinuti.\n"
+"Izaberite ono najbliže vama. Tada će se pojaviti stablo za odabir paketa:\n"
+"pregledajte odabir i stisnite \"Instaliraj\" da bi skinuli i instalirali "
+"odabrane\n"
+"pakete, ili \"Odustani\" za prekid."
#: ../../help.pm_.c:425
msgid ""
@@ -3170,9 +3411,18 @@ msgid ""
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
+"Sada treba odabrati željenu razinu sigurnosti računala. Opće pravilo jest "
+"da\n"
+"što je više računalo izloženo i podaci vrijedniji, to bi veća razina "
+"sigurnosti\n"
+"trebala biti. Međutim, veća razina sigurnosti utječe na jednostavnost "
+"korištenja.\n"
+"Pogledajte u \"msec\" poglavlje u ``Reference Manual'' za bolje obješnjenje\n"
+"značenja tih razina.\n"
+"\n"
+"Ako ne znate što biste odabrali, ostavite podrazumijevanu opciju."
#: ../../help.pm_.c:442
-#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3194,38 +3444,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3250,85 +3494,76 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"U ovoj točki instalacije, trebate izabrati koje\n"
-"partiticije ćete koristiti za instalaciju vašeg novog Mandrake Linux "
-"sustava. Ukoliko su\n"
+"U ovoj točki instalacije, trebate izabrati koje partiticije ćete koristiti "
+"za\n"
+"instalaciju vašeg novog Mandrake Linux sustava. Ukoliko su\n"
"particije već definirane (iz prethodne instalacije GNU/Linux-a ili iz\n"
-"drugih particijskih alata), možete koristiti postojeće particije. U drugim "
-"slučajevima,\n"
-"hard disk particije moraju biti definirane.\n"
-"\n"
+"drugih particijskih alata), možete koristiti postojeće particije. Inače,\n"
+"moraju biti definirane.\n"
"\n"
-"Za pravljenje particija, morate prvo izabrati hard disk. Možete izabrati \n"
+"Za pravljenje particija, morate prvo izabrati tvrdi disk. Možete izabrati \n"
"disk za particioniranje klikanjem na \"hda\" za prvi IDE disk, \"hdb\" za\n"
"drugi ili \"sda\" za prvi SCSI disk i tako dalje.\n"
"\n"
-"\n"
"Za particioniranje izabranog hard diska, možete izabrati ove opcije:\n"
"\n"
-" * Obriši sve: ova opcija će obrisati sve raspoložive particije na "
+" * \"Obriši sve\": ova opcija će obrisati sve raspoložive particije na\n"
"odabranom hard disku.\n"
"\n"
+" * \"Auto alokacija\": ova opcija vam dozvoljava da automatski napravite\n"
+"\"Ext2\" i swap particije u slobodnom prostoru vašeg hard diska.\n"
"\n"
-" * Auto alokacija: ova opcija vam dozvoljava da automatski napravite Ext2 "
-"i swap particije u slobodnom prostoru vašeg\n"
-" hard diska.\n"
-"\n"
+" * \"Dodatno\": pristup dodatnim mogućnostima:\n"
"\n"
-" * Spasi particijsku tablicu: ukoliko je vaša particijska tablica "
+" * \"Spasi particijsku tablicu\": ukoliko je vaša particijska tablica\n"
"oštećena, možete probati spasiti ju koristeći ovu opciju. Molimo\n"
-" budite pažljivi i zapamtite da ne mora biti uspješna.\n"
+"budite pažljivi i zapamtite da ne mora biti uspješna.\n"
"\n"
+" * \"Povrati\": možete koristiti ovu opciju za odustajanje od vaših "
+"promjena.\n"
"\n"
-" * Povrati: možete koristiti ovu opciju za odustajanje od vaših promjena.\n"
-"\n"
-"\n"
-" * Ponovno učitaj: možete koristiti ovu opciju ukoliko želite vratiti "
+" * \"Ponovno učitaj\": možete koristiti ovu opciju ukoliko želite vratiti\n"
"unazad sve promjene i učitati vašu inicijalnu particijsku tablicu\n"
"\n"
-"\n"
-" * Čarobnjak: ukoliko želite koristiti čarobnjak za particioniranje vašeg "
+" * \"Čarobnjak\": ukoliko želite koristiti čarobnjak za particioniranje "
+"vašeg\n"
"hard diska, možete koristiti ovu opciju. Preporučeno je ukoliko \n"
-" nemate dovoljno znanja oko particioniranja.\n"
+"nemate dovoljno znanja oko particioniranja.\n"
"\n"
-"\n"
-" * Vrati sa diskete: ukoliko ste spremili vašu particijsku tablicu na "
+" * \"Vrati sa diskete\": ukoliko ste spremili vašu particijsku tablicu na\n"
"disketu tijekom prijašnje instalacije, možete\n"
-" ju vratiti koristeći ovu opciju.\n"
-"\n"
-"\n"
-" * Spremi na disketu: ukoliko želite spremiti vašu particijsku tablicu na "
-"disketu kako biste ju mogli kasnije vratiti, možete koristiti ovu\n"
-" opciju. Jako je preporučljivo koristiti ovu opciju\n"
+"je vratiti koristeći ovu opciju.\n"
"\n"
+" * \"Spremi na disketu\": ukoliko želite spremiti vašu particijsku tablicu "
+"na\n"
+"disketu kako biste je mogli kasnije vratiti, možete koristiti ovu\n"
+"opciju. Jako je preporučljivo koristiti ovu opciju\n"
"\n"
-" * Završi: kada ste završili s particioniranjem vašeg hard diska, "
+" * \"Završi\": kada ste završili s particioniranjem vašeg hard diska,\n"
"koristite ovu opciju za spremanje vaših promjena.\n"
"\n"
-"\n"
-"Za informaciju, možete dohvatiti bilo koju opciju koristeći tastaturu: "
-"navigiranje kroz particije se obavlja koristeći Tab i Up/Down strelice.\n"
-"\n"
+"Za informaciju, možete dohvatiti bilo koju opciju koristeći tastaturu:\n"
+"navigiranje kroz particije se obavlja koristeći [Tab] i [Up/Down] strelice.\n"
"\n"
"Kada je particija odabrana, možete koristiti:\n"
"\n"
-" * Ctrl-c za pravljenje novih particija (kada je prazna particija "
+" * Ctrl-c za pravljenje novih particija (kada je prazna particija\n"
"izabrana)\n"
"\n"
-" * Ctrl-d za brisanje particije\n"
+" * Ctrl-d za brisanje particije\n"
"\n"
-" * Ctrl-m za postavljanje točke montiranja\n"
-" \n"
+" * Ctrl-m za postavljanje točke montiranja\n"
"\n"
-" \n"
-"Ukoliko instalirate na PPC računalo, želiti će te napraviti malu HFS "
-"'bootstrap' particiju od najmanje 1MB za korištenje\n"
-"od strane yaboot bootloader-a. Ukoliko se odlučite za pravljenje malo veće "
+"Za informacije o raznim dostupnim datotečnim sustavima, pročitajte ext2fs\n"
+"poglavlje u ``Reference Manual''\n"
+"\n"
+"Ukoliko instalirate na PPC računalo, željet ćete napraviti malu HFS\n"
+"'bootstrap' particiju od najmanje 1MB koju će koristiti\n"
+"yaboot bootloader. Ukoliko se odlučite za pravljenje malo veće \n"
"particije, recimo 50MB, možete ju pronaći korisnom za stavljanje\n"
"dodatnog kernela i ramdisk slike u slučaju nužde."
#: ../../help.pm_.c:513
-#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3361,25 +3596,21 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
"Više od jedne Microsoft Windows particije su pronađene\n"
-"na vašem hard disku. Molimo izaberite jednu kojoj želite promjeniti veličinu "
-"kako bi instalirali\n"
-"vaš novi Mandrake Linux operativni sustav.\n"
-"\n"
+"na vašem hard disku. Molimo izaberite jednu kojoj želite promjeniti "
+"veličinu\n"
+"kako bi instalirali vaš novi Mandrake Linux operativni sustav.\n"
"\n"
-"Za informaciju, svaka particija je popisana kako slijedi; \"Linux ime\", "
-"\"Windows\n"
-"ime\" \"Kapacitet\".\n"
+"Svaka je particija popisana kako slijedi; \"Linux ime\", \"Windows ime\"\n"
+"\"Kapacitet\".\n"
"\n"
"\"Linux ime\" je kodirano kako slijedi: \"tip hard diska\", \"broj hard diska"
"\",\n"
"\"broj particije\" (naprimjer, \"hda1\").\n"
"\n"
-"\n"
"\"Tip hard diska\" je \"hd\" ukoliko je hard disk - IDE hard disk i \"sd\"\n"
"ukoliko je on SCSI hard disk.\n"
"\n"
-"\n"
-"\"Broj hard diska\" je uvijek slovo poslije \"hd\" ili \"sd\". Sa IDE hard "
+"\"Broj hard diska\" je uvijek slovo poslije \"hd\" ili \"sd\". Sa IDE hard\n"
"diskovima:\n"
"\n"
" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\",\n"
@@ -3390,8 +3621,7 @@ msgstr ""
"\n"
" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\".\n"
"\n"
-"\n"
-"Sa SCSI hard diskovima, \"a\" znači \"primarni hard disk\", \"b\" znači "
+"Sa SCSI hard diskovima, \"a\" znači \"primarni hard disk\", \"b\" znači\n"
"\"sekundarni hard disk\", itd...\n"
"\n"
"\"Windows ime\" je slovo vašeg hard diska pod Windows-ima (prvi disk\n"
@@ -3402,7 +3632,6 @@ msgid "Please be patient. This operation can take several minutes."
msgstr "Molimo budite strpljivi. Ova operacija može potrajati nekoliko minuta."
#: ../../help.pm_.c:547
-#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
@@ -3413,11 +3642,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3440,43 +3669,60 @@ msgid ""
"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
"choose this unless you know what you are doing."
msgstr ""
-"Molimo izaberite \"Instalacija\" ukoliko nemate prethodne verzijeMandrake "
-"Linux-a\n"
-"instalirano ili ako želite koristiti nekoliko operativnih sustava.\n"
-"\n"
-"\n"
-"Molimo izaberite \"Dogradnja\" ukoliko želite dograditi već postojeću "
-"verzijuMandrake Linux-a.\n"
-"\n"
+"DrakX sada treba znati da li želite raditi podrazumijevanu instalaciju\n"
+"(\"Preporučeno\") ili želite li imati veću kontrolu (\"Stručnjak\"). Možete\n"
+"također izabrati da li želite novu instalaciju ili nadogradnju postojećeg\n"
+"Mandrake Linux sustava:\n"
+"\n"
+" * \"Instalacija\": potuno briše stari sustav. U stvari, ovisno kako je "
+"sačinjen\n"
+"sustav, moći ćete zadržati neke stare (Linux ili ne) particije "
+"nepromijenjene;\n"
+"\n"
+" * \"Dogradnja\": ova vrsta instalacije vam omogućuje da jednostavno "
+"nadogradite\n"
+"pakete instalirane u vašem Mandrake Linux sustavu. Zadržava particije na "
+"vašem\n"
+"tvrdom disku kao i postavke korisnika. Svi ostali koraci (u odnosu na "
+"običnu\n"
+"instalaciju) pri konfiguraciji ostaju dostupni;\n"
+"\n"
+" * \"Dogradnja paketa\": ova nova vrsta instalacije omogućuje dogradnju "
+"postojećeg\n"
+"Mandrake Linux sustava i zadržavanje svih sustavskih postavki. Dodavanje "
+"novih\n"
+"paketa postojećoj instalaciji je također moguće.\n"
+"\n"
+"Dogradnje bi trebale raditi dobro za Mandrake Linux sustave počev od \"8.1"
+"\"\n"
+"inačice.\n"
"\n"
-"U zavisnosti od znanja u GNU/Linux, možete izabrati jednu od slijedećih "
+"U zavisnosti od znanja u GNU/Linux, možete izabrati jednu od slijedećih\n"
"razina za instalaciju ili dogradnju\n"
"vašeg Mandrake Linux operativnog sustava:\n"
"\n"
-"* Preporučeno: ukoliko nikad niste instalirali GNU/Linux operativni sustav "
-"izaberite ovo. Instalacija će biti\n"
-" vrlo laka i pitati će vas samo nekoliko pitanja.\n"
-"\n"
+"* Preporučeno: ukoliko nikad niste instalirali GNU/Linux operativni sustav \n"
+"izaberite ovo. Instalacija će biti vrlo laka i pitati će vas samo nekoliko "
+"pitanja.\n"
"\n"
-"* Prilagođeno: ukoliko ste već upoznati sa GNU/Linux, možete izabrati "
+"* Prilagođeno: ukoliko ste već upoznati sa GNU/Linux, možete izabrati\n"
"primarnu upotrebu (radna stanica, poslužitelj,\n"
-" razvoj) za vaš sustav. Trebati ćete odgovoriti na više pitanja nego u "
+"razvoj) za vaš sustav. Trebati ćete odgovoriti na više pitanja nego u\n"
"\"Preporučenoj\" instalacijskoj\n"
-" klasi, zato trebate znati više o tome kako GNU/Linux radi kako bi izabrali "
+"klasi, zato trebate znati više o tome kako GNU/Linux radi kako bi izabrali\n"
"ovu instalacijsku klasu.\n"
"\n"
-"\n"
-"* Stručnjak: ukoliko imate dobro znanje o GNU/Linux-u, možete izabrati ovu "
+"* Stručnjak: ukoliko imate dobro znanje o GNU/Linux-u, možete izabrati ovu\n"
"instalacijsku klasu. Kao u \"Prilagođenoj\"\n"
-" instalacijskoj klasi, moći ćete izabrati primarnu upotrebu za vaš sustav "
+"instalacijskoj klasi, moći ćete izabrati primarnu upotrebu za vaš sustav\n"
"(radna stanica, poslužitelj, razvoj). Budite jako\n"
-" pažljivi prije nego što odaberete ovu instalacijsku klasu. Moći ćete "
+"pažljivi prije nego što odaberete ovu instalacijsku klasu. Moći ćete\n"
"izvršiti visoko prilagođenu instalaciju.\n"
-" Odgovori na neka pitanja mogu biti jako teški ukoliko nemate dobro znanje "
+"Odgovori na neka pitanja mogu biti jako teški ukoliko nemate dobro znanje\n"
"GNU/Linux. Dakle, nemojte izabrati\n"
-" ovu instalacijsku klasu ukoliko ne znate što radite."
+"ovu instalacijsku klasu ukoliko ne znate što radite."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3490,8 +3736,18 @@ msgid ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
msgstr ""
+"Obično, DrakX izabere pravu tipkovnicu za vas (ovisno o jeziku koji ste "
+"odabrali)\n"
+"i nećete ni vidjeti ovaj korak. Međutim, možda nemate tipkovnicu koja točno\n"
+"odgovara vašem jeziku: npr. ako ste iz Švicarske a govorite engleski, možda\n"
+"svejedno želite švicarsku tipkovnicu. Ili ako govorite engleski, a živite u\n"
+"Quebecu, možda ćete se naći u sličnoj situaciji. U oba slučaja, morate se "
+"vratiti\n"
+"na ovaj instalacijski korak i odabrati odgovarajuću tipkovnicu iz popisa.\n"
+"\n"
+"Pristisnite \"Dodatno\" da biste dobili potpun popis podržanih tipkovnica."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3505,8 +3761,23 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
+"Izaberite jezik kojim se želite služiti u instalaciji i sustavu.\n"
+"\n"
+"Pritiskom na \"Napredno\" moći ćete izabrati druge jezike koji će biti "
+"instalirani\n"
+"na vašu radnu stanicu. Odabiranjem drugih jezika instalirat će se "
+"specifične\n"
+"jezične datoteke za sustavsku dokumentaciju i aplikacije. Npr. ako ćete na "
+"svom\n"
+"računalu imati korisnike iz Španjolske, u stablu odaberite Engleski kao "
+"glavni\n"
+"jezik i u sekciji Napredno označite kućicu koja odgovara Španjolskoj.\n"
+"\n"
+"Primjetite da se može instalirati više jezika. Kada odredite eventualne "
+"dodatne\n"
+"lokale, stisnite \"U redu\" za nastavak."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3521,33 +3792,46 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
+"DrakX obično prepozna koliko vaš miš ima dugmeta. Ako ne, pretpostavlja da\n"
+"imate miš sa dva dugmeta, a treće će emulirati. DrakX će automatski znati da "
+"li\n"
+"se radi o PS/2, serijskom ili USB mišu.\n"
+"\n"
+"Ako želite odrediti drugačiji tip miša, odaberite odgovarajući tip iz "
+"ponuđenog\n"
+"popisa.\n"
+"\n"
+"Ako izaberete miš različit od podrazumijevanog, prikazati će se testni "
+"ekran.\n"
+"Koristite dugmad i kotačić da potvrdite da li su postavke točne. Ako miš ne "
+"radi\n"
+"dobro, stisnite razmaknicu ili [Return] da bi odustali i ponovno izabirali."
-#: ../../help.pm_.c:623
-#, fuzzy
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
"Molim odaberite ispravni port. Na primjer, COM1 port pod MS Windowsima\n"
-"je imenovan ttyS0 pod GNU/Linuxom."
+"se, pod GNU/Linuxom zove \"ttyS0\"."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3568,8 +3852,54 @@ msgid ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
-
-#: ../../help.pm_.c:663
+"Ovo je najvažnija odluka za sigurnost vašeg GNU/Linux sustava: morate "
+"unijeti\n"
+"\"root\" lozinku. \"root\" je sustavski administrator i jedini koji je "
+"ovlašten\n"
+"da vrši nadogradnje, dodaje korisnike, mijenja cjelokupne postavke sustava, "
+"itd.\n"
+"Ukratko, \"root\" može raditi sve! Stoga morate izabrati lozinku koju je "
+"teško\n"
+"pogoditi, DrakX će vam reći da li je prelagana. Kao što vidite, možete "
+"odabrati\n"
+"da ne unesete lozinku, ali jako vam savjetujemo da to ne činite, barem zbog\n"
+"jednog razloga: nemojte mislite da, zbog tog što ste pokrenuli GNU/Linux, su "
+"vaši\n"
+"ostali operacijski sustavi sigurni od grešaka. Pošto \"root\" može "
+"premostiti\n"
+"sva ograničenja i nenamjerno obrisati sve podatke na particijama nemarnim "
+"pristupanjem,\n"
+"važno je da bude teško postati \"root\".\n"
+"\n"
+"Lozinka bi trebala biti kombinacija alfanumeričkih znakova i barem 8 znakova "
+"duga.\n"
+"Nikad ne zapisujte \"root\" lozinku, prelako dovodite sustav u opasnost.\n"
+"\n"
+"Ipak, nemojte izabrati predugu ili presloženu lozinku, jer ćete je morati "
+"lako\n"
+"zapamtiti.\n"
+"\n"
+"Lozinka se neće pojaviti na ekranu kako je budete upisivali. Zato je morate\n"
+"upisati dvaput da bi smanjili mogućnost greške pri upisu. Ako ipak ponovite "
+"istu\n"
+"grešku dva puta, morat ćete koristiti ovu \"netočnu\" lozinku kada se prvi "
+"put\n"
+"budete prijavljivali.\n"
+"\n"
+"U stručnjak modu, bit ćete zapitani da li ćete se spajati na "
+"autentifikacijski\n"
+"poslužitelj, poput NISa ili LDAPa.\n"
+"\n"
+"Ako vaša mreža koristi LDAP (ili NIS) protokole za autentifikaciju, "
+"izaberite\n"
+"\"LDAP\" (ili \"NIS\") kao autentifikaciju. Ako ne znate kako, pitajte\n"
+"administratora mreže.\n"
+"\n"
+"Ako vaše računalo nije povezano sa administriranom mrežom, morat ćete "
+"izabrati\n"
+"\"Lokalne datoteke\" za autentifikaciju."
+
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3591,7 +3921,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3599,7 +3929,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3619,9 +3949,63 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
+"LILO i grub su GNU/Linux bootloaderi. Ovaj korak je obično potpuno "
+"automatiziran.\n"
+"U stvarim DrakX analizira boot sektor diska i ponaša se u skladu s onim što "
+"je\n"
+"tamo pronašao:\n"
+"\n"
+" * ako je pronađen Windows boot sektor, bit će zamijenjen sa grub/LILO boot "
+"sektorom.\n"
+"Prema tome, moći ćete podizati ili GNU/Linux ili neki drugi OS;\n"
+"\n"
+" * ako je pronađen grub/LILO boot sektor, bit će zamijenjen sa novim.\n"
+"\n"
+"Ako postoji neka dvojba, DrakX će izbaciti dijalog za različitim opcijama.\n"
+"\n"
+" * \"Koji bootloader koristiti\": imate tri izbora:\n"
+"\n"
+" * \"GRUB\": ako preferirate grub (tekstualni izbornik).\n"
+"\n"
+" * \"LILO sa grafičkim izbornikom\": ako preferirate LILO sa svojim\n"
+"grafičkim sučeljem.\n"
+"\n"
+" * \"LILO sa tekstualnim izbornikom\": ako preferirate LILO sa svojim\n"
+"tekstualnim sučeljem.\n"
+"\n"
+" * \"Boot uređaj\": u većini slučajeva, nećete mijenjati podrazumijevani\n"
+"(\"/dev/hda\"), ali ak vam je tako draže, bootloader se može instalirati na "
+"drugi\n"
+"tvrdi disk (\"/dev/hdb\"), ili čak na disketu (\"/dev/fd0\");\n"
+"\n"
+" * \"Vrijeme do podizanja podrazumijevane slike\": kada pokrećete računalo,\n"
+"ovo je vrijeme koje korisnik ima da u bootloader izborniku izabere drugi "
+"izbor\n"
+"od podrazumijevanog.\n"
+"\n"
+"!! Pazite da, ako izaberete da se bootloader ne instalira (pritiskom na\n"
+"\"Odustani\"), morate na neki drugi način osigurati podizanje Mandrake/"
+"Linux\n"
+"sustava! Također, budite sigurni da znate što radite prije mijenjanja "
+"opcija. !!\n"
+"\n"
+"Pritiskom na \"Napredno\" u ovom dijalogu dobit ćete mnoštvo naprednih "
+"opcija,\n"
+"rezerviranih za napredne korisnike.\n"
+"\n"
+"Nakon što ste namjestili opće parametre bootloadera, bit će prikazan popis "
+"opcija\n"
+"za podizanje sustava koje će biti dostupne prilikom podizanja sustava.\n"
+"\n"
+"Ako postoji neki drugi operacijski sustav instaliran na vašem računalu, "
+"automatski\n"
+"će biti dodan boot izborniku. Ovdje možete fino podesiti postojeće opcije. "
+"Izaberite\n"
+"stavku i stisnite \"Promijeni\" da bi je promijenili ili uklonili; \"Dodaj\" "
+"stvara\n"
+"novu stavku; i \"Završi\" kreće dalje na slijedeći instalacijski korak."
-#: ../../help.pm_.c:711
-#, fuzzy
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3634,18 +4018,17 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
"LILO (the LInux LOader) i Grub su bootloaderi: oni su u mogućnosti podići\n"
-"ili GNU/Linux ili bilo koji drugi postojeći operativni sustav na vašem "
+"ili GNU/Linux ili bilo koji drugi postojeći operativni sustav na vašem\n"
"računalu.\n"
"Normalno, ti drugi operativni sustavi su ispravno pronađeni i\n"
"instalirani. Ako to nije slučaj, možete ga dodati ručno na ovom\n"
"zaslonu. Budite pažljivi da izaberete ispravne parametre.\n"
"\n"
-"\n"
"Također ćete poželiti ne dati pristup tim drugim operativnim sustavima\n"
"drugima, u tom slučaju možete obrisati odgovarajuće unose. Ali\n"
"u tom slučaju, trebati ćete boot disketu kako bi ih mogli podići!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3660,29 +4043,28 @@ msgstr ""
"Ako ne znate točno što radite, izaberite \"Prvi sektor diska\n"
"(MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3690,9 +4072,44 @@ msgid ""
"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
"networks."
msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
+"Ovdje biramo sustav za ispis za vaše računalo. Drugi OSovi možda nude "
+"jedan,\n"
+"ali Mandrake Linux nudi tri.\n"
+"\n"
+" * \"pdq\", što znači ``print, don't queue'' (ispiši, bez stavljanja u red), "
+"je\n"
+"izbor koji ćete koristiti ako imate izravnu vezu sa pisačem, želite izbjeći\n"
+"zastoje u ispisu i nemate pisače u mreži. Ima samo jednostavne mrežne "
+"mogućnosti\n"
+"i ponešto je spor za mrežu. Izaberite \"pdq\" ako ste novi u GNU/Linuxu. "
+"Možete\n"
+"promijeniti odabir poslije instalacije pokretanjem PrinterDrakea iz "
+"Mandrake\n"
+"kontrolnog centra i pritiskom na dugme za stručnjake.\n"
+"\n"
+" * \"CUPS\"``Common Unix Printing System'', je izvrstan za ispis na vašem "
+"lokalnom\n"
+"računalu, kao i za ispis na drugom kraju svijeta. Jednostavan je i može "
+"poslužiti\n"
+"kao poslužitelj i klijent za drevni \"lpd\" sustav za ispis. Dakle, "
+"kompatibilan je\n"
+"s ranijim sustavima. Ima mnoštvo trikova, ali osnovne postavke su gotovo\n"
+"jednostavne kao i \"pdq\". Ako trebate da vam emulira \"lpd\" poslužitelj, "
+"morate\n"
+"uključiti \"cups-lpd\" daemon. Ima grafička sučelja za ispis i za odabir "
+"opcija\n"
+"za ispis.\n"
+"\n"
+" * \"lprNG\"``line printer daemon New Generation''. Ovaj sustav može raditi\n"
+"otprilike iste stvari kao i ostali, ali će pisati i s pisačima u Novell "
+"mreži,\n"
+"jer podržava IPX protokol, i može ispisivati izravno u komande ljuske. Ako "
+"vam\n"
+"treba Novell ili ispis u komande bez korištenja preusmjeravanja, koristite "
+"lprNG.\n"
+"Inačem CUPS je najbolji jer je jednostavniji i bolje radi preko mreže."
+
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3717,40 +4134,37 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-"DrakX će pokušati pronaći PCI SCSI adapter(e). Ukoliko DrakX\n"
-"pronađe SCSI adapter i zna koji upravljački program da koristi, on će "
-"automatski biti\n"
-"instaliran.\n"
+"DrakX sada pretražuje IDE uređaje prisutne u vašem računalu.Također će "
+"pokušati\n"
+"pronaći PCI SCSI adapter(e). Ukoliko DrakX\n"
+"pronađe SCSI adapter i zna koji upravljački program da koristi, on će \n"
+"automatski biti instaliran.\n"
"\n"
-"\n"
-"Ukoliko nemate SCSI adapter, ISA SCSI adapter ili PCI SCSI adapter koji\n"
+"Ukoliko imate SCSI adapter, ISA SCSI adapter ili PCI SCSI adapter koji\n"
"DrakX ne može prepoznati, biti ćete pitani da li imate SCSI adapter u vašem\n"
"sustavu. Ukoliko nemate adapter, možete kliknuti na \"Ne\". Ukoliko kliknete "
"na\n"
"\"Da\", dobiti ćete popis upravljačkih programa odakle možete izabrati vaš\n"
"specifičan adapter.\n"
"\n"
-"\n"
"Ako trebate ručno specifirati vaš adapter, DrakX će pitati da li želite \n"
"specifirati opcije za njega. Trebali biste dozvoliti DrakX-u da isproba "
"opcije za\n"
"hardware. Ovo obično radi dobro.\n"
"\n"
-"\n"
-"Ako ne, trebati ćete navesti opcije za upravljački program. Molimo "
+"Ako ne, trebati ćete navesti opcije za upravljački program. Molimo\n"
"pregledajte User\n"
-"Guide (poglavlje 3, sekciju \"Collective informations on your hardware\") za "
-"preporuke\n"
-"o pribavljanju ovih informacija iz dokumentacije hardware-a, sa \n"
+"Guide (poglavlje 3, sekciju \"Collecting informations on your hardware\") "
+"za\n"
+"preporuke o pribavljanju ovih informacija iz dokumentacije hardware-a, sa \n"
"proizvođačevog Web site-a (ukoliko imate Internet pristup) ili iz Microsoft "
"Windows-a\n"
"(ukoliko ga imate na vašem sustavu)."
-#: ../../help.pm_.c:784
-#, fuzzy
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3760,9 +4174,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3774,7 +4187,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3802,72 +4215,54 @@ msgstr ""
"Možete dodati dodatne unose za yaboot, ili za drugi operativni sustav,\n"
"alternativne kernele, ili za spasonosnu boot sliku.\n"
"\n"
-"\n"
-"Za druge OS-ove - unos se sastoji samo od labele i root particije.\n"
-"\n"
+"Za druge OS-ove - unos se sastoji samo od labele i \"root\" particije.\n"
"\n"
"Za Linux, postoji nekoliko mogućih opcija: \n"
"\n"
+" * Labela: Jednostavno, ovo je ime koje ćete napisati u yaboot promptu za\n"
+"odabir ove boot opcije.\n"
"\n"
-" - Labela: Ovo je jednostavno ime koje ćete napisati u yaboot promptu za "
-"odabir ove \n"
-"boot opcije.\n"
-"\n"
-"\n"
-" - Slika: Ovo će biti ime kernela pri podizanju. Tipično vmlinux ili\n"
-"varijacija vmlinux-a sa ekstenzijom.\n"
-"\n"
-"\n"
-" - Root: root uređaj ili '/' za vašu Linux instalaciju.\n"
+" * Slika: Ovo je ime kernela koji se podiže. Tipično vmlinux ili\n"
+"varijacija vmlinux-a sa ekstenzijom;\n"
"\n"
+" * Root: \"root\" uređaj ili '/' za vašu Linux instalaciju.\n"
"\n"
-" \n"
-" - Dodatak: Na Apple hardware-u, kernel dodatak opcija se koristi vrlo "
-"često za\n"
-"pomoć pri inicijaliziranju video hardware-a, ili za omogućavanje emulacije "
-"tastaturnih mišjih gumba\n"
-"zbog čestog nedostatka 2-og ili 3-eg mišjeg gumba na Apple miševima. "
-"Slijedeće \n"
-"su neki primjeri:\n"
-"\n"
+" * Dodatak: Na Apple hardware-u, kernel dodatak opcija se koristi vrlo često "
+"za\n"
+"pomoć pri inicijaliziranju video hardware-a, ili za omogućavanje emulacije\n"
+"tipaka na mišu tipkovnicom zbog čestog nedostatka 2-og ili 3-eg tipke na "
+"Apple\n"
+" miševima. Neki primjeri:\n"
"\n"
-"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
"hda=autotune\n"
"\n"
-"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
"\n"
-"\n"
-" \n"
-" - Initrd: Ova opcija se može koristiti ili za učitavanje inicijalnih "
-"modula, prijenego što je boot\n"
+" * Initrd: Ova opcija se može koristiti ili za učitavanje inicijalnih\n"
+"modula, prije nego što je boot\n"
"uređaj raspoloživ, ili za učitavanje ramdisk slike za spasonosne boot "
"situacije.\n"
"\n"
+" * Initrd-veličina: Podrazumijevana veličina ramdisk-a je općenito 4096\n"
+"byte-ova. Ukoliko trebate alocirati veći ramdisk, ova opcija može biti "
+"korištena.\n"
"\n"
-" - Initrd-veličina: Podrazumijevana veličina ramdisk-a je općenito 4096 "
-"byte-ova. Ukoliko trebate\n"
-"alocirati veći ramdisk, ova opcija može biti korištena.\n"
+" * Čitaj-Piši: Normalno je \"root\" particija inicijalno podignuta u čitaj-"
+"samo,\n"
+"radi mogućnosti provjere datotečnog sustava prije nego sustav postane "
+"'živ'.\n"
+"Možete premostiti tu opciju ovdje.\n"
"\n"
-"\n"
-" - Čitaj-Piši: Normalno je 'root' particija inicijalno podignuta u čitaj-"
-"samo, za mogućnost\n"
-"provjere datotečnog sustava prije nego sustav postane 'živ'. Možete "
-"nadjačati ovu opciju ovdje.\n"
-"\n"
-"\n"
-" - NoVideo: Ako se Apple hardware pokaže kao iznimno problematičan, možete\n"
+" * NoVideo: Ako se Apple hardware pokaže kao iznimno problematičan, možete\n"
"izabrati ovu opciju za podizanje u 'novideo' modu, sa native framebuffer "
"podrškom.\n"
"\n"
-"\n"
-" - Podrazumijevano: Izabire ovaj unos kao podrazumijevani Linux izbor, "
-"moguće izbirati sa samo\n"
-"pritiskom ENTER-a na yaboot pitanju. Ovaj unos će također biti označen sa "
-"'*', ukoliko\n"
-"koristite TAB za pregledavanje boot izbora."
+" * Podrazumijevano: Izabire ovaj unos kao podrazumijevani Linux izbor,\n"
+"moguće izbirati pritiskom ENTER-a na yaboot pitanju. Ovaj unos će također\n"
+"biti označen sa '*', ukoliko stisnete [Tab] za pregledavanje boot izbora."
-#: ../../help.pm_.c:830
-#, fuzzy
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3894,63 +4289,49 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-"Yaboot je bootloader za NewWorld MacIntosh hardware. U mogućnosti je\n"
-"podići ili GNU/Linux, MacOS, ili MacOSX, ukoliko postoje na vašem računalu.\n"
-"Normalno, ti drugi operativni sustavi su ispravno pronađeni i\n"
+"Yaboot je bootloader za NewWorld MacIntosh hardware. Može\n"
+"podići GNU/Linux, MacOS, ili MacOSX, ukoliko postoje na vašem računalu.\n"
+"Obično, ti drugi operativni sustavi su ispravno pronađeni i\n"
"instalirani. Ukoliko to nije slučaj, možete dodati unos ručno na ovom\n"
"zaslonu. Budite pažljivi da izaberete ispravne parametre.\n"
"\n"
+"Glavne opcije Yaboota su:\n"
"\n"
-"Yaboot glavne opcije su:\n"
-"\n"
-"\n"
-" - Init Poruka: Jednostavna tekst poruka koja se prikaže prije pitanja o\n"
+" * Init Poruka: Jednostavna tekst poruka koja se prikaže prije pitanja o\n"
"podizanju.\n"
"\n"
+" * Boot Uređaj: Označava gdje želite staviti informaciju potrebnu za \n"
+"podizanje GNU/Linux-a. Općenito, bootstrap particiju namještate prije, \n"
+"da sadrži ovu informaciju.\n"
"\n"
-" - Boot Uređaj: Označava gdje želite staviti informaciju potrebnu za \n"
-"podizanje GNU/Linux-a. Općenito, morati ćete imati postavljenu bootstrap "
-"particiju prije, \n"
-"da može držati ovu informaciju.\n"
-"\n"
-"\n"
-" - Otvorena Firmware Pauza: Za razliku od LILO-a, postoje dvije raspoložive "
-"pauze sa\n"
-"yaboot-om. Prva pauza se mjeru sekundama i na tom mjestu možete \n"
+" * Otvorena Firmware Pauza: Za razliku od LILO-a, postoje dvije raspoložive\n"
+"pauze sa yaboot-om. Prva pauza se mjeru sekundama i na tom mjestu možete \n"
"birati izmežu CD-a, OF boot-a, MacOS-a ili Linux-a.\n"
"\n"
-"\n"
-" - Kernel Boot Čekanje: Ovo čekanje je slično LILO boot čekanju. Poslije \n"
+" * Kernel Boot Čekanje: Ovo čekanje je slično LILO boot čekanju. Poslije \n"
"izabiranja Linux-a, imati ćete pauzu od 0.1 sekunde prije nego "
"podrazumijevani\n"
"kernel opis bude odabran.\n"
"\n"
+" * Omogući CD Boot?: Postavljanje ove opcije će vam dozvoliti da možete\n"
+"izabrati 'C' za CD na prvom pitanju pri podizanju.\n"
"\n"
-" - Omogući CD Boot?: Postavljanje ove opcije će vam dozvoliti da možete "
-"izabrati 'C' za CD na\n"
-"prvom pitanju pri podizanju.\n"
-"\n"
-"\n"
-" - Omogući OF Boot?: Postavljanje ove opcije će vam dozvoliti da možete "
-"izabrati 'N' za Open\n"
-"Firmware prvi prvom pitanju pri podizanju.\n"
-"\n"
+" * Omogući OF Boot?: Postavljanje ove opcije će vam dozvoliti da možete\n"
+"izabrati 'N' za Open Firmware prvi prvom pitanju pri podizanju.\n"
"\n"
-" - Podrazumijevani OS: Možete izabrati koji OS ćete podići podrazumijevano "
-"kada Open Firmware \n"
-"pauza istekne."
+" * Podrazumijevani OS: Možete izabrati koji OS ćete podići podrazumijevano\n"
+"kada Open Firmware pauza istekne."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3958,12 +4339,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3978,8 +4358,39 @@ msgid ""
"displayed here. You can click on the button to change the parameters\n"
"associated with it."
msgstr ""
+"Ovdje su predstavljeni različiti parametri za vaše računalo. Ovisno o\n"
+"instaliranom hardveru, vidjet ćete ili ne slijedeće stavke:\n"
+"\n"
+" * \"Miš\": možete provjeriti trenutne postavke miša i promijeniti\n"
+"ih, ako treba, pritiskom na dugme;\n"
+"\n"
+" * \"Tipkovnica\": možete provjeriti trenutnu postavu tipkovnice i "
+"promijeniti\n"
+"je, ako treba, pritiskom na dugme;\n"
+"\n"
+" * \"Vremenska zona\": DrakX, podrazumijevano, pogađa vremensku zonu prema\n"
+"izabranom jeziku. Ali i ovdje, kao i kod izbora tipkovnice, možda niste u "
+"zemlji\n"
+"za koju bi izabrani jezik trebao odgovarati. Stoga, možda ćete trabati "
+"stisnuti\n"
+"\"Vremenska zona\" dugme da bi namjestili sat prema vašoj vremenskoj zoni;\n"
+"\n"
+" * \"Pisač\": pritiskom na \"Nema pisača\" dugme otvorit će se čarobnjak za\n"
+"namještanje pisača;\n"
+"\n"
+" * \"Zvučna kartica\": ako je zvučna kartica nađena, bit će ovdje "
+"prikazana.\n"
+"Nije je moguće mijenjati tijekom instalacije;\n"
+"\n"
+" * \"TV kartica\": ako je nađena TV kartica, ovdje će biti prikazana. Nije "
+"je\n"
+"moguće mijenjati tijekom instalacije;\n"
+"\n"
+" * \"ISDN kartica\": ako je nađena ISDN kartica, ovdje će biti prikazana. "
+"Možete\n"
+"mijenjati njene parametre pritiskom na dugme."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3989,8 +4400,7 @@ msgstr ""
"novu Mandrake Linux particiju. Budite pažljivi, svi postojeći podaci\n"
"biti će izgubljen i neće se moći povratiti!"
-#: ../../help.pm_.c:896
-#, fuzzy
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4001,30 +4411,31 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
"Izaberite \"U redu\" ukoliko želite obrisati sve podatke i\n"
-"postojeće particije na navedenom hard disku. Budite pažljivi, nakon "
-"klikanja\n"
-"na \"U redu\", nećete moći povratiti bilo kakve postojeće podatke ili "
-"particije\n"
-"na ovom hard disku, uključujući Windows podatke.\n"
-"\n"
+"postojeće particije na navedenom tvrdom disku. Budite pažljivi, nakon\n"
+"klikanja na \"U redu\", nećete moći povratiti bilo kakve postojeće podatke "
+"ili\n"
+"particije na ovom hard disku, uključujući Windows podatke.\n"
"\n"
"Pritisnite na \"Odustani\" za prekidanje ove operacije bez gubljenja bilo\n"
"kakvih postojećih podataka i particija na ovom hard disku."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
+"Ne mogu pristupiti kernel modulima koji odgovaraju vašem kernelu (datoteka %"
+"s nedostaje), ovo obično znači da vaša disketa za dizanje sustava nije "
+"usklađena sainstalacijskim medijem (napravite noviju boot disketu)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Morate također formatirati %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4050,20 +4461,20 @@ msgstr ""
"\n"
"Da li zaista želite instalirati te poslužitelje?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Umetnite FAT formatiranu disketu u pogon %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT formatirana"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4071,7 +4482,7 @@ msgstr ""
"Za korištenje spremljenog odabira paketa, podignite instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Greška prilikom čitanja datoteke %s"
@@ -4101,7 +4512,7 @@ msgstr "Morate imati swap particiju"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4109,59 +4520,59 @@ msgstr ""
"\n"
"Da ipak nastavim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Koristi postojeće particije"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nema postojećih particija koje bih mogao upotrijebiti"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Koristi Windows particiju za loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju želite koristiti za Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Odaberite veličinu"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Veličina korijenske particije u MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Veličina swap particiju u MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Iskoristi slobodan prostor na Windows particiji"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji želite promijeniti veličinu?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Izračunavam granice Windows datotečnog sustava"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4170,12 +4581,15 @@ msgstr ""
"Program koji mjenja veličinu FAT-a ne može rukovati vašom particijom, \n"
"slijedeća greška se dogodila: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Vaša Windows particija je prefragmentirana, molim pokrenite ``defrag'' prvo."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4196,54 +4610,54 @@ msgstr ""
"Također preporučljivo je da sačuvate vaše podatke (napravite backup).\n"
"Kada ste sigurni da želite nastaviti, pritisnite U redu."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Koliku veličinu želite zadržati za windowse"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "particija %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Mijenjanje FAT veličine nije uspjelo: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nema FAT particije za mjenjanje veličine ili za korištenje loopback-a (ili "
"nema dovoljno prostora)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Obriši cijeli disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Ukloni Windowse(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Imate više od jednog hard diska, na koji želite instalirati Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "SVE postojeće particije i podaci biti će izgubljeni na disku %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Proizvoljno particioniranje diska"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4252,11 +4666,11 @@ msgstr ""
"Sada možete razdijeliti %s.\n"
"Kada ste gotovi ne zaboravite spremiti postavu sa `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemate dovoljno slobodnog prostora na vašoj Windows particiji"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ne mogu pronaći bilo kakvo mjesto za instaliranje"
@@ -4264,16 +4678,16 @@ msgstr "Ne mogu pronaći bilo kakvo mjesto za instaliranje"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX čarobnjak za particioniranje je pronašao slijedeća rješenja:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje neuspjelo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Podižem mrežu"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Onemogućujem mrežu"
@@ -4285,12 +4699,12 @@ msgstr ""
"Dogodila se greška, ali neznam kako s njom lijepo rukovati.\n"
"Nastavite dalje na vlastiti rizik."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dupliciraj mjesto monitranja %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4302,12 +4716,12 @@ msgstr ""
"Provjerite cdrom na instaliranom računalu koristeći \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Dobrodošli u %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Disketni pogon nije dostupan"
@@ -4317,9 +4731,9 @@ msgstr "Disketni pogon nije dostupan"
msgid "Entering step `%s'\n"
msgstr "Pokrećem korak `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4328,199 +4742,154 @@ msgstr ""
"instalacije Mandrake Linux-a. Ukoliko se to desi, možete probati tekstualnu\n"
"instalaciju. Za to, pritisnite `F1' kada podižete CDROM, i unesite `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Instalacijski razred"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Molim izaberite jedan od slijedećih razreda instalacije:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukupna veličina izabranih grupa je otprilike %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ukoliko želite instalirati manje od ove veličine,\n"
-"izaberite postotak paketa koliko želite instalirati.\n"
-"\n"
-"Mali postotak će instalirati samo najvažnije pakete;\n"
-"dok postotak od 100%% će instalirati sve odabrane pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Imate mjesta na vašem disku za samo %d%% paketa.\n"
-"\n"
-"Ukoliko želite instalirati manje od ovoga,\n"
-"izaberite postotak paketa koliko želite instalirati.\n"
-"Mali postotak će instalirati samo najvažnije pakete;\n"
-"dok postotak od %d%% će instalirati koliko god je paketa moguće."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Detaljniji izbor nalazi se u slijedećem koraku."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Odaberite postotak paketa koje želite instalirati"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Odabir grupe paketa"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individualan odabir paketa"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veličina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Loš paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Inačica: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Veličina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Značaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Ne možete označiti ovaj paket budući da nema dovoljno mjesta gdje ga se može "
"instalirati"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Slijedeći paketi će biti instalirani"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Slijedeći paketi će biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Ne možete označiti/odznačiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Budući da je ovo obvezni paket ne možete ga odznačiti"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Ne možete odznačiti ovaj paket budući da je već instaliran"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ovaj paket treba nadograditi\n"
"Da li ste sigurni da ga želite odznačiti?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne možete odznačiti ovaj paket budući da ga treba nadograditi"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Prikaži automatski odabrane pakete"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instaliraj"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Učitaj/Spremi na disketu"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Dograđujem izbor paketa"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Odaberite pakete koje želite instalirati"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Preostalo vrijeme"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Molimo pričekajte, Pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4536,17 +4905,17 @@ msgstr ""
"Ukoliko ga nemate, pritisnite Odustani kako bi izbjegli instalaciju sa ovog "
"Cd-Rom-a."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Da ipak nastavim?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Javila se greška prilikom sortiranja paketa:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Pojavila se greška kod instalacije paketa:"
@@ -4619,11 +4988,11 @@ msgstr "Pojavila se greška"
msgid "Do you really want to leave the installation?"
msgstr "Da li zaista želite napustiti instalaciju?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licencni dogovor"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4638,7 +5007,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4857,109 +5226,113 @@ msgstr ""
"Za bilo kakva pitanja o ovom dokumentu, molimo kontaktirajte MandrakeSoft S."
"A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tipkovnica"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Molim, izaberite raspored tipkovnice."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ovdje je cijeli popis raspoloživih tipkovnica"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Koji instalacijski razred želite?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instaliraj/Nadogradi"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Da li je ovo instalacija ili nadogradnja?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Preporučeno"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Dogradnja"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Samo dogradi pakete"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Molim izaberite vašu vrstu miša."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port miša"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Izaberite na kojem serijskom portu je miš priključen."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulacija gumbova"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulacija 2 gumba"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulacija 3 gumba"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Podešavam PCMCIA kartice..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Podešavam IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Tražim particije kako bi pronašao mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Odaberite mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
@@ -4972,7 +5345,7 @@ msgstr ""
"\n"
"Da li se slažete da izgubite sve particije?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4980,7 +5353,7 @@ msgstr ""
"DiskDrake nije uspio pročitati vašu particijsku tablice.\n"
"Nastavite o vlastitoj odgovornosti."
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4989,76 +5362,79 @@ msgstr ""
"podizanje vašeg sustava, trebati ćete napraviti bootstrap particiju u "
"DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Niti jedna root particija nije pronađena da se obavi dogradnja"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Korijenska particija"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Koja je korijenska particija (/) vašeg sustava?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Morate ponovo pokrenuti sustav kako bi se aktivirala promjena particijske "
"tablice"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje želite formatirati"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Provjeri za loše blokove?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Stvaram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nema dovoljno swapa za završetak instalacije, molim dodajte još"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Tražim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Tražim dostupne pakete"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Tražim pakete koje mogu nadograditi"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Ne možete odznačiti ovaj paket budući da je već instaliran"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Vaš sustav nema dovoljno prostora za instalaciju ili dogradnju (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompletno (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Preporučeno (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5066,35 +5442,35 @@ msgstr ""
"Molimo izaberite učitivanje ili spremanje izbora paketa na disketu.\n"
"Format je isto kao auto_install napravljene diskete."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Učitaj sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Učitavam sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Odabir paketa"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Umetnite disketu koja sadržava izbor paketa"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Spremi na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća nego raspoloživ prostor"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Tip instalacije"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5102,19 +5478,19 @@ msgstr ""
"Niste izabrali niti jednu grupu paketa\n"
"Izaberite minimalnu instalaciju ako želite"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Sa X-ima"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno malena instalacija (posebice bez urpmia)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5125,16 +5501,16 @@ msgstr ""
"Ako imate samo neke od dolje navedenih CDa odznačite one koje nemate i "
"kliknite U redu."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom naslovljen \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5143,23 +5519,23 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Postava nakon instalacije"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molim, umetnite Boot disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molim, umetnite Update Modules disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5228,170 +5604,201 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
"Imate mogućnost skidanja (downloada) paketa za dogradnju koji su\n"
"izašli poslije nego što je distribucija postala raspoloživa.\n"
"\n"
-"Dobiti ćete sigurnosne popravke i popravke od grešaka, ali trebate imati\n"
-"Internet vezu konfiguriranu za nastavak.\n"
+"Dobit ćete sigurnosne popravke i popravke od grešaka, ali za nastavak\n"
+"trebate imati podešenu Internet vezu.\n"
"\n"
-"Da li želite nastaviti ?"
+"Da li želite instalirati dogradnju?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web site za dobivanje popisa raspoloživih mirrora"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg želite skinuti pakete"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spajam se na mirror kako bih pribavio popis dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Vaš hardverski sat namješten je na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska vremenska sinkronizacija (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Poslužitelj"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS poslužitelj"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nema pisača"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Da li imate ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije za podešavanje vaše zvučne "
"kartice"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije pronađena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumarno"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Miš"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Pisac"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windowse (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podešavanje root lozinke"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez lozinke"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova lozinka je prejednostavna (lozinka mora sadržavati barem %d znakova)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Provjera autentičnosti"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Poslužitelj"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domena"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Poslužitelj"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP Autentifikacija"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Dobavi Windows fontove"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP Poslužitelj"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
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 "
@@ -5422,19 +5829,19 @@ msgstr ""
"Ako želite napraviti boot disketu za vaš sustav, ubacite disketu u prvi\n"
" pogon i pritisnite \"U redu\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Prvi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Drugi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5461,7 +5868,7 @@ msgstr ""
"Da li želite napraviti proizvoljnu boot disketu za vaš sustav?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5469,29 +5876,34 @@ msgid ""
"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
"because XFS needs a very large driver)."
msgstr ""
+"\n"
+"\n"
+"(UPOZORENJE! Koristite XFS za vašu root particiju,\n"
+"stvaranje boot diskete na disketi kapaciteta 1.44 Mb vjerojatno\n"
+"neće uspjeti, jer XFS treba vrlo velik pokretački program)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Žalim, međutim disketni pogon nije dostupan"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Izaberite disketni pogon koji želite koristiti za izradu boot diskete"
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1221
+#, c-format
msgid "Insert a floppy in %s"
msgstr "Umetnite disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Stvaram boot disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5503,11 +5915,11 @@ msgstr ""
"Instalacija će nastaviti, ali ćete morati\n"
" koristiti BootX da podignete vaše računalo"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Da li želite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5515,16 +5927,16 @@ msgstr ""
"Greška prilikom instalacije aboot-a, \n"
"probati nasilno instalirati iako to može uništiti prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaliranje bootloadera"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Instalacija bootloader-a nije uspjela. Prijavljena je slijedeća grešska:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5541,18 +5953,17 @@ msgstr ""
" Tada napišite: shut-down\n"
"Pri slijedećem podizanju trebali biste vidjeti prompt bootloadera."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Umetnite praznu disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5562,7 +5973,8 @@ msgstr ""
"\n"
"Želite li zaista završiti?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5573,7 +5985,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5588,17 +6000,22 @@ msgstr ""
"konzultirajte Eratu raspoloživu na\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informacije o konfiguriranju vašeg sustava je raspoloživo u poslije\n"
"instalacijskom poglavlju od Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5612,15 +6029,15 @@ msgstr ""
"\n"
"Možete preferirati da ponovite instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatski"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ponovno prikaži"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Spremi odabir paketa"
@@ -5641,50 +6058,30 @@ msgstr "kdesu nedostaje"
#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
msgid "consolehelper missing"
-msgstr ""
+msgstr "nedostaje consolehelper"
#: ../../interactive.pm_.c:152
msgid "Choose a file"
msgstr "Izaberite datoteku"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Molim pričekajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Proširi stablo"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sažmi stablo"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Prebaci između ravno i grupno sortiranog"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Krivi izbor, pokušajte ponovo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vaš izbor? (uobičajeno %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5693,31 +6090,35 @@ msgstr ""
"Unosi koje trebate popuniti:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vaš izbor? (0/1, uobičajeno '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Gumb `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Da li želite kliknuti na ovaj gumb? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vaš izbor? (uobičajeno `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Postoji mnogo stvari za odabir iz (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5727,7 +6128,7 @@ msgstr ""
"ili samo pritisnite Enter za nastavak.\n"
"Vaš izbor? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5736,332 +6137,329 @@ msgstr ""
"=> Obavijest, naziv promijenjen:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Ponovno Pošalji"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Češka (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Njemačka"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Španjolska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norveška"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Švedska"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK tipkovnica"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US tipkovnica"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaća mašina)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbejdžanska (latinica)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:199
-#, fuzzy
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
-msgstr "Armenska (fonetska)"
+msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:200
-#, fuzzy
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
-msgstr "Bugarska"
+msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Švicarska (Njemački raspored)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Švicarska (francuski raspored)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Češka (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Njemačka (bez mrtvih tipaka)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (USA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveška)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Švedska)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" raspored)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latin\" raspored)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grčka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Mađarska"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelska (fonetska)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Talijanska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanska (106 tipaka)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejska tipkovnica"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latino američka"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanska AZERTY (nova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanska \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvija"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nizozemska"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty raspored)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz raspored)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadska (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunjska (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunjska (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenska"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovačka (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovačka (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srpska (čirilica)"
-#: ../../keyboard.pm_.c:258
-#, fuzzy
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
-msgstr "Tablica"
+msgstr "Tamil"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tajlandska tipkovnica"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik tipkovnica"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderna \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US keyboard (internacionalna)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vijetnamska \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinična)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
-msgstr ""
+msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
-msgstr ""
+msgstr "Obe Shift tipke istodobno"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
-msgstr ""
+msgstr "Control i Shift tipke istodobno"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
-msgstr ""
+msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+msgstr "Ctrl i Alt tipke istodobno"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
-msgstr ""
+msgstr "Alt i Shift tipku istodobno"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
-msgstr ""
+msgstr "\"Menu\" tipka"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
-msgstr ""
+msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
-msgstr ""
+msgstr "Desna \"Windows\" tipka"
#: ../../loopback.pm_.c:32
#, c-format
@@ -6072,7 +6470,31 @@ msgstr "Kružno montiranje %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Ukloni logički volumen prvo\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefonski broj"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatiraj particije"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6114,10 +6536,6 @@ msgstr "1 gumb"
msgid "Generic 2 Button Mouse"
msgstr "Generički miš s 2 gumba"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generički"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Kotačić"
@@ -6182,38 +6600,54 @@ msgstr "niti jedan"
msgid "No mouse"
msgstr "Nema miša"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Molimo istestirajte miša."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Za aktiviranje miša,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "POMAKNITE VAŠ KOTAČIĆ!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Završi"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Slijedeće ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Prijašnje"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Proširi stablo"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sažmi stablo"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Prebaci između ravno i grupno sortiranog"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
@@ -6260,7 +6694,7 @@ msgstr ""
"Nije pronađen niti jedan mrežni adapter na vašem sustavu.\n"
"Ne mogu postaviti ovu vrstu veze."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Odaberite mrežni međusklop"
@@ -6274,7 +6708,7 @@ msgstr ""
msgid "no network card found"
msgstr "ne mogu pronaći niti jednu mrežnu karticu"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Podešavam mrežu"
@@ -6290,15 +6724,15 @@ msgstr ""
"Vaše ime računala bi trebalo biti potpuno-kvalificirano ime računala,\n"
"kao što je ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Ime računala"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../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
msgid "Network Configuration Wizard"
msgstr "Čarobnjak mrežnih postavki"
@@ -6353,7 +6787,7 @@ msgstr "ISDN postavke"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Izaberite vašeg pružatelja Internet usluga.\n"
" Ako nije na popisu odaberite Drugi"
@@ -6372,14 +6806,14 @@ msgstr "Protokol za ostatak svijeta"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol za ostatak svijeta \n"
" bez D-kanala (za iznajmljene linije)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Koji protokol želite koristiti ?"
#: ../../network/isdn.pm_.c:199
@@ -6403,7 +6837,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ukoliko imate ISA karticu, vrijednosti na slijedećem zaslonu trebale bi biti "
@@ -6420,13 +6855,13 @@ msgid "Continue"
msgstr "Nastavi"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kakvu ISDN karticu imate?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Pronašao sam ISDN PCI karticu međutim ne znam kojeg je tipa. Molim izaberite "
"vašu PCI karticu na slijedećem ekranu."
@@ -6445,47 +6880,47 @@ msgstr "Izaberite serijski port na kojemu se nalazi modem."
msgid "Dialup options"
msgstr "Podesi dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Ime veze"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonski broj"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Prijavno ime"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Temeljem skripta"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal-zasnovano"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Ime domene"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Prvi DNS poslužitelj (opciono)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS poslužitelj (opciono)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6493,7 +6928,7 @@ msgstr ""
"\n"
"Možete isključiti ili ponovno konfigurirati vašu vezu."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6501,11 +6936,11 @@ msgstr ""
"\n"
"Možete ponovno konfigurirati vašu vezu."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6513,35 +6948,32 @@ msgstr ""
"\n"
"Možete se spojiti na Internet ili ponovno konfigurirati vašu vezu."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Niste trenutno spojeni na Internet."
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
-msgstr "Povezan"
+msgstr "Poveži"
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
-msgstr "Odspoji..."
+msgstr "Odspoji"
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
-msgstr "Podesi mrežu"
+msgstr "Podesi vezu"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internet veza i postava"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada ćemo podesiti %s vezu."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6560,12 +6992,12 @@ msgstr ""
"\n"
"Pritisnite U redu za nastavak."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Mrežne postavke"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6576,9 +7008,9 @@ msgstr ""
"Pritisnite U redu da zadržite postojeće postavke, ili Odustani za ponovno "
"konfiguriranje vaše mrežne/Internet veze.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6589,66 +7021,72 @@ msgstr ""
"Ukoliko ne želite koristiti auto detekciju, odselektirajte kvadratić s "
"potvrdom.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Izaberite profil za konfiguriranje"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Koristi auto detekciju"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ekspertni mod"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Otkrivanje uređaja..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normalna modemska veza"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detektiran na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN veza"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detektirano %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL veza"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detektirano na međusklopu %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kablovska veza"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detektirana kablovska veza"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN veza"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet kartica(e) pronađene"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Izaberite vezu koju želite podesiti"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6658,23 +7096,23 @@ msgstr ""
"Molimo izaberite koji želite koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet veza"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Da li želite pokreniti vašu vezu kod svakog podizanja (boot) sustava ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Mrežne postavke"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Mreža treba biti ponovno pokrenuta"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6685,7 +7123,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6695,7 +7133,7 @@ msgstr ""
"\n"
"Konfiguracija će sada biti primjenjena na vašem sustavu.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6703,16 +7141,20 @@ msgstr ""
"Nakon što je to napravljeno, preporučamo da ponovno pokrenete vaše X\n"
"okružje kako bi izbjegli probleme prilikom promjene imena računala."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
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"
+"work, you might want to relaunch the configuration."
msgstr ""
+"Došlo je do problema tijekom namještanja. Provjerite vezu putem "
+"net_monitora\n"
+"ili mcca. Ako vaša veza ne radi, možda ćete morati ponovno pokrenuti\n"
+"konfiguraciju"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6722,7 +7164,7 @@ msgstr ""
"Jednostavno prihvatite ovaj uređaj konfiguriran.\n"
"Promjena polja niže će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6732,38 +7174,42 @@ msgstr ""
"Svaka stavka treba biti unesena kao IP adresa odvojena\n"
"točkama (npr. 1.2.3.4)"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Podešavam mrežni uređaj %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (upravljački program %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmaska"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatski IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Pokrenuto pri podizanju"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti oblika 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6775,64 +7221,64 @@ msgstr ""
"primjerice mojeracunalo.odjel.domena.hr.\n"
"Također unesite IP adresu gateway računala ako gateway postoji"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS poslužitelj"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
-msgstr ""
+msgstr "Gateway (npr. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Postava proxy-a"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Prati id mrežne kartice (korisno za laptope)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Postava Interneta"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Da li želite pokušati spajanje na Internet ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testiram vašu vezu..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sustav je sada spojen na Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Zbog sigurnosnih razloga, biti će sada odspojen."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6840,111 +7286,116 @@ msgstr ""
"Čini se kako sustav nije spojen na internet.\n"
"Probajte ponovno podesiti vašu vezu."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Postava Veze"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Molim ispunite ili provjerite vrijednost doljnjeg polja"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartice"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memorija kartice (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartice"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartice"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartice"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vaš osobni telefonski broj"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Ime ISP pružatelja (npr. provider.hr)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telef. broj pružatelja"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Pružateljev DNS 1 (opciono)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Pružateljev DNS 2 (opciono)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Odaberite vašu zemlju"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Način biranja"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Brzina"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Vrijeme čekanja veze (u sek)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Korisničko ime"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Korisnička Lozinka"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Proširene particije nisu podržane na ovoj platformi"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Imate rupu u svojoj particijskoj tablici međutim ja je ne mogu iskoristiti.\n"
"Jedino rješenje je da pomaknete vašu primarnu particiju kako bi rupa bila\n"
"odmah do proširenih particija."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Vraćanje iz datoteke %s nije uspjelo: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Loša backup datoteka"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Greška prilikom pisanja u datoteku %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6954,188 +7405,186 @@ msgstr ""
"Test za provjeru integriteta podataka je neuspješan. \n"
"To znači da pisanje bilo čega na vaš disk rezultira slučajnim smećem"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "potrebno"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "važno"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "vrlo lijepo"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "lijepo"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "možda"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR Nova Generacija"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Ispiši, Bez Reda"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokalni pisač"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Udaljeni pisač"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Pisač na udaljenom CUPS poslužitelju"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Pisač na udaljenom lpd poslužitelju"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Mrežni pisač (TCP/socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Pisač na SMB/Windows 95/98/NT poslužitelju"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Pisač na NetWare poslužitelju"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Unesite URI pisača"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Proslijedi (pipe) na komandu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Nepoznati model"
-#: ../../printer.pm_.c:532
-#, fuzzy
+#: ../../printer.pm_.c:535
msgid "Local Printers"
-msgstr "Lokalni pisač"
+msgstr "Lokalni pisači"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
-msgstr "Udaljeni pisač"
+msgstr "Udaljeni pisači"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
-msgstr ""
+msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
-msgstr ""
+msgstr ", USB pisač \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
+msgstr ", multi-funkcionalan uređaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
-msgstr ""
+msgstr ", multi-funkcionalan uređaj na USBu"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
-msgstr ""
+msgstr ", multi-funkcionalan uređaj na HP JetDirectu"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
-msgstr ""
+msgstr ", multi-funkcionalan uređaj"
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
+#: ../../printer.pm_.c:562
+#, c-format
msgid ", printing to %s"
-msgstr "Greška prilikom pisanja u datoteku %s"
+msgstr ", ispis na %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
+msgstr "na LPD poslužitelju \"%s\", pisač \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
+msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
+msgstr "na Windows poslužitelju \"%s\", dijeli \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
+msgstr "na Novell poslužitelju \"%s\", pisač \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
-msgstr ""
+msgstr ", korištenjem komande %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Raw printer (Bez upravljačkog programa)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na ovom računalu)"
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
+#: ../../printer.pm_.c:871
+#, c-format
msgid "On CUPS server \"%s\""
-msgstr "IP CUPS poslužitelja"
+msgstr "Na CUPS poslužitelju \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Uobičajeno)"
@@ -7148,26 +7597,22 @@ msgid "How is the printer connected?"
msgstr "Kako je pisač povezan?"
#: ../../printerdrake.pm_.c:25
-#, fuzzy
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
"printers will be automatically detected."
msgstr ""
"\n"
-"Pisače na udaljenom CUPS poslužitelju ne morate konfigurirati\n"
-"ovdje; ti pisači će biti automatski pronađeni. Molim,\n"
-"izaberite \"Pisač na udaljenom CUPS poslužitelju\" u tom slučaju."
+"Pisače na udaljenom CUPS poslužitelju ne morate konfiguriratiovdje; ti "
+"pisači će biti automatski pronađeni."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
-msgstr "LAN postavke"
+msgstr "CUPS postavke"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
-msgstr "Udaljeni CUPS poslužitelj"
+msgstr "Odredi CUPS poslužitelj"
#: ../../printerdrake.pm_.c:71
msgid ""
@@ -7179,6 +7624,13 @@ msgid ""
"to enter the CUPS server IP address and optionally the port number to get "
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
+"Da bi pristupili pisačima na udaljenim CUPS poslužiteljima u vašoj "
+"lokalnojmreži ne morate ništa namještati; CUPS poslužitelji automatski "
+"obavještavajuvaše računalo o svojim pisačima. Svi pisači koji su poznati "
+"vašem računalusu popisani u \"Udaljeni pisači\" odjeljku glavnog prozora "
+"Printerdrakea. Kadavaš CUPS poslužitelj nije u vašoj lokalnoj mreži, morate "
+"unesti IP adresuCUPS poslužitelja i, opcionalno, broj porta, da bi dobili "
+"informacije o pisačuod poslužitelja. Inače, ostavite ova polja praznima."
#: ../../printerdrake.pm_.c:72
msgid ""
@@ -7189,12 +7641,18 @@ msgid ""
"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
+"\n"
+"Obično, CUPS se automatski namješta prema vašem mrežnom okružju, tako "
+"damožete pristupiti pisačima na CUPS poslužiteljima u vašoj lokalnoj mreži."
+"Ako ovo ne radi dobro, isključite \"Automatsku CUPS konfiguraciju\" i "
+"uredite datoteku /etc/cups/cupsd.conf ručno. Nemojte zaboraviti poslije "
+"ponovnopokrenuti CUPS (naredba:\"service cups restart\")."
#: ../../printerdrake.pm_.c:76
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba izgledati poput 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Broj porta bi trebao biti cjelobrojni broj!"
@@ -7202,7 +7660,7 @@ msgstr "Broj porta bi trebao biti cjelobrojni broj!"
msgid "CUPS server IP"
msgstr "IP CUPS poslužitelja"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7210,21 +7668,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatska CUPS konfiguracija"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Otkrivanje uređaja ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Iskušaj portove"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
-msgstr "Nema pisača"
+msgstr "Dodaj novi pisač"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7236,15 +7685,24 @@ msgid ""
"you access to all available printer drivers, driver options, and printer "
"connection types."
msgstr ""
+"\n"
+"Dobrodošli u Čarobnjak za namještanje pisača\n"
+"\n"
+"Ovaj čarobnjak vam omogućuje da instalirate lokalne ili udaljene pisače "
+"koji\n"
+"će se koristiti s ovog računala kao i sa drugih računala u mreži.\n"
+"\n"
+"Pita vas za sve potrebne informacije za namještanje pisača i daje vam "
+"pristupsvim dostupnim pokretačkim programima za pisače, njihovim opcijama i "
+"vrstamaveza prema pisačima."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokalni pisač"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7261,13 +7719,26 @@ msgid ""
"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
+"\n"
+"Dobrodošli u Čarobnjak za namještanje pisača\n"
+"\n"
+"Ovaj čarobnjak će vam pomoći da instalirate pisače spojene na ovo računalo.\n"
+"\n"
+"Priključite svoj pisač(e) u ovo računalo i uključite ga/ih. Stisnite na "
+"\"Dalje\"kada ste spremni, ili na \"Odustani\" ako ne želite sada namještati "
+"pisač(e).\n"
+"\n"
+"Primjetite da se neka računala mogu srušiti tijekom automatskog "
+"prepoznavanjapisača. Isključite \"Automatski prepoznaj pisače\" da bi "
+"instalirali pisač bezautomatskog prepoznavanja. Koristite \"Mod za stručnjake"
+"\" ili printerdrake kadaželite namjestiti ispis na udaljenom pisaču ako ga "
+"printerdrake ne prikažeautomatski."
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
-msgstr "Automatski pronalazak pisača"
+msgstr "Automatski prepoznaj pisač"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7280,12 +7751,22 @@ msgid ""
"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
"Center."
msgstr ""
+"\n"
+"Čestitamo, vaš pisač je sada instaliran i namješten!\n"
+"\n"
+"Možete pisati korištenjem \"Ispis\" naredbe u vašoj aplikaciji (obično u "
+"\"File\" izborniku).\n"
+"\n"
+"Ako želite dodati, maknuti ili promijeniti ime pisaču, ili želite "
+"promijenitipodrazumijevane opcije (ladicu za uvlačenje papira, kakvoću "
+"ispisa,...),izaberite \"Pisač\" u \"Hardver\" odjeljku Mandrake kontrolnog "
+"centra."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatski pronalazak pisača"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7294,234 +7775,269 @@ msgid ""
"\n"
"Do you really want to get your printers auto-detected?"
msgstr ""
+"Printerdrake može prepoznati vaše lokalne paralelne i USB pisače, "
+"aliprimjetite da na nekim sustavima proces automatskog prepoznavanja "
+"MOŽEZAMRZNUTI VAŠ SUSTAV I OŠTETITI DATOTEČNE SUSTAVE! Zato činite to "
+"NAVLASTITI RIZIK!\n"
+"\n"
+"Da li zaista želite automatski prepoznati vaše pisače?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Koristi auto detekciju"
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
-msgstr "Ime udaljenog pisača"
+msgstr "Ručno podešavanje pisača"
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Iskušaj portove"
+
+#: ../../printerdrake.pm_.c:252
+#, c-format
msgid "Detected %s"
-msgstr "detektirano %s"
+msgstr "Detektirano %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
-msgstr ""
+msgstr "Pisač na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
-msgstr ""
+msgstr "USB pisač \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
"printer: /dev/usb/lp1, ...)."
msgstr ""
+"Nije pronađen nijedan lokalni pisač! Za ručno instaliranje pisača upišiteime "
+"uređaja/datoteke u liniju za unos (paralelni portovi:/dev/lp0, /dev/lp1, ...,"
+"odgovara LPT1:, LPT2:, ..., prvi USB pisač: /dev/usb/lp0, drugi USB pisač:/"
+"dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
-msgstr "Unesite URI pisača"
+msgstr "Morate unijeti ime uređaja ili datoteke!"
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
-msgstr "Lokalni pisač"
+msgstr ""
+"Nije pronađen lokalni pisač!\n"
+"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
+"Mrežni pisači se mogu instalirati samo nakon instalacije. Izaberite\"Hardver"
+"\" i potom \"Pisač\" u Mandrake kontrolnom centru."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
+"Da bi instalirali mrežne pisače, stisnite \"Odustani\", prebacite se u"
+"\"Stručnjak\" mod i ponovno stisnite \"Dodaj novi pisač\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
+"Ovaj pisač je prepoznat, ako to nije onaj kojeg želite podešavati, "
+"upišiteime uređaja/datoteke u liniju za unos."
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
+"Ovo je popis svih prepoznatih pisača. Izaberite kojeg želite podesitiili "
+"upišite ime uređaja/datoteke u liniju za unos"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
"if you prefer a customized printer configuration, turn on \"Manual "
"configuration\"."
msgstr ""
+"Ovaj pisač je prepoznat. Namještanje pisača će raditi potpuno automatski.Ako "
+"vaš pisač nije ispravno prepoznat ili ako biste radije ručno "
+"namještalipisač, uključite \"Ručno namještanje\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
"automatically. If your printer was not correctly detected or if you prefer a "
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
+"Ovaj je popis svih prepoznatih pisača. Izaberite pisač kojeg želite podesiti."
+"Namještanje pisača će raditi potpuno automatski.Ako vaš pisač nije ispravno "
+"prepoznat ili ako biste radije ručno namještalipisač, uključite \"Ručno "
+"namještanje\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
+"Izaberite port preko kojeg je vaš pisač povezan ili upišite ime uređaja/"
+"datotekeu liniju za unos."
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
-msgstr "Izaberite serijski port na kojemu se nalazi modem."
+msgstr "Izaberite port na kojem se nalazi pisač."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
+" (paralelni portovi:/dev/lp0, /dev/lp1, ...,odgovara LPT1:, LPT2:, ..., prvi "
+"USB pisač: /dev/usb/lp0, drugi USB pisač: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
-msgstr "Unesite URI pisača"
+msgstr "Morate izabrati/upisati pisač/uređaj!"
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
-msgstr "Postava Interneta"
+msgstr "Ručno namještanje"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
+"Da li je vaš pisač HPov multi-funkcijski uređaj (OfficeJet, PSC, PhotoSmart,"
+"LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
-msgstr "Instaliram paket %s"
+msgstr "Instaliram HPOJ paket"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
+msgstr "Provjeravam uređaj i namještam HPOJ ..."
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Instaliram paket %s"
+msgid "Installing SANE packages..."
+msgstr "Instaliram SANE paket..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaliram pakete..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
-msgstr ""
+msgstr "Skeniram na vašem HP multi-funkcijskom uređaju"
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Čitam bazu pisača ..."
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skeniram na vašem HP multi-funkcijskom uređaju"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
+msgstr "Činim pisač dostupnim CUPSu ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Čitam bazu pisača ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Postavke udaljenog lpd pisača"
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-"Ukoliko želite koristiti udaljeni lpd red morate unijeti\n"
-"ime ispisnog poslužitelja te ime reda na poslužitelju\n"
-"na koji želite ispisivati."
+"Ukoliko želite koristiti udaljeni lpd pisač, morate unijetiime ispisnog "
+"poslužitelja te ime pisača na tom poslužitelju."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Udaljeno ime računala"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Ime udaljenog pisača"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Nedostaje ime računala udaljenog pisača!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Nedostaje ime udaljenog pisača!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Postavke SMB (Windows 9x/NT) pisača"
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
-"Za ispis na SMB pisač, trebate navesti\n"
-"ime SMB domaćina (Primjetite da može biti različit od TCP/IP imena "
-"računala)\n"
-"i vjerojatno IP adresu poslužitelja pisača, kao i\n"
-"ime dijeljenog resursa za pisač kojem želite pristupiti i bilo koje\n"
-"primjenjivo korisničko ime, lozinku ili informacije o radnoj grupi."
+"Za ispis na SMB pisač, trebate navestiime SMB domaćina (Primjetite da može "
+"biti različit od TCP/IP imena računala) i vjerojatno IP adresu ispisnog "
+"poslužitelja, kao iime dijeljenog resursa za pisač kojem želite pristupiti i "
+"bilo kojeprimjenjivo korisničko ime, lozinku ili informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB poslužitelj"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP SMB poslužitelja"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Ime sharea"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Ime poslužitelja ili IP poslužitelja mora biti naveden!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Ime dijeljenog samba resursa nedostaje!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "SIGURNOSNO UPOZORENJE!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7544,8 +8060,27 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Sada ćete namjestiti ispis na Windows korisničkom računu sa lozinkom. "
+"Zboggreške u arhitekturi Samba klijent softvera, lozinka je stavljena u "
+"čistomtekstualnom obliku u komandnoj liniji Samba klijenta koji se koristi "
+"zaslanje ispisnog posla Windows poslužitelju. Tako je moguće da si svaki "
+"korisnikna ovom računalu ispiše lozinku na ekranu izdavanje komandi poput "
+"\"psauxwww\".\n"
+"\n"
+"Preporučamo da iskoristite jednu od slijedećih alternativa (u svim "
+"slučajevimamorate provjeriti da samo računala sa vaše lokalne mreže imaju "
+"pristup vašemWindows serveru, npr. putem vatrozida):\n"
+"\n"
+"Koristite korisnički račun bez lozinke na vašem Windows poslužitelju, kao"
+"\"GUEST\" račun ili posebni račun određen samo za ispis. Nemojte "
+"micatizaštitu lozinkom sa osobnog ili administratorskog računa.\n"
+"\n"
+"Namjestite vaš Windows poslužitelj da omogućuje pristup pisaču preko "
+"lpdprotokola. Zatim namjestite ispis s ovog računala sa \"%s\" tipom veze "
+"uPrinterdrakeu.\n"
+"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7553,119 +8088,122 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Namjestite vaš Windows poslužitelj da omogućuje pristup pisaču preko "
+"IPPprotokola i namjestite ispis s ovog računala sa \"%s\" tipom veze u "
+"Printerdrakeu.\n"
+"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
+"Povežite vaš pisač na Linux poslužitelj i dopustite da se vaša "
+"Windowsračunala povezuju na njega kao klijenti.\n"
+"\n"
+"Da li stvarno želite nastaviti namještati ovaj pisač kao što činite sada?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Postavke NetWare pisača"
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
"print queue name for the printer you wish to access and any applicable user "
"name and password."
msgstr ""
-"Za ispis na NetWare pisač, trebate navesti\n"
-"NetWare ime poslužitelja pisača (Primjetite da može biti različit od\n"
-"njegovog TCP/IP imena računala!) kao i ime ispisnog reda za piač koji\n"
-"želite pristupiti kao i primjenjivo korisničko ime i lozinku."
+"Za ispis na NetWare pisač, trebate navestiNetWare ime ispisnog poslužitelja "
+"(Primjetite da može biti različit odnjegovog TCP/IP imena računala!) kao i "
+"ime ispisnog reda za pisač kojimželite pristupiti, te neko primjenjivo "
+"korisničko ime i lozinku."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Ispisni poslužitelj"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Ime reda pisača"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Ime NCP poslužitelja nedostaje!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Nedostaje ime NCP reda!"
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
-msgstr "Opcije socket pisača"
+msgstr "Opcije TCP/Socket pisača"
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
"number is usually 9100, on other servers it can vary. See the manual of your "
"hardware."
msgstr ""
-"Za ispis na socket pisač, trebate navesti \n"
-"ime poslužitelja od printera te opciono broj porta."
+"Za ispis na TCP ili socket pisač, trebate navestiime poslužitelja pisača te "
+"opciono broj porta. Na HP JetDirect poslužiteljimabroj porta je obično 9100, "
+"na drugim poslužiteljima može biti drugačije.Pogledajte priručnik vašeg "
+"hardvera."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Ime računala od pisača"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Nedostaje ime računala od pisača!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI Uređaja pisača"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
+"Možete izravno odrediti da URI pristupa pisaču. URI mora odgovarati oliCUPS "
+"ili Foomatic specifikacijama. Primjetite da nisu svi URI tipovi podržani od "
+"svih spoolera."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Ispravan URI mora biti unešen!"
-#: ../../printerdrake.pm_.c:1004
-#, fuzzy
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-"Svaki pisač treba ime (na primjer lp).\n"
-"Polja opisa i lokacije ne mora biti \n"
-"popunjeno. To su komentari za korisnike."
+"Svaki pisač treba ime (na primjer \"pisač\").Polja opisa i lokacije ne "
+"moraju biti popunjena. To su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Ime pisača"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Opis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Pripremam bazu pisača ..."
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
-msgstr "Ime udaljenog pisača"
+msgstr "Model vašeg pisača"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7679,28 +8217,35 @@ msgid ""
"\n"
"%s"
msgstr ""
+"Printerdrake je usporedio ime modela koje je dobio autodetekcijom s "
+"modelimapopisanim u svojoj bazi podataka da bi našao koji najbolje odgovara. "
+"Ovaj izbormože biti pogrešan, posebice kada vaš pisač uopće nije u bazi "
+"pisača. Zatoprovjerite da li je izbor točan i stisnite \"Model je točan\" "
+"ako jest, a ako nestisnite \"Ručno izaberi model\" da bi mogli ručno "
+"izabrati model pisačana slijedećem ekranu.\n"
+"\n"
+"Za vaš pisač Printerdrake je našao:\n"
+"\n"
+"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
-msgstr "Da li je ovo ispravno?"
+msgstr "Model je točan"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
-msgstr "Ime udaljenog pisača"
+msgstr "Ručno izaberi model"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Izabir modela pisača"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Kakav model pisača imate?"
-#: ../../printerdrake.pm_.c:1141
-#, fuzzy
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7710,23 +8255,23 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Molim, provjerite da li je Printerdrake \n"
-"automatski pronašao vaš model pisača\n"
-"ispravno. Pronađite ispravan model u\n"
-"popisu ukoliko pokazivač pokazuje a\n"
-"krivi model ili na \"Raw pisač\"."
+"Molim, provjerite da li je Printerdrakeautomatski pronašao vaš model "
+"pisačaispravno. Pronađite ispravan model upopisu kada pokazivač pokazuje "
+"nakrivi model ili na \"Raw pisač\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
+"Ako vaš pisač nije prikazan, izaberite kombatibilni (pogledajte priručnik "
+"odpisača) ili neki slični."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "OKI winprinter konfiguracija"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7735,20 +8280,30 @@ msgid ""
"first parallel port before you print a test page. Otherwise the printer will "
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
+"Namještate OKI laserski winpisač. Ovi pisači koriste dosta poseban\n"
+"komunikacijski protokol i stoga će raditi samo ako su spojeni na "
+"prviparalelni port. Kada je vaš pisač spojen na drugi port ili na "
+"kutijuispisnog poslužitelja spojite ga na prvi paralelni port prije "
+"ispisaprobne stranice. Inače pisač neće raditi. Vašu postavu tipa veze "
+"pokretačkiprogram će ignorirati."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet konfiguracija"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
"printer to a local port or configure it on the machine where it is connected "
"to."
msgstr ""
+"Pokretački programi za Inkjet pisače od Lexmarka podržavaju samo lokalne "
+"pisače,ne pisače na udaljenim računalima ili kutijama ispisnog poslužitelja. "
+"Spojitevaš pisač na lokalni port ili ga namjestite na računalu u kojeg je "
+"uključen."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7760,8 +8315,17 @@ msgid ""
"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
"program."
msgstr ""
+"Da bi mogli ispisivati sa svojim Lexmark inkjetom i ovom postavom, "
+"trebateLexmarkove inkjet pokretačke programe za pisače (http://www.lexmark."
+"com/).Otiđite na američki site i stisnite na \"Drivers\" dugme. Zatim "
+"izaberitevaš model i potom \"Linux\" kao operativni sustav. Pokretački "
+"programi dolazekao RPM paketi ili skripte za ljusku sa interaktivnom "
+"grafičkom instalacijom.Ne trebate raditi ovu konfiguraciju iz grafičkog "
+"sučelja. Odustanite odmahnakon pristajanja na licencu. Zatim ispišite "
+"stranice za namještanje glavepisača sa \"lexmarkmaintain\" i podesite "
+"postavke za namještanje glave saovim programom."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7770,23 +8334,29 @@ msgid ""
"duplex unit, extra trays) are set correctly. Note that with a very high "
"printout quality/resolution printing can get substantially slower."
msgstr ""
+"Podrazumijevane postavke pisača\n"
+"\n"
+"Trebali biste se uvjeriti da li su veličina stranice, vrsta tinte/"
+"načinispisa (ako je dostupan) i hardverske postavke laserskih pisača "
+"(memorija,duplex jedinica, dodatne ladice) postavljeni ispravno. Primjetite "
+"dasa vrlo velikom kakvoćom ispisa/rezolucijom ispis može znatno usporiti."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s je izvan dosega!<"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7795,52 +8365,55 @@ msgstr ""
"Da li želite postaviti ovaj pisač (\"%s\")\n"
"kao podrazumijevani pisač?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testne stranice"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
"laser printers with too low memory it can even not come out. In most cases "
"it is enough to print the standard test page."
msgstr ""
+"Izaberite probne stranice koje želite ispisati.\n"
+"Primjetite: foto probna stranica se može vrlo dugo ispisivati, a na "
+"laserskimpisačima sa malo memorije i uopće se ne ispisati. U većini "
+"slučajeva jedovoljno ispisati standardnu probnu stranicu."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Bez testnih stranica"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Ispiši"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardna testna stranica"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna stranica (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativna testna stranica (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto testna stranica"
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
-msgstr "Ispisujem probnu stranicu(e)..."
+msgstr "Ne ispiši nikakve probne stranice"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Ispisujem probnu stranicu(e)..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7855,26 +8428,23 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
"Probna stranica(e) poslana je na pisač.\n"
"Ponekad je potrebno par sekundi prije nego pisač počne s ispisom.\n"
-"Da li sve radi kako treba?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
-msgstr ""
+msgstr "Da li je sve radilo ispravno?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
-msgstr "Nema pisača"
+msgstr "Raw pisač"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7882,16 +8452,23 @@ msgid ""
"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
"to modify the option settings easily.\n"
msgstr ""
+"Da bi ispisali datoteku iz komandne linije (terminalski prozor) koristiteili "
+"komandu \"%s <datoteka>\" ili grafički alat za ispis: \"xpp <datoteka>\"ili "
+"\"kprinter <datoteka>\". Grafički alati vam omogućuju da lako izaberetepisač "
+"i podesite opcije.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
+"Ove komande možete također koristiti u \"Printing command\" polju dijalogaza "
+"ispis mnogih aplikacija, ali ovdje ne stavljate ime datoteke jerdatoteku za "
+"ispis dobavlja sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7899,50 +8476,66 @@ msgid ""
"particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\". "
msgstr ""
+"\n"
+"\"%s\" komanda dozvoljava da podesite opcije za pojedini posao ispisa.Samo "
+"dodajte željene postavke u komandnu liniju, npr. \"%s <datoteka>\"."
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
+"Da bi saznali o dostupnim opcijama za trenutni pisač pročitajte ili "
+"popisprikazan dolje ili stisnite na \"Popis ispisnih opcija\".%s\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
+"Ovo je popis dostupnih opcija za ispis za trenutni pisač:\n"
+"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
+"Da bi ipisali datoteku iz komandne linije (terminalski prozor) "
+"koristitekomandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
+"Ovu naredbu možete također koristiti u \"Printing command\" polju "
+"dijalogamnogih aplikacija. Ali tamo ne upisujete ime datoteke jer datoteku "
+"za ispisdobavlja sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
+"Da bi dobili popis opcija dostupnih za trenutni pisač stisnite na "
+"\"Popisispisnih opcija\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
+"Da bi ispisali datoteku iz komandne linije (terminalskog prozora) "
+"koristitenaredbu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7951,8 +8544,13 @@ msgid ""
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
+"Možete također koristiti grafičko sučelje \"xpdq\" za namještanje opcijai "
+"upravljanje poslovima ispisa.\n"
+"Ako koristite KDE okružje, imate \"dugme za paniku\", ikonu na radnom stolu,"
+"nazvanu \"ZAUSTAVI pisač!\", koja zaustavlja sve poslove ispisa čim "
+"jestisnete. Ovo je korisno kad se, npr., zaglavi papir.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7960,70 +8558,91 @@ msgid ""
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+"\"%s\" i \"%s\" naredbe vam također omogućuju da podesite opcije za "
+"određeniposao ispisa. Jednostavno dodajte željene postavke u komandnu "
+"liniju, npr.\"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvori"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1773
#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ispis/skeniranje na \"%s\""
+
+#: ../../printerdrake.pm_.c:1774
+#, c-format
msgid "Printing/Scanning on \"%s\""
-msgstr "Onemogućujem mrežu"
+msgstr "Ispis/skeniranje na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ispis/skeniranje na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
+#, c-format
msgid "Printing on the printer \"%s\""
-msgstr "Onemogućujem mrežu"
+msgstr "Ispis na pisaču \"%s\""
+
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zatvori"
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
-msgstr "Postavke pisača"
+msgstr "Popis ispisnih opcija"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"Vaš HP multi-funkcijski uređaj je automatski namješten za skeniranje. "
+"Sadamožete skenirati sa \"scanimage\" (\"scanimage -d hp:%s\" da odredite "
+"kojiskener, ako ih imate više) iz komandne linije ili s grafičkim sučeljima"
+"\"xscanimage\" ili \"xsane\". Ako koristite GIMP, također možete "
+"skeniratibiranjem odgovarajuće stavke u \"File\"/\"Acquire\" izborniku. "
+"Probajte\"man scanimage\" i \"man sane-hp\" u komandnoj liniji za više "
+"informacija.\n"
+"\n"
+"Ne koristite \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
+msgstr "Čitam podatke o pisaču ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
-msgstr "Postava Interneta"
+msgstr "Prebaci postavke pisača"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8032,64 +8651,81 @@ msgid ""
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
+"Možete preslikati postavke pisača koje ste napravili za spooler %s na %s,vaš "
+"trenutni spooler. Svi konfiguracijski podaci (ime pisača, opis, lokacija,"
+"vrsta veze i podrazumijevane opcije) su preuzeti, ali ne i poslovi.\n"
+"Ne mogu se svi redovi prebaciti zbog:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
+"CUPS ne podržava pisače na Novell poslužiteljima ili pisače koji "
+"šaljupodatke u naredbu slobodne forme.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
+"PDQ podržava samo lokalne pisače, udaljene LPD pisače i socket/TCPpisače.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
+msgstr "LPD i LPRng ne podržavaju IPP pisače.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
+"Uz to, ovaj program ne može stvarati redove ili \"foomatic-configure\" sene "
+"može prebaciti."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
+"\n"
+"Također, pisači podešeni sa PPD datotekama od svog proizvođača ili sanative "
+"CUPS pokretačkim programima se ne mogu prebaciti."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
+"\n"
+"Označite pisače koje želite prebaciti i stisnite \"Prebaci\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
-msgstr ""
+msgstr "Ne prebacuj pisače"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
-msgstr ""
+msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
"Click \"Transfer\" to overwrite it.\n"
"You can also type a new name or skip this printer."
msgstr ""
+"Pisač \"%s\" već postoji na %s.\n"
+"Stisnite \"Prebaci\" da prepišete preko njega.\n"
+"Možete i upisati novo ime ili preskočiti ovaj pisač."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Ime pisača može sadržavati samo slova, brojeve i podvlaku"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8098,63 +8734,62 @@ msgstr ""
"Pisač \"%s\" već postoji,\n"
"da li zaista želite prepisati njegovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Novo ime pisača"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
-msgstr ""
+msgid "Transferring %s..."
+msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
+"Prebacili ste vaš bivši podrazumijevani pisač(\"%s\"), da li bi trebao "
+"bitipodrazumijevani pisač i u novom sustavu %s?"
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
+msgstr "Osvježavam padatke o pisaču ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
-msgstr "Postavke pisača"
+msgstr "Postavke udaljenog pisača"
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Pokrećem vašu vezu..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
+msgstr "Pokrećem mrežu ..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Podesi mrežu"
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
-msgstr "Niste podesili monitor"
+msgstr "Mreža nije podešena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
+"Sada ćete podesiti udaljeni pisač. Zahtjeva ispravni pristup mreži, aliona "
+"još nije podešena. Ako nastavite bez ispravne mreže, nećete moćikoristiti "
+"pisač kojeg sada podešavate. Kako želite nastaviti?"
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
-msgstr "Podešavam mrežu"
+msgstr "Nastavi bez podešavanja mreže"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8163,35 +8798,39 @@ msgid ""
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
+"Postava mreže napravljena tijekom instalacije se ne može sada pokrenuti."
+"Provjerite da li je mreža dostupna poslije pokretanja sustava i "
+"ispravitepostavke korištenjem Mandrake kontrolnog centra, odjeljak \"Mreža i "
+"Internet\"/\"Veza\", i poslije podesite pisač, također iz Mandrake "
+"kontrolnog centra,odjeljak \"Hardver\"/\"Pisač\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
+"Mreža nije pokrenuta. Provjerite postavke i hardver. Zatim probajte "
+"ponovnopodesiti vaš udaljeni pisač."
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Koji ispisni sustav želite koristiti?"
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
+msgstr "Ponovno pokrećem ispisni sutav ..."
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
+#: ../../printerdrake.pm_.c:2065
msgid "high"
-msgstr "Visok"
+msgstr "Visoka"
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
-msgstr "Paranoidan"
+msgstr "Paranoidna"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
-msgstr ""
+msgstr "Instaliram ispisni sustav s %s sigurnosnom razinom."
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8205,13 +8844,20 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
+"Sada ćete instalirati ispisni sustav %s na sustav koji radi pod %s "
+"sigurnosnomrazinom.\n"
+"Ovaj ispisni sustav pokreće daemon (pozadinski proces) koji čeka na "
+"posloveispisa i rješava ih. Ovaj daemon je dostupan i udaljenim računalima "
+"prekomreže, te je tako moguće mjesto napada. Stoga se na ovoj sigurnosnoj "
+"razinisamo nekoliko izabranih daemona podrazumijevano pokreće.\n"
+"\n"
+"Da li stvarno želite namjestiti ispisivanje na ovom računalu?"
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
-msgstr "Koji ispisni sustav želite koristiti?"
+msgstr "Pokretanje ispisnog sustava prilikom podizanja sustava"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8224,218 +8870,222 @@ msgid ""
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
+"Ispisni sustav (%s) se neće automatski pokretati kada se računalu pokrene.\n"
+"\n"
+"Moguće je da je automatsko pokretanje isključeno zbog prebacivanja na "
+"višusigurnosnu razinu, jer je ispisni sustav moguća točka napada.\n"
+"\n"
+"Želite li ponovno uključiti automatsko podizanje ispisnog sustava?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
-msgstr ""
+msgstr "Provjeravam instalirani softver..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
-msgstr ""
+msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
-msgstr ""
+msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
-msgstr "Odaberite vezu pisača"
+msgstr "Odaberite spooler pisača"
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
-msgstr "Koji ispisni sustav želite koristiti?"
+msgstr "Koji ispisni sustav (spooler) želite koristiti?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Podesi pisač"
+msgid "Configuring printer \"%s\"..."
+msgstr "Podešavam pisač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Instaliram paket %s"
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
+msgstr "Instaliram Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Postavke pisača"
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
+msgstr "Pripremam PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
-msgstr "Podesi pisač"
+msgstr "Podešavam aplikacije..."
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
-msgstr "Da li želite podesiti pisač?"
+msgstr "Da li želite podesiti ispisivanje?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
-msgstr ""
+msgstr "Ispisni sustav:"
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
-msgstr "Pisac"
+msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
"OpenOffice.org."
msgstr ""
+"Navedeni pisači su podešeni. Dvostruko kliknite na pisač da bi mu "
+"promijenilipostavke; da bi ga odredili za podrazumijevani pisač; da bi "
+"pogledali informacijeo njemu; ili da bi pisač sa udaljenog CUPS poslužitelja "
+"učinili dostupnimStarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
+"Navedeni pisači su podešeni. Dvostruko kliknite na pisač da bi mu "
+"promijenilipostavke; da ga odredite za podrazumijevani pisač; ili da bi "
+"pogledaliinformacije o njemu."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
+msgstr "Osvježi popis pisača (za prikaz svih dostupnih udaljenih CUPS pisača)"
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
-msgstr "Podesi mrežu"
+msgstr "Promijeni ispisni sustav"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Završi"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
-msgstr "Da li želite iskušati postavu ?"
+msgstr "Želite li podesiti neki drugi pisač?"
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
-msgstr "Postavke modema"
+msgstr "Promijeni postavke pisača"
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2784
+#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
-msgstr "Da li želite iskušati postavu ?"
+msgstr ""
+"Pisač %s\n"
+"Što želite promijeniti na ovom pisaču?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
-msgstr ""
+msgstr "Napravi!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
-msgstr "Dijeljenje Internet Veze"
+msgstr "Vrsta veze s pisačem"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
-msgstr "Veza pisača"
+msgstr "Ime pisača, opis, lokacija"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
-msgstr ""
+msgstr "Proizvođač pisača, model, pokretački program"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
-msgstr ""
+msgstr "Proizvođač pisača, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
-msgstr ""
+msgstr "Odredi ovaj pisač za podrazumijevani"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Dodaj ovaj pisač StarOfficeu/OpenOffice.orgu"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Ukloni ovaj pisač iz StarOfficea/OpenOffice.orga"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
-msgstr "Ispisujem probnu stranicu(e)..."
+msgstr "Ispiši probne stranice"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
-msgstr "Da li želite iskušati postavu ?"
+msgstr "Saznajte kako koristiti ovaj pisač"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
-msgstr "Postavke udaljenog pisača"
+msgstr "Ukloni pisač"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Uklanjam stari pisač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Podrazumijevani pisač"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
+msgstr "Pisač \"%s\" je sada određen za podrazumijevani."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Dodavanje pisača StarOfficeu/OpenOffice.orgu"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Pisač \"%s\" je uspješno dodan StarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Nisam uspio dodati \"%s\" StarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Uklanjam pisač iz StarOfficea/OpenOffice.orga"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Pisač \"%s\" je uspješno uklonjen iz StarOfficea/OpenOffice.orga."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
+msgstr "Nisam uspio ukloniti pisač \"%s\" iz StarOfficea/OpenOffice.orga."
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2907
+#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Da li želite ponovno pokrenuti mrežu?"
+msgstr "Da li stvarno želite ukloniti pisač \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
+msgid "Removing printer \"%s\"..."
+msgstr "Uklanjam pisač \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8519,24 +9169,62 @@ msgstr "Lozinke se ne podudaraju. Pokušajte ponovno!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne mogu dodati particiju na _formatirani_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ne mogu pisati u datoteku %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid nije uspio"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid nije uspio (možda niste instalirali raidtools alate?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ova razina se treba koristiti sa pažnjom. Ona čini vaš sustav mnogo lakšim "
+"za korištenje,\n"
+"ali vrlo osjetljiv: ne smije biti korišten za računala koja su povezana u "
+"mreži ili na Internet. Naime, nema lozinke za pristup."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+" The security is now high enough to use the system as a "
+"server which can accept\n"
+" connections from many clients. Note: if your machine is only "
+"a client on the Internet, you should choose a lower level."
+msgstr ""
+"Sa ovom sigurnosnom razinom, korištenje ovog sustava kao poslužitelj postaje "
+"moguće.\n"
+"Sigurnost je sada toliko visoka da se sustav može koristiti kao poslužitelj\n"
+"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je vaše računalo "
+"samo klijent na Internetu, bolje da izaberete nižu razinu."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Napredne opcije"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcije"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA (Naprednu Linux Zvučnu Arhitekturu) zvučni sustav"
@@ -8595,7 +9283,7 @@ msgstr ""
"HardDrake pokreće isprobavanje hardware-a, i opciono konfigurira\n"
"novi/promjenjeni hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8671,8 +9359,7 @@ msgstr ""
"Linux Virtualni Poslužitelj, koristi se za pravljenje visoko raspoloživog\n"
"poslužitelja visokih performansi."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -8749,14 +9436,13 @@ msgstr ""
"poput NFS-a ili NIS-a. Portmap poslužitelj mora biti pokrenut na računalima\n"
"koji su poslužitelji za protokole koji se služe RPC mehanizmima."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
-"Postfix je Mail Transport Agent, koji je program koji\n"
-"šalje mail-ove sa jedne mašine na drugu."
+"Postfix je Mail Transport Agent, što je program kojišalje mail-ove sa jednog "
+"računala na drugo."
#: ../../services.pm_.c:67
msgid ""
@@ -8845,33 +9531,29 @@ msgstr "Internet"
#: ../../services.pm_.c:126
msgid "File sharing"
-msgstr ""
+msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
-msgstr "Sistemski mod"
+msgstr "Sustav"
#: ../../services.pm_.c:133
-#, fuzzy
msgid "Remote Administration"
-msgstr "Postavke udaljenog lpd pisača"
+msgstr "Udaljeno administriranje"
# ../../share/compssUsers
#: ../../services.pm_.c:141
-#, fuzzy
msgid "Database Server"
-msgstr "Baze"
+msgstr "Poslužitelj baza podataka"
#: ../../services.pm_.c:170
#, c-format
msgid "Services: %d activated for %d registered"
-msgstr ""
+msgstr "Servisi: %d aktiviran za %d registriran"
#: ../../services.pm_.c:186
-#, fuzzy
msgid "Services"
-msgstr "uređaj"
+msgstr "Servisi"
#: ../../services.pm_.c:198
msgid "running"
@@ -8898,22 +9580,20 @@ msgid "On boot"
msgstr "Pri pokretanju"
#: ../../services.pm_.c:236
-#, fuzzy
msgid "Start"
-msgstr "Status:"
+msgstr "Pokretanje"
#: ../../services.pm_.c:236
-#, fuzzy
msgid "Stop"
-msgstr "Sektor"
+msgstr "Zaustavljanje"
#: ../../share/advertising/00-thanks.pl_.c:9
msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
+msgstr "Hvala vam što ste izabrali Mandrake Linux 8.2"
#: ../../share/advertising/00-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
-msgstr ""
+msgstr "Dobrodošli u Open Source svijet"
#: ../../share/advertising/00-thanks.pl_.c:11
msgid ""
@@ -8921,11 +9601,12 @@ msgid ""
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
+"Uspjeh MandrakeSofta se temelji na principima slobodnog softvera. Vašnovi "
+"operativni sustav je rezultat udruženog rada svjetske Linux zajednice"
#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
msgid "Join the Free Software world"
-msgstr "Protokol za ostatak svijeta"
+msgstr "Pridružite se svijetu slobodnog softvera"
#: ../../share/advertising/01-gnu.pl_.c:10
msgid ""
@@ -8933,11 +9614,13 @@ msgid ""
"help others by joining the many discussion forums that you will find in our "
"\"Community\" webpages"
msgstr ""
+"Upoznajte Open Source zajednicu i postanite članom. Učite, podučavajte "
+"ipomažite drugima učestvovanjem u diskusijama u mnogim forumima koje "
+"ćetepronaći na \"Community\" web stranicama"
#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
msgid "Internet and Messaging"
-msgstr "Internet pristup"
+msgstr "Internet i slanje poruka"
#: ../../share/advertising/02-internet.pl_.c:10
msgid ""
@@ -8946,9 +9629,12 @@ msgid ""
"Konqueror, exchange email & organize your personal information with "
"Evolution and Kmail, and much more"
msgstr ""
+"Mandrake Linux 8.2 pruža najbolji softver za pristupanje svemu što "
+"Internetima za ponuditi: surfajte webom i gledajte animacije sa Mozillom i "
+"Koquererom,razmjenjujte emailove i organizirajte vaše osobne informacije sa "
+"Evolutionomi Kmailom, i još mnogo toga"
#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
msgid "Multimedia and Graphics"
msgstr "Multimedija - Grafika"
@@ -8958,6 +9644,10 @@ msgid ""
"the latest software to play music and audio files, edit and organize your "
"images and photos, watch TV and videos, and much more"
msgstr ""
+"Mandrake Linux 8.2 vam omogućuje da potpuno ostvarite "
+"multimedijalnipotencijal vašeg računala! Koristite najnovije programe za "
+"reprodukcijuglazbe i zvučnih datoteka, uređujte i organizirajte slike i "
+"fotografije,gledajte TV i video zapise, i još mnogo toga"
#: ../../share/advertising/04-develop.pl_.c:9
msgid "Development"
@@ -8969,22 +9659,25 @@ msgid ""
"of the GNU gcc compiler as well as the best Open Source development "
"environments"
msgstr ""
+"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moć "
+"GNU gcc prevoditelja kao i najbolja Open Source okružja za razvojaplikacija."
#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
-msgstr "Kontrolni Centar"
+msgstr "Mandrake Kontrolni Centar"
#: ../../share/advertising/05-contcenter.pl_.c:10
msgid ""
"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
"customizing and configuring your Mandrake system"
msgstr ""
+"Mandrake Linux 8.2 Kontrolni Centar je mjesto gdje si potpuno "
+"možetepodrediti i podesiti vaš Mandrake sustav"
#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
msgid "User interfaces"
-msgstr "Mrežni međusklop"
+msgstr "Korisnička sučelja"
#: ../../share/advertising/06-user.pl_.c:10
msgid ""
@@ -8992,17 +9685,22 @@ msgid ""
"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
"0.8, and the rest"
msgstr ""
+"Mandrake Linux 8.2 ima izbor od 11 različitih grafičkih sučelja za radni "
+"stol i prozorne menađere koji uključuje GNOME 1.4, KDE 2.2.2, WindowMaker "
+"0.8 i ostale"
#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
msgid "Server Software"
-msgstr "SMB poslužitelj"
+msgstr "Poslužiteljski softver"
#: ../../share/advertising/07-server.pl_.c:10
msgid ""
"Transform your machine into a powerful server with just a few clicks of the "
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
+"Učinite od svog računala moćni poslužitelj sa samo nekoliko pritisaka na "
+"mišu:Web poslužitelj, email, vatrozid, router, datotečni i ispisni "
+"poslužitelj, ..."
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
@@ -9013,10 +9711,12 @@ msgid ""
"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
"cards, sports, strategy, ..."
msgstr ""
+"Mandrake Linux 8.2 dolazi sa najboljim Open Source igrama - arkade, akcijske,"
+"kartanje, sport, strategije, ..."
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
-msgstr ""
+msgstr "MandrakeCampus"
#: ../../share/advertising/09-MDKcampus.pl_.c:10
msgid ""
@@ -9024,11 +9724,13 @@ msgid ""
"provides free Linux training, as well as a way to test your progress, at "
"MandrakeCampus -- our online training center"
msgstr ""
+"Želite li naučiti Linux jednostavno, brzo i besplatno? MandrakeSoftvam "
+"omogućuje besplatnu Linux obuku, kao i način da provjerite svojnapredak, u "
+"MandrakeCampusu -- našem online centru za obuku"
#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert"
-msgstr "Ekspert"
+msgstr "MandrakeExpert"
#: ../../share/advertising/10-MDKexpert.pl_.c:10
msgid ""
@@ -9036,10 +9738,13 @@ msgid ""
"around the corner. And if you're already a Linux veteran, become an \"Expert"
"\" and share your knowledge at our support website"
msgstr ""
+"Kvalitetna podrška od Linux zajednice, kao i od MandrakeSofta, je iza ugla.A "
+"ako već jeste Linux veteran, postanite \"Stručnjak\" i podijelite "
+"svojeznanje na našem websiteu za podršku"
#: ../../share/advertising/11-consul.pl_.c:9
msgid "MandrakeConsulting"
-msgstr ""
+msgstr "MandrakConsulting"
#: ../../share/advertising/11-consul.pl_.c:10
msgid ""
@@ -9048,31 +9753,47 @@ msgid ""
"vast experience as a Linux producer to provide a true IT alternative for "
"your business organization"
msgstr ""
+"Za sve vaše IT projekte, naši savjetnici su spremni analizirati vašezahtjeve "
+"i ponuditi konkretno rješenje. Iskoristite MandrakeSoftovogolemo iskustvo "
+"kao Linux stvaratelja da bi dobili ozbiljnu IT alternativuvašoj poslovnoj "
+"organizaciji"
#: ../../share/advertising/12-MDKstore.pl_.c:9
msgid "MandrakeStore"
-msgstr ""
+msgstr "MandrakeStore"
#: ../../share/advertising/12-MDKstore.pl_.c:10
msgid ""
"A full range of Linux solutions, as well as special offers on products and "
"'goodies', are available online at our e-store"
msgstr ""
+"Potpun raspon Linux rješenja, kao i posebne ponude proizvoda i 'goodiesa', "
+"sudostupni online preko naše e-trgovine"
#: ../../share/advertising/13-Nvert.pl_.c:9
msgid ""
"For more information on MandrakeSoft's Professional Services and commercial "
"offerings, please see the following web page:"
msgstr ""
+"Za više informacija o MandrakeSoftovim profesionalnim uslugama i "
+"komercijalnimponudama, pogledajte web stranice:"
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
+msgstr "http://www.mandrakesoft.com/sales/contact"
#: ../../standalone.pm_.c:25
-#, fuzzy
msgid "Installing packages..."
-msgstr "Instaliram paket %s"
+msgstr "Instaliram pakete..."
+
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
#: ../../standalone/diskdrake_.c:85
msgid ""
@@ -9082,20 +9803,175 @@ msgstr ""
"Ne mogu pročitati vašu particijsku tablicu, previše je uništena za mene :(\n"
"Pokušati ću sa brisanjem loših particija"
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Prebaci postavke pisača"
+
+# ../../share/compssUsers
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Poslužitelj baza podataka"
+
+# ../../share/compssUsers
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Poslužitelj baza podataka"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Poslužitelj"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Poslužitelj"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Pomoć"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "Nema TV kartice!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nije povezan"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Obriši"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Izabrao sve"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Podešavam..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "ponovno postavi"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Molim, umetnite Boot disketu u pogon %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Disketni pogon nije dostupan"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
+#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
-msgstr "Greška"
+msgstr "Greška!"
#: ../../standalone/drakautoinst_.c:46
#, c-format
msgid "I can't find needed image file `%s'."
-msgstr ""
+msgstr "Ne mogu naći potrebnu datoteku sa slikom '%s'."
#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
msgid "Auto Install Configurator"
-msgstr "Postava nakon instalacije"
+msgstr "Postava automatske instalacije"
#: ../../standalone/drakautoinst_.c:49
msgid ""
@@ -9111,17 +9987,35 @@ msgid ""
"\n"
"Do you want to continue?"
msgstr ""
+"Sada ćete instalirati disketu za automatsku instalaciju. Ova mogućnost "
+"jedonekle opasna i mora se oprezno koristiti.\n"
+"\n"
+"Sa tom mogućnošću, moći ćete ponoviti instalaciju kako ste je proveli naovom "
+"računalu, s tim da ćete biti interaktivno priupitani u nekim koracima,da bi "
+"promijenili njihove vrijednosti.\n"
+"\n"
+"Za maksimalnu sigurnost, particioniranje i formatiranje se nikad "
+"nećeobavljati automatski, što god izabrali prilikom instalacije na ovo "
+"računalo.\n"
+"\n"
+"Želite li nastaviti?"
#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
msgid "Automatic Steps Configuration"
-msgstr "Postava Stila Podizanja"
+msgstr "Postava automatskih koraka"
#: ../../standalone/drakautoinst_.c:72
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
+"Izaberite za svaki korak da li će se ponoviti kao i u vašoj instalaciji, "
+"iliće se izvoditi ručno"
+
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Pravim auto instalacijsku disketu"
#: ../../standalone/drakautoinst_.c:145
msgid ""
@@ -9130,770 +10024,834 @@ msgid ""
"\n"
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
+"\n"
+"Dobrodošli.\n"
+"\n"
+"Parametri automatske instalacije su dostupni u odjeljku na lijevoj strani"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Čestitke!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
+"Disketa je uspješno stvorena.\n"
+"Sada možete ponoviti svoju instalaciju"
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
-msgstr "Instaliraj"
+msgstr "Automatska Instalacija"
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
-msgstr "Dodaj korisnika"
+msgstr "Dodaj stavku"
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
-msgstr "Formatiram loopback datoteku %s"
+msgstr "Ukloni posljednju stavku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
+#: ../../standalone/drakbackup_.c:599
msgid ""
-"***********************************************************************\n"
+"\n"
+" DrakBackup Report \n"
"\n"
msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
"\n"
" DrakBackup Report \n"
"\n"
-msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
"\n"
"\n"
msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
"\n"
+" DrakBackup Daemon Report\n"
"\n"
-"***********************************************************************\n"
"\n"
-msgstr ""
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
"\n"
"\n"
msgstr ""
+"\n"
+" DrakBackup Report detalji\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
-msgstr ""
+msgstr "ukupni progres"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
-msgstr ""
+msgstr "Sigurnosna pohrana sustavskih datoteka"
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
-msgstr "Loša backup datoteka"
+msgstr "Sigurnosna pohrana datoteka na tvrdom disku..."
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
-msgstr "Loša backup datoteka"
+msgstr "Sigurnosna pohrana korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
-msgstr ""
+msgstr "Progres sigurnosne pohrane tvrdog diska"
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
-msgstr "Loša backup datoteka"
+msgstr "Sigurnosna pohrana drugih datoteka"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
+"popis datoteka poslan FTPom : %s\n"
+" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
+"\n"
+"(!) problem sa FTP vezom: nije bilo moguće poslati vaše pohranjene "
+"datotekeFTPom.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Greška prilikom čitanja datoteke %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
-msgstr "Odabir paketa"
+msgstr "Odabir datoteka"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
-msgstr ""
+msgstr "Izaberi datoteke ili mape i stisni 'Dodaj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
+"\n"
+"Provjerite sve opcije koje trebate.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
+"Ove opcije mogu pohraniti i povratiti sve datoteke u vašoj /etc mapi.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+msgstr "Sigurnosno pohranjivanje vaših sustavskih datoteka ( /etc mapa )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
+msgstr "Koristi inkrementalno pohranjivanje (ne zamjenjuje staru pohranu)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
+msgstr "Izostavi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
+"S ovom opcijom moći ćete povratiti bilo koju inačicu\n"
+"vašeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Odaberite sve korisnike koje želite uključiti u pohranu."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
-msgstr ""
+msgstr "Izostavi cache preglednika (browsera)"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
+msgstr "Koristi inkrementalnu pohranu (ne zamjenjuje stare pohrane)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
-msgstr "Ukloni zapis"
+msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
-msgstr "Ukloni Windowse(TM)"
+msgstr "Windowse (FAT32)"
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
-msgstr "Korisničko ime"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1257
#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Koristi FTP vezu za pohranu"
+
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
-msgstr "Molimo istestirajte miša."
+msgstr "Upišite ime hosta ili IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
-msgstr ""
+msgstr "Upišite mapu na ovom hostu u koju ćete staviti pohranu."
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
-msgstr "Molim pokušajte ponovo"
+msgstr "Upišite svoje korisničko ime"
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
-msgstr "Molim pokušajte ponovo"
+msgstr "Upišite svoju lozinku"
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
-msgstr "ponovno unesite lozinku"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN veza"
+msgstr "Zapamti ovu lozinku"
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Odaberite vezu pisača"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
-msgstr ""
+msgstr "Koristi CD/DVDROM za pohranu"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
-msgstr "Molim izaberite raspored tipkovnice."
+msgstr "Izaberite prostor na CDu"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
-msgstr "Molim kliknite na particiju"
+msgstr "Naznačite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
-msgstr ""
+msgstr "Naznačite da li prethodno želite obrisati vaš CDRW"
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
-msgstr "Odaberite pakete za instalaciju."
+msgstr ""
+"Naznačite da li želite uključiti podizanje instalacije pri\n"
+"dizanju računala sa CDa."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
+"Upišite ime vašeg CD snimača\n"
+" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
-msgstr "Loša backup datoteka"
+msgstr "Koristi vrpcu za pohranu"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
-msgstr ""
+msgstr "Upišite ime uređaja kojeg ćete koristiti za sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Naznačite da li prethodno želite obrisati vaš CDRW"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
+"Upišite maksimalnu dozvoljenu\n"
+" veličinu za Drakbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Molimo istestirajte miša."
+msgid "Please enter the directory to save to:"
+msgstr "Upišite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
-msgstr "Loša backup datoteka"
+msgstr "Koristi quotu za pohranjene datoteke"
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
-msgstr "Mrežni međusklop"
+msgstr "Mreža"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
-msgstr ""
+msgstr "Tvrdi disk / NFS"
+
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Vrsta"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
-msgstr ""
+msgstr "svaki sat"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
-msgstr ""
+msgstr "svaki dan"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
-msgstr ""
+msgstr "svaki tjedan"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
-msgstr ""
+msgstr "svaki mjesec"
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
-msgstr "Korisničko ime"
+msgstr "Koristi daemon"
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
-msgstr "Odaberite pakete za instalaciju."
+msgstr ""
+"Izaberite vremenski razmak između\n"
+"dvije sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
-msgstr "Molim izaberite jezik koji želite koristiti."
+msgstr "Izaberite medij za pohranu."
-#: ../../standalone/drakbackup_.c:1327
+#: ../../standalone/drakbackup_.c:1648
#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Otkrivanje hard diskova"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Korisničko ime"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
+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 "Osigurajte da je cron daemon uključen u vaše servise"
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
-msgstr ""
+msgstr "Ovjde pošalji izvještaj mailom poslije svake pohrane:"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
-msgstr ""
+msgstr "Što"
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
-msgstr "Kotačić"
+msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
-msgstr "Kotačić"
+msgstr "Kada"
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
-msgstr "Postavke modula:"
+msgstr "Još opcija"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
-msgstr "Mrežne postavke"
+msgstr "Drakbackup postava"
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Izaberite gdje želite pohranjivati"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
-msgstr ""
+msgstr "na tvrdi disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
-msgstr ""
+msgstr "preko mreže"
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Izaberite što želite pohranjivati"
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
-msgstr "Podesi datotečne sustave"
+msgstr "Pohrani sustav"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
-msgstr ""
+msgstr "Pohrani korisnike"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
-msgstr ""
+msgstr "Ručno izaberi korisnika"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
+"\n"
+"Izvori za pohranu: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
+"\n"
+"- Sustavske datoteke:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
+"\n"
+"- Korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
+"\n"
+"- Druge datoteke:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
+"\n"
+"- Snimi na tvrdi disk u putanju : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Uređaj miša: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"Snimi FTPom na host : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
+"\n"
+"Snimi FTPom na host : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
+"\t\t korisničko ime: %s\n"
+"\t\t u putanju: %s \n"
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
-msgstr "Opcije"
+msgstr ""
+"\n"
+"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
-msgstr ""
+msgstr "\tIzostavi sustavske datoteke\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
-msgstr ""
+msgstr "\tPohrana koristi tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
-msgstr ""
+msgstr "\tPohrana koristi tar i gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
+"\n"
+"- Daemon (%s) uključi :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
-msgstr ""
+msgstr "\t-Tvrdi disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
+
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
-msgstr ""
+msgstr "\t-Mrežu FTPom.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
-msgstr ""
+msgstr "\t-Mrežu SSHom.\n"
+
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Mrežu FTPom.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Mrežu FTPom.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
+msgstr "Nema postavki, molimo izaberite Čarobnjaka ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
+"Popis podataka za povrat:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
+"Popis oštećenih podataka:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
-msgstr "Izaberite serijski port na kojemu se nalazi modem."
+msgstr "Molimo poništite odabir ili ga uklonite idući put"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
-msgstr ""
+msgstr "Pohranjene datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
-msgstr ""
+msgstr " Svi vaši izabrani podaci su "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
-msgstr ""
+msgstr " Uspješno povraćeni na %s "
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
-msgstr "Mrežne postavke"
+msgstr " Povrati postavke "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
-msgstr ""
+msgstr "U redu da bi povratili ostale datoteke"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
+"Popis korisnika za povrat (samo je najnoviji nadnevak važan za svakog "
+"korisnika)"
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
-msgstr "Loša backup datoteka"
+msgstr "Pohrani sustavske datoteke prije:"
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
-msgstr "Molim izaberite koju vrstu miša koristite."
+msgstr "izaberite nadnevak za povrat"
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
-msgstr "Loša backup datoteka"
+msgstr "Koristi tvrdi disk za pohranu"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Upišite mapu za snimanje:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP veza"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sigurna veza"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
-msgstr ""
+msgstr "Povrati s tvrdog diska"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr ""
+msgstr "Upišite mapu u koju ste pohranili podatke"
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
-msgstr "Molim izaberite koju vrstu miša koristite."
+msgstr "Izaberite drugi medij s kojeg ćete povratiti podatke"
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
-msgstr "Ostali"
+msgstr "Ostali mediji"
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
-msgstr "Instaliraj sustav"
+msgstr "Povrati sustav"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
-msgstr ""
+msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
-msgstr ""
+msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
-msgstr ""
+msgstr "izaberi putanju za povrat (umjesto / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
+"Napravi novu sigurnosnu pohranu prije povrata (samo za inkrementalne "
+"pohrane.)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
-msgstr ""
+msgstr "Ukloni mape korisnika prije povrata."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
-msgstr ""
+msgstr "Povrati sve pohrane"
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
-msgstr "Prilagođeno"
+msgstr "Prilagođena pohrana"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
-msgstr "<- Prijašnje"
+msgstr "Prijašnje"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
-#, fuzzy
msgid "Save"
-msgstr "Status:"
+msgstr "Snimi"
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
-msgstr "Loša backup datoteka"
+msgstr "Složi sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
-msgstr "Prilagođeno"
+msgstr "Povrati"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
-msgstr "Slijedeće ->"
+msgstr "Slijedeće"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
+"Molimo složite pohranu prije povrata...\n"
+"ili provjerite da je putanja ispravna"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
+"Greška tijekom slanja pošte\n"
+" vaš mail sa izvještajem nije poslan\n"
+" molimo podesite sendmail"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Izabir instaliranih paketa"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Slijedeći paketi će biti instalirani"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
+"Greška tijekom slanja datoteke putem FTPa.\n"
+" Ispravite svoje FTP postavke."
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
-msgstr "Molim izaberite jezik koji želite koristiti."
+msgstr "Izaberite podatke za povrat"
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
-msgstr "Molim izaberite jezik koji želite koristiti."
+msgstr "Izaberite medij za sigurnosnu pohranu..."
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
-msgstr "Molim izaberite jezik koji želite koristiti."
+msgstr "Izaberite podatke koje ćete pohraniti..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
+"Nije pronađena datoteka s postavkama \n"
+"pritisnite Čarobnjaka ili Napredno."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
-msgstr ""
+msgstr "Razvija se ... molimo sačekajte."
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
-msgstr "Loša backup datoteka"
+msgstr "Pohrani sustavske datoteke"
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
-msgstr "Loša backup datoteka"
+msgstr "Pohrani korisničke datoteke"
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
-msgstr "Loša backup datoteka"
+msgstr "Pohrani ostale datoteke"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
-msgstr ""
+msgstr "Ukupni progres"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
-msgstr ""
+msgstr "slanje datoteka FTPom"
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
-msgstr "Otkrivanje uređaja..."
+msgstr "Šaljem datoteke..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr ""
+msgstr "Popis datoteka koje će biti na CDu."
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
-msgstr "Molimo istestirajte miša."
+msgstr "Upišite brzinu cd snimača"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
+msgstr "Upišite ime CD snimača (ex:0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
-msgstr "Odaberite pakete za instalaciju."
+msgstr "Naznačite želite li da se instalacija sustava može pokretati sa CDa."
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
-msgstr "Mrežne postavke"
+msgstr "Pohrani iz datoteke sa postavkama"
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
-msgstr "Mrežne postavke"
+msgstr "Pogledaj postavke sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
-msgstr "LAN postavke"
+msgstr "Postavke čarobnjaka"
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
-msgstr "LAN postavke"
+msgstr "Napredne postavke"
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
-msgstr "Podesi datotečne sustave"
+msgstr "Pohrani sada"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
-msgstr ""
+msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9924,8 +10882,36 @@ msgid ""
" \n"
"\n"
msgstr ""
+"opis opcija:\n"
+"\n"
+"U ovom koraku Drakbackup će vam omogućiti da promijenite:\n"
+"\n"
+" - Način sažimanja:\n"
+" \n"
+" Ako označite bzip2 sažimanje, sažet ćete vaše\n"
+" podatke bolje nego sa gzipom (oko 2-10 %).\n"
+" Ova opcija nije podrazumijevano označena jer\n"
+" ovaj način sažimanja zathjeva više vremena (oko 1000% više).\n"
+" \n"
+" - Način osvježavanja pohrane:\n"
+"\n"
+" Ova opcija će osvježavati pohranu, ali nije baš\n"
+" pretjerano korisna jer se prvo sve mora dekompresirati\n"
+" prije nego što se osvježi.\n"
+" \n"
+" - .backupignore način:\n"
+"\n"
+" Kao kod cvsa, Drakbackup će ignorirati sve reference\n"
+" iz .backupignore datoteka u svakoj od mapa.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9933,8 +10919,13 @@ msgid ""
" set myhostname or mydomain in /etc/postfix/main.cf\n"
"\n"
msgstr ""
+"\n"
+"Neke greške tijekom slanja pošte su uzrokovane \n"
+" lošim postavkama postfixa. Da bi ih riješili, morate\n"
+" namjesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9974,8 +10965,45 @@ msgid ""
"\n"
"\n"
msgstr ""
+"opis opcija:\n"
+"\n"
+" - Pohrani sustavske datoteke:\n"
+" \n"
+"\tOva opcija vam omogućuje da pohranite svoju /etc mapu,\n"
+"\tkoja sadrži sve datoteke s postavkama. Budite\n"
+"\toprezni tijekom postupka povrata da ne bi prepisali:\n"
+"\t\t/etc/passed \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Pohrani korisničke datoteke: \n"
+"\n"
+"\tOva opcija vam omogućuje da izaberete sve korisnike koje\n"
+"\tželite pohraniti.\n"
+"\tDa bi uštedjeli prostor na disku, preporučamo da\n"
+"\tizostavite cache web preglednika.\n"
+"\n"
+" - Pohrani ostale datoteke: \n"
+"\n"
+"\tOva opcija vam omogućuje da dodate još podataka za pohranu.\n"
+"\tSa ovom pohranom nije trenutačno moguće izabrati\n"
+"\tinkrementalnu pohranu.\t\t\n"
+" \n"
+" - Inkrementalne pohrane:\n"
+"\n"
+"\tInkrementalna pohrana je najmoćnija opcija kod\n"
+"\tpohranjivanja. Omogućuje vam da pohranite\n"
+"\tsve svoje podatke prvi put, a potom samo one\n"
+"\tpromijenjene.\n"
+"\tZatim ćete moći, prilikom povrata,\n"
+"\tvratiti vaše podatke prema određenom\n"
+"\tnadnevku.\n"
+"\tAko niste izabrali ovu opciju sve\n"
+"\tstare pohrane će biti prebrisane prije svake pohrane.\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10002,13 +11030,43 @@ msgid ""
"\n"
"\n"
msgstr ""
+"opis povrata:\n"
+" \n"
+"Samo će se najnoviji nadnevak koristiti, jer je s inkrementalnim \n"
+"pohranama potrebno povratiti stare pohrane jednu po jednu.\n"
+"\n"
+"Dakle, ako ne želite povratiti korisnika, isključite sve njegove\n"
+"kućice.\n"
+"\n"
+"Inače, možete izabrati samo jedno od ovog\n"
+"\n"
+" - Inkrementalne pohrane:\n"
+"\n"
+"\tInkrementalna pohrana je najmoćnija opcija kod\n"
+"\tpohranjivanja. Omogućuje vam da pohranite\n"
+"\tsve svoje podatke prvi put, a potom samo one\n"
+"\tpromijenjene.\n"
+"\tZatim ćete moći, prilikom povrata,\n"
+"\tvratiti vaše podatke prema određenom\n"
+"\tnadnevku.\n"
+"\tAko niste izabrali ovu opciju sve\n"
+"\tstare pohrane će biti prebrisane prije svake pohrane.\n"
+"\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
+" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
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"
@@ -10024,8 +11082,21 @@ msgid ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
+"Ovaj program je besplatni softver; možete ga redistribuirati i/ili "
+"mijenjati\n"
+"pod uvjetima GNU General Public License objavljenje od Free Software\n"
+"Foundationa; ili inačice 2, ili (kako izaberete) neke kasnije inačice.\n"
+"\n"
+"Ovaj program se distribuira u nadi da će biti koristan, ali\n"
+"BEZ IKAKVE GARANCIJE; bez čak i podrazumijevane TRŽIŠNE GARANCIJE\n"
+"ili POGODNOSTI ZA ODREĐENU SVRHU. Pogledajte\n"
+"GNU General Public License za više detalja.\n"
+"\n"
+"Trebali ste dobiti presliku GNU General Public License\n"
+"sa ovim programom; ako ne, pišite na Free Software Foundation,\n"
+"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10064,8 +11135,46 @@ msgid ""
"\n"
"\n"
msgstr ""
+"Opis:\n"
+"\n"
+" Drakbackup se koristi za sigurnosnu pohranu vašeg sustava.\n"
+" Tijekom podešavanja možete izabrati: \n"
+"\t- Sustavske datoteke, \n"
+"\t- Korisničke datoteke, \n"
+"\t- Ostale datoteke.\n"
+"\tčitav vaš sustav ... i ostale (poput Windows particija)\n"
+"\n"
+" Drakbackup vam omogućuje da pohranite vaš sustav na:\n"
+"\t- Tvrdi disk.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (s automatskim pokretanjem prilikom podizanja "
+"računala,\n"
+"spasonosnom opcijom i automatskom instalacijom.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Vrpcu.\n"
+"\n"
+" Drakbackup vam omogućuje da povratite vaš sustav u\n"
+" izabranu mapu.\n"
+"\n"
+" Podrazumijevano, sve pohrane će biti u\n"
+" /var/lib/drakbackup mapi\n"
+"\n"
+" Datoteka s postavkama:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"\n"
+"Povrat:\n"
+" \n"
+" Tijekom povrata, DrakBackup će ukloniti \n"
+" vašu izvornu mapu i potvrditi da li su sve\n"
+" datoteke u pohrani ispravne. Preporučamo \n"
+" da napravite posljednju pohranu prije povrata.\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10075,8 +11184,15 @@ msgid ""
"drive before sending it to the server.\n"
"\n"
msgstr ""
+"opis opcija:\n"
+"\n"
+"Budite oprezni kada koristite ftp pohranu, jer se samo\n"
+"pohrane koje su već složene mogu slati polužitelju.\n"
+"Tako sada trebate složiti pohranu na vaš tvrdi disk prije\n"
+"no što je pošaljete poslužitelju.\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10088,8 +11204,16 @@ msgid ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
msgstr ""
+"\n"
+"Problemi sa povratom pohrane:\n"
+"\n"
+"Tijekom pohrane, drakbackup će provjeriti\n"
+"sve vaše datoteke u pohrani prije nego ih povrati.\n"
+"Prije povrata, Drakbackup će ukloniti vašu izvornu\n"
+"mapu, i izgubit ćete sve podatke. Važno je biti\n"
+"oprezan i ne mijenjati podatke u pohrani ručno.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10127,109 +11251,575 @@ msgid ""
" \n"
"\n"
msgstr ""
+"Opis:\n"
+"\n"
+" Drakbackup se koristi za sigurnosnu pohranu vašeg sustava.\n"
+" Tijekom podešavanja možete izabrati: \n"
+"\t- Sustavske datoteke, \n"
+"\t- Korisničke datoteke, \n"
+"\t- Ostale datoteke.\n"
+"\tčitav vaš sustav ... i ostale (poput Windows particija)\n"
+"\n"
+" Drakbackup vam omogućuje da pohranite vaš sustav na:\n"
+"\t- Tvrdi disk.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (s automatskim pokretanjem prilikom podizanja "
+"računala,\n"
+"spasonosnom opcijom i automatskom instalacijom.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Vrpcu.\n"
+"\n"
+" Drakbackup vam omogućuje da povratite vaš sustav u\n"
+" izabranu mapu.\n"
+"\n"
+" Podrazumijevano, sve pohrane će biti u\n"
+" /var/lib/drakbackup mapi\n"
+"\n"
+" Datoteka s postavkama:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Povrat:\n"
+" \n"
+" Tijekom povrata, DrakBackup će ukloniti \n"
+" vašu izvornu mapu i potvrditi da li su sve\n"
+" datoteke u pohrani ispravne. Preporučamo \n"
+" da napravite posljednju pohranu prije povrata.\n"
+"\n"
+"\n"
#: ../../standalone/drakboot_.c:58
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalacija %s-a nije uspjela. Prijavljena je slijedeća grešska:"
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+# ../../share/compssUsers
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konzolni Alati"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "na tvrdi disk"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Miš"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Udaljeni pisač"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Ime sharea"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakbug_.c:61
#, fuzzy
-msgid "no fonts found"
-msgstr "ne mogu pronaći niti jednu mrežnu karticu"
+msgid "Userdrake"
+msgstr "Printerdrake"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakbug_.c:62
#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Čarobnjak mrežnih postavki"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Provjera autentičnosti"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Odabir paketa"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Molim pričekajte"
+
+#: ../../standalone/drakbug_.c:87
+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"
+" 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:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post deinstalacija"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Screenshotovi će biti raspoloživi poslije instalaciju u %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Mrežne postavke (%d adaptera)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Obriši profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil za obrisati:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novi profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Ime profila kojeg treba stvoriti (novi profil se stvara kao kopija "
+"trenutnog):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Ime računala: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internet pristup"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tip:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Međusklop:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Molim sačekajte"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Podešavanje Internet Pristupa..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN postavke"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Upravljački program"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Međusklop"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Stanje"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Podesi lokalnu mrežu..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Ovdje stisnite za pokretanje čarobnjaka ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Čarobnjak..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Primjeni"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo pričekajte... Primjenjujem konfiguraciju"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Povezan"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nije povezan"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Poveži..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Odspoji..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Upozorenje, otkrivena je još jedna Internet veza, koja možda koristivašu "
+"mrežu"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemate niti jedan konfigurirani međusklop.\n"
+"Konfigurirajte ga prvo klikanjem na 'Postavljanje'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN postavke"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Boot protokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Pokrenuto pri podizanju"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "Aktiviraj sada"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "Deaktiviraj sada"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Ovo sučelje još nije podešeno.\n"
+"Pokrenite čarobnjak za postavu u glavnom prozoru"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemate niti jednu internet vezu.\n"
+"Napravite jednu klikanjem na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Postava Internet veze"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Postava Internet veze"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tip veze: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametri"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet kartica"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "uporaba: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-iso8859-2,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Ime modula"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Veličina"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "pravljenje boot diskete"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "uobičajeno"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Greška DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "kernel inačica"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Općenito"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ekspertno područje"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opcionalni argumenti"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Dodaj modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "prisili"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ako je potrebno"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "izostavi scsi module"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "izostavi raid module"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Ukloni modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ispis"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Napravi disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Uvjerite se da je medij\tprisutan za uređaj %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Ne postoji medij za uređaj %s.\n"
+"Molimo ubacite jedan."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne mogu napraviti fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ne mogu ispravno zatvoriti mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
+msgid "Search installed fonts"
+msgstr "Traži instalirane fontove"
+
+#: ../../standalone/drakfont_.c:234
+msgid "Unselect fonts installed"
+msgstr "Odselektiraj instalirane fontove"
+
+#: ../../standalone/drakfont_.c:258
+msgid "parse all fonts"
+msgstr "parsiraj sve fontove"
+
+#: ../../standalone/drakfont_.c:261
+msgid "no fonts found"
+msgstr "nisu pronađeni fontovi"
+
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "Gotov"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
-msgstr ""
+msgstr "nisam mogao naći nikakve fontove na vašim montiranim particijama"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
-msgstr ""
+msgstr "Ponovno izaberi ispravne fontove"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
-msgstr ""
+msgstr "nisam mogao naći nijedan font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
-msgstr ""
+msgstr "Potraži fontove u popisu instaliranih"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
-msgstr ""
+msgstr "Kopiranje fontova"
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr "Pripremam instalaciju"
+msgstr "Instalacija True Type fontova"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
-msgstr ""
+msgstr "sačekajte tijekom ttmkfdira..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
-msgstr ""
+msgstr "Instalacija True Typea gotova"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
-msgstr ""
+msgstr "Pretvaranje fontova"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
-msgstr ""
+msgstr "stvaranje typ1insta"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
-msgstr ""
+msgstr "Ghostscript reference"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
-msgstr ""
+msgstr "pretvaranje ttf fontova"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
-msgstr ""
+msgstr "pretvaranje pfm fontova"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
-msgstr ""
+msgstr "Potisni privremene datoteke"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
-msgstr ""
+msgstr "Ponovno pokreni XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
-msgstr ""
+msgstr "Potisni datoteke fontova"
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
-msgstr "ograniči"
+msgstr "Ponovno pokreni xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10237,123 +11827,113 @@ msgid ""
"-You can install the fonts using the normal way. In rare cases, bogus fonts "
"may hang up your X Server."
msgstr ""
+"Prije no što instalirate bilo kakve fontove, provjerite da li ih imate "
+"pravokoristiti i instalirati na vaš sustav.\n"
+"\n"
+"-Možete instalirati fontove na normalan način. U rijetkim slučajevima, "
+"lažnifontovi će srušiti vaš X poslužitelj."
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
-msgstr "Formatiraj particije"
+msgstr "Uvoz fontova"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
-msgstr ""
+msgstr "Dobavi Windows fontove"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN postavke"
+msgstr "Odinstaliraj fontove"
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
-msgstr "Točka montiranja"
+msgstr "Popis fontova"
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
-msgstr "Izaberite particije koje želite formatirati"
+msgstr "Izaberite aplikacije koje će podržavati fontove :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
-msgstr ""
+msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
-msgstr "Ured"
+msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
-msgstr "Prekini"
+msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
-msgstr "Pisac"
+msgstr "Generički pisač"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+msgstr "Izaberite datoteku ili mapu fontova i stisnite 'Dodaj'"
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
-msgstr "Instaliraj sustav"
+msgstr "Instalacijski popis"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
-msgstr ""
+msgstr "stisnite ovdje ako ste sigurni"
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
-msgstr ""
+msgstr "ovdje ako niste."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
-msgstr ""
+msgstr "Odselektiraj sve"
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
-msgstr "Odaberite datoteku"
+msgstr "Izabrao sve"
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
-msgstr "Postavke udaljenog pisača"
+msgstr "Popis za uklanjanje"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
-msgstr "Init poruka"
+msgstr "Početni testovi"
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
-msgstr "Nema mrežnog adaptera na vašem sustavu!"
+msgstr "Kopiraj fontove na vaš sustav"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
-msgstr ""
+msgstr "Instaliraj i pretvori fontove"
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
-msgstr "Instaliraj"
+msgstr "Post instalacija"
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
-msgstr "Nema mrežnog adaptera na vašem sustavu!"
+msgstr "Ukloni fontove s vašeg sustava"
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
-msgstr "Izlaz iz instalacije"
+msgstr "Post deinstalacija"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet Veze"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje veze prema internetu je trenutno omogućeno"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10365,31 +11945,31 @@ msgstr ""
"\n"
"Što želite napraviti?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "onemogući"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "odustani"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "ponovno postavi"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Onemogućujem poslužitelje..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje veze prema Internetu je trenutno onemogućeno."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje veze prema Internetu je trenutno onemogućeno"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10401,19 +11981,19 @@ msgstr ""
"\n"
"Što želite napraviti?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "omogući"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Omogućujem poslužitelje..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje veze prema internetu je trenutno omogućeno."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10429,21 +12009,21 @@ msgstr ""
"Upozorenje: trebati ćete primjenjeni Mrežni Uređaj za postavljanje lokalne "
"mreže (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Međusklop %s (koristi modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Međusklop %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nema mrežnog adaptera na vašem sustavu!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10451,11 +12031,11 @@ msgstr ""
"Nije pronađen niti jedan mrežni adapter na vašem sustavu. Molimo pokrenite "
"hardware-ski konfiguracijski alat."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Mrežni međusklop"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10470,19 +12050,18 @@ msgstr ""
"\n"
"Postaviti ću lokalnu mrežu (LAN) sa tim adapterom."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo odaberite koji mrežni adapter će biti povezan na vašu lokalnu mrežu."
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
-msgstr "Niste podesili monitor"
+msgstr "Mrežno sučelje već podešeno"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10491,18 +12070,21 @@ msgid ""
"\n"
"You can do it manually but you need to know what you're doing."
msgstr ""
+"Upozorenje, mrežni adapter (%s) je već podešen.\n"
+"\n"
+"Želite li automatsku re-konfiguraciju?\n"
+"\n"
+"Možete je podesiti i ručno, ali trebate znati što radite."
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
-msgstr "Postava Stila Podizanja"
+msgstr "Automatska rekonfiguracija"
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
-msgstr "Postavke modema"
+msgstr "Pokaži trenutne postavke sučelja"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10512,8 +12094,14 @@ msgid ""
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
+"Trenutne postavke '%s':\n"
+"\n"
+"Mreža: %s\n"
+"IP adresa: %s\n"
+"IP atribut: %s\n"
+"Pokretački program: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10524,35 +12112,42 @@ msgid ""
"you.\n"
"\n"
msgstr ""
+"Mogu zadržati vaše trenutne postavke i pretpostaviti da ste već "
+"postaviliDHCP poslužitelj; u tom slučaju molim provjerite da li sam točno "
+"pročitaoC-Class mrežu koju koristite za vašu lokalnu mrežu; neću je "
+"ponovnokonfigurirati niti dirati postavke vašeg DHCP poslužitelja.\n"
+"\n"
+"Inače, mogu vam rekonfigurirati vaše sučelje i (re)konfiguriratiDHCP "
+"poslužitelj.\n"
+"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
-msgstr ""
+msgstr "C-Class lokalna mreža"
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
-msgstr "IP CUPS poslužitelja"
+msgstr "IP (ovog) DHCP poslužitelja"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
-msgstr ""
+msgstr "Re-konfiguriraj sučelje i DHCP poslužitelj"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
+msgstr "Lokalna mreža nije završila sa '.0', odustajem."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalni LAN adresni konflikt je pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Detektirana je vatrozidna konfiguracija!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10560,20 +12155,20 @@ msgstr ""
"Upozorenje! Postojeća vatrozidna konfiguracija je pronađena. Morati ćete "
"ručno popraviti neke dijelove nakon instalacije."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Podešavam..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Podešavam skriptove, instaliram softver, pokrećem poslužitelje..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problem prilikom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10583,23 +12178,23 @@ msgstr ""
"Sada možete dijeliti vašu internet vezu sa drugim računalima na vašoj "
"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Postavljanje je već urađeno, ali je trenutno onemogućeno."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Postavljanje je već urađeno, ali je trenutno omogućeno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje veze prema internetu nije bilo konfigurirano."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Postavke dijeljenja internet veze"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10614,213 +12209,6 @@ msgstr ""
"\n"
"Kliknite na Postavke ukoliko želite pokreniti čarobnjak za postavljanja."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Mrežne postavke (%d adaptera)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Obriši profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil za obrisati:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novi profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Ime računala: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internet pristup"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Međusklop:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Podešavanje Internet Pristupa..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN postavke"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Upravljački program"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Međusklop"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Podesi lokalnu mrežu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Čarobnjak..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Primjeni"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo pričekajte... Primjenjujem konfiguraciju"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Povezan"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nije povezan"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Poveži..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odspoji..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemate niti jedan konfigurirani međusklop.\n"
-"Konfigurirajte ga prvo klikanjem na 'Postavljanje'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN postavke"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Pokrenuto pri podizanju"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktivno"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktivno"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemate niti jednu internet vezu.\n"
-"Napravite jednu klikanjem na 'Podesi'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Postava Internet veze"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Postava Internet veze"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip veze: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet kartica"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Podešavam sigurnosni nivo"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolni Centar"
@@ -10829,92 +12217,126 @@ msgstr "Kontrolni Centar"
msgid "Choose the tool you want to use"
msgstr "Izaberite alat koje želite koristiti"
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
-msgstr "Kanadska (Quebec)"
+msgstr "Kanada (kabl)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "SAD (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
-msgstr ""
+msgstr "SAD (kabl)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
-msgstr ""
+msgstr "SAD (kabl-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "Kina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
-msgstr ""
+msgstr "Japan (kabl)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
-msgstr ""
+msgstr "Istočna Europa"
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Francuska [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
-msgstr "Islandska"
+msgstr "Irska"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
-msgstr ""
+msgstr "Zapadna Europa"
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
-msgstr "serijski"
+msgstr "Australija"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
-msgstr ""
+msgstr "Novi Zeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
-msgstr ""
+msgstr "Južna Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
-msgstr ""
+msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
+"Molim, \n"
+"upišite svoj tv standard i zemlju"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
-msgstr ""
+msgstr "TV standard :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
-msgstr ""
+msgstr "Područje :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
-msgstr ""
+msgstr "Pretraživanje TV kanala u tijeku ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
+msgstr "Tražim TV kanale"
+
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Pojavila se greška kod instalacije paketa:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:153
+msgid "No TV Card detected!"
+msgstr "Nema TV kartice!"
+
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10925,6 +12347,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"TV kartica nije prepoznata na vašem računalu. Provjerite da li je Linux-"
+"podržana Video/TV kartica ispravno uključena.\n"
+"\n"
+"\n"
+"Možete posjetiti našu bazu hardvera na:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -10957,238 +12387,241 @@ msgstr "Ne mogu pokrenuti živu nadogradnju !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr ""
+msgstr "Promjena je izvršena, ali da bi imala učinak, morate se odlogirati"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
-msgstr ""
+msgstr "logdrake"
#: ../../standalone/logdrake_.c:95
msgid "Show only for the selected day"
-msgstr ""
+msgstr "Pokaži samo izabrani dan"
#: ../../standalone/logdrake_.c:102
-#, fuzzy
msgid "/File/_New"
-msgstr "/Datoteka/_Izlaz"
+msgstr "/Datoteka/_Nova"
#: ../../standalone/logdrake_.c:102
-#, fuzzy
msgid "<control>N"
-msgstr "<control>Q"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
-#, fuzzy
msgid "/File/_Open"
-msgstr "/Datoteka/_Izlaz"
+msgstr "/Datoteka/_Otvori"
#: ../../standalone/logdrake_.c:103
-#, fuzzy
msgid "<control>O"
-msgstr "<control>Q"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
-#, fuzzy
msgid "/File/_Save"
-msgstr "/Datoteka/_Izlaz"
+msgstr "/Datoteka/_Snimi"
#: ../../standalone/logdrake_.c:104
-#, fuzzy
msgid "<control>S"
-msgstr "<control>Q"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr ""
+msgstr "/Datoteka/Snimi_kao"
#: ../../standalone/logdrake_.c:106
-#, fuzzy
msgid "/File/-"
-msgstr "/_Datoteka"
+msgstr "/Datoteka/-"
#: ../../standalone/logdrake_.c:108
-#, fuzzy
msgid "/_Options"
-msgstr "Opcije"
+msgstr "/_Opcije"
#: ../../standalone/logdrake_.c:109
-#, fuzzy
msgid "/Options/Test"
-msgstr "Opcije"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
+msgstr "/Opcije/Proba"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr ""
+msgstr "/Pomoć/_O programu"
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
+msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
#: ../../standalone/logdrake_.c:119
msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
+msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
#: ../../standalone/logdrake_.c:173
-#, fuzzy
msgid "User"
-msgstr "Korisničko ime"
+msgstr "Korisnik"
#: ../../standalone/logdrake_.c:174
-#, fuzzy
msgid "Messages"
-msgstr "Testne stranice"
+msgstr "Poruke"
#: ../../standalone/logdrake_.c:175
msgid "Syslog"
-msgstr ""
+msgstr "Syslog"
#: ../../standalone/logdrake_.c:176
msgid "Mandrake Tools Explanations"
-msgstr ""
+msgstr "Objašnjenja Mandrake alata"
#: ../../standalone/logdrake_.c:179
msgid "search"
-msgstr ""
+msgstr "potraga"
#: ../../standalone/logdrake_.c:185
msgid "A tool to monitor your logs"
-msgstr ""
+msgstr "Alat za nadziranje logova"
#: ../../standalone/logdrake_.c:186
msgid "Settings"
-msgstr ""
+msgstr "Postavke"
#: ../../standalone/logdrake_.c:191
-#, fuzzy
msgid "matching"
-msgstr "Procjenjujem"
+msgstr "odgovara"
#: ../../standalone/logdrake_.c:192
msgid "but not matching"
-msgstr ""
+msgstr "ali ne odgovara"
#: ../../standalone/logdrake_.c:196
-#, fuzzy
msgid "Choose file"
msgstr "Izaberite datoteku"
#: ../../standalone/logdrake_.c:201
-#, fuzzy
msgid "Calendar"
-msgstr "Standardno"
+msgstr "Kalendar"
#: ../../standalone/logdrake_.c:211
-#, fuzzy
msgid "Content of the file"
-msgstr "Spoji se na Internet"
+msgstr "Sadržaj datoteke"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
-msgstr ""
+msgstr "Upozorenje na poštu/SMS"
#: ../../standalone/logdrake_.c:268
-#, fuzzy, c-format
+#, c-format
msgid "please wait, parsing file: %s"
-msgstr "Molimo pričekajte, Pripremam instalaciju"
+msgstr "Molim pričekajte, parsiram datoteku: %s"
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
-msgstr "Postava Interneta"
+msgstr "Postava upozorenja na poštu/SMS"
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Dobro došli u pomoćni program za konfiguriranje proxy-a.\n"
+"Dobrodošli u pomoćni program za postavljanje pošte/SMSa.\n"
"\n"
-"Ovdje ćete moći postaviti vaš http i ftp proxi-e\n"
-"sa ili bez logina i lozinke\n"
-
-# ../../share/compssUsers
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache i Pro-ftpd"
+"Ovdje ćete moći namjestiti sustav upozoravanja.\n"
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ime domene"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Izlaz"
+msgid "Ftp Server"
+msgstr "NIS Poslužitelj"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix mail poslužitelj, Inn news poslužitelj"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Poslužitelj"
#: ../../standalone/logdrake_.c:422
#, fuzzy
-msgid "service setting"
-msgstr "uređaj"
+msgid "SSH Server"
+msgstr "NIS Poslužitelj"
#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servisi"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Ispisni poslužitelj"
+
+#: ../../standalone/logdrake_.c:431
+msgid "service setting"
+msgstr "postavljanje servisa"
+
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
-msgstr ""
+msgstr "Primit ćete upozorenje ako jedan od izabranih servisa više ne radi"
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
-msgstr "Formatiram"
+msgstr "Postavka opterećenja"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
+msgstr "Primit ćete upozorenje ako je opterećenje veće od ove vrijednosti"
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
-msgstr "Postava Interneta"
+msgstr "postava upozoravanja"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
-msgstr ""
+msgstr "Odredite način na koji će vas sustav upozoravati"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
-msgstr ""
+msgstr "Snimi kao.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Molim izaberite koju vrstu miša koristite."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "niti jedan serial_usb nije pronađen\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuliranje treće tipke?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Čitam podatke o pisaču ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Otkrivanje uređaja ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
-msgstr ""
+msgstr "%s nađen na %s, podesi?"
#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
msgid "Select a scanner"
-msgstr "Odaberite grafičku karticu"
+msgstr "Odaberite skener"
#: ../../standalone/scannerdrake_.c:80
#, c-format
msgid "This %s scanner is unsupported"
-msgstr ""
+msgstr "Skener %s nije podržan"
#: ../../standalone/scannerdrake_.c:94
#, c-format
@@ -11196,11 +12629,12 @@ msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
+"Scannerdrake nije uspio prepoznati vaš %s skener.\n"
+"Izaberite uređaj gdje je skener uključen"
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "Boot uređaj"
+msgstr "Izaberite uređaj"
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -11209,6 +12643,9 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
+"Ovaj %s skener mora podesiti printerdrake.\n"
+"Možete pokrenuti printerdrake iz Mandrake kontrolnog centra uHardver "
+"odjeljku."
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -11217,6 +12654,21 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"vaš %s skener je podešen.\n"
+"Možete sada skenirati dokumente korištenjem ''XSanea'' izMultimedija/Grafika "
+"u aplikacijskom izborniku."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -11313,9 +12765,8 @@ msgid "Configure X"
msgstr "Podesi X"
#: ../../steps.pm_.c:34
-#, fuzzy
msgid "Install system updates"
-msgstr "Instaliraj sustav"
+msgstr "Instaliraj dogradnje sustava"
#: ../../steps.pm_.c:35
msgid "Exit install"
@@ -11492,46 +12943,44 @@ msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
#: ../../tinyfirewall.pm_.c:180
msgid "No I don't need DHCP"
-msgstr ""
+msgstr "Ne, ne trebam DHCP"
#: ../../tinyfirewall.pm_.c:180
msgid "Yes I need DHCP"
-msgstr ""
+msgstr "Da, trebam DHCP"
#: ../../tinyfirewall.pm_.c:181
msgid "No I don't need NTP"
-msgstr ""
+msgstr "Ne, ne trebam NTP"
#: ../../tinyfirewall.pm_.c:181
msgid "Yes I need NTP"
-msgstr ""
+msgstr "Da, trebam NTP"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
msgid "Don't Save"
-msgstr ""
+msgstr "Nemoj snimiti"
#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
#: ../../tinyfirewall.pm_.c:206
msgid "Save & Quit"
-msgstr ""
+msgstr "Snimi & izađi"
#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
msgid "Firewall Configuration Wizard"
-msgstr "Vatrozidne postave"
+msgstr "Čarobnjak za postavu vatrozida"
#: ../../tinyfirewall.pm_.c:199
msgid "No (firewall this off from the internet)"
-msgstr ""
+msgstr "Ne (sadrži ovo s interneta na vatrozidu)"
#: ../../tinyfirewall.pm_.c:200
msgid "Yes (allow this through the firewall)"
-msgstr ""
+msgstr "Da (propusti ovo kroz vatrozid)"
#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
msgid "Please Wait... Verifying installed packages"
-msgstr "Molimo pričekajte, Pripremam instalaciju"
+msgstr "Molimo pričekajte... Provjeravam instalirane pakete"
#: ../../tinyfirewall.pm_.c:238
#, c-format
@@ -11539,6 +12988,8 @@ msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+"Neuspjela instalacija potrebnih paketa : %s i Bastille.\n"
+" Pokušajte ih instalirati ručno."
# ../../share/compssUsers
#: ../../share/compssUsers:999
@@ -11634,11 +13085,6 @@ msgstr "Alati za lako podešavanje vašeg računala"
msgid "Multimedia - Sound"
msgstr "Multimedija - Zvuk"
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Pomoćni programi"
-
#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentacija"
@@ -11661,9 +13107,8 @@ msgid "Multimedia station"
msgstr "Multimedijska stanica"
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Configuration"
-msgstr "LAN postavke"
+msgstr "Postavke"
# ../../share/compssUsers
#: ../../share/compssUsers:999
@@ -11759,11 +13204,6 @@ msgstr ""
# ../../share/compssUsers
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiviranje, emulatori, praćenje"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Osobne financije"
@@ -11817,3 +13257,255 @@ msgstr "Multimedija - CD prženje"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck neuspješan sa izlaznim kodom %d ili signalom %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikacija grafičke kartice: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Postavke poslužitelja"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Niste podesili monitor"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Niste podesili grafičku karticu"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Niste podesili rezoluciju"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "provjerite parametre koje ste unjeli"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Pojavila se greška:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Zatvaram nakon %d sekundi"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Da li je ovo ispravno?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Pojavila se greška, provjerite parametre koje ste unjeli"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 poslužitelj: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Pokaži sve"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pripremam X-Window postavu"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Što želite napraviti?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Promijeni monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Promijeni grafičku karticu"
+
+#~ msgid "Change Server options"
+#~ msgstr "Promijeni postavke poslužitelja"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Promijeni rezoluciju"
+
+#~ msgid "Show information"
+#~ msgstr "Prikaži informacije"
+
+#~ msgid "Test again"
+#~ msgstr "Iskušaj ponovo"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Vaš multi-funkcijski uređaj je automatski podešen za skeniranje. "
+#~ "Sadamožete skenirati iz komandne linije sa \"ptal-hp %s scan ...\". "
+#~ "Skeniranjepreko grafičkog sučelja ili iz GIMPa nije još podržano za vaš "
+#~ "uređaj. Višeinformacija ćete naći u \"/usr/share/doc/hpoj-0.8/ptal-hp-"
+#~ "scan.html\" datoteci u vašem sustavu. Ako imate HP LaserJet 1100 ili 1200 "
+#~ "možeteskenirati samo ako imate instalirane opcije skenera.\n"
+#~ "\n"
+#~ "Ne koristite \"scannerdrake\" za ovaj uređaj!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Koristi tvrdi disk sa daemonom"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Koristi FTP sa daemonom"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Popis paketa za instaliranje"
+
+# ../../share/compssUsers
+#~ msgid "proftpd"
+#~ msgstr "Proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Podešavam sigurnosni nivo"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafička kartica"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Odaberite grafičku karticu"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Odaberite X upravljački program"
+
+#~ msgid "X driver"
+#~ msgstr "X upravljački program"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Upozorenje: testiranje grafičke kartice može zamrzunti vaše računalo"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standardni VGA, 640x480 na 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 na 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 kompatibilan, 1024x768 na 87 Hz s preplitanjem (bez 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 na 87 Hz s preplitanjem, 800x600 na 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Prošireni Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Bez preplitanja SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Visoko frekvencijski SVGA, 1024x768 na 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekvencijski koji ide do 1280x1024 na 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekvencijski koji ide do 1280x1024 na 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekvencijski koji ide do 1280x1024 na 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor koji ide do 1600x1200 na 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor koji ide do 1600x1200 na 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ukupna veličina izabranih grupa je otprilike %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Ukoliko želite instalirati manje od ove veličine,\n"
+#~ "izaberite postotak paketa koliko želite instalirati.\n"
+#~ "\n"
+#~ "Mali postotak će instalirati samo najvažnije pakete;\n"
+#~ "dok postotak od 100%% će instalirati sve odabrane pakete."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Imate mjesta na vašem disku za samo %d%% paketa.\n"
+#~ "\n"
+#~ "Ukoliko želite instalirati manje od ovoga,\n"
+#~ "izaberite postotak paketa koliko želite instalirati.\n"
+#~ "Mali postotak će instalirati samo najvažnije pakete;\n"
+#~ "dok postotak od %d%% će instalirati koliko god je paketa moguće."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Detaljniji izbor nalazi se u slijedećem koraku."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Odaberite postotak paketa koje želite instalirati"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Izaberite sigurnosni nivo"
+
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Kompletno (%dMB)"
+
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Minimum (%dMB)"
+
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Preporučeno (%dMB)"
+
+#~ msgid ""
+#~ "***********************************************************************\n"
+#~ "\n"
+#~ msgstr ""
+#~ "***********************************************************************\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "***********************************************************************\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "***********************************************************************\n"
+#~ "\n"
+
+#~ msgid "(!) Error during mail sending. \n"
+#~ msgstr "(!) greška tijekom slanja pošte.\n"
+
+#~ msgid "USA (bcast)"
+#~ msgstr "SAD (bcast)"
+
+#~ msgid "China (bcast)"
+#~ msgstr "Kina (bcast)"
+
+#~ msgid "Japan (bcast)"
+#~ msgstr "Japan (bcast)"
+
+# ../../share/compssUsers
+#~ msgid "Utilities"
+#~ msgstr "Pomoćni programi"
+
+# ../../share/compssUsers
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr "Arhiviranje, emulatori, praćenje"